Lines Matching refs:shape

24 libvisio::VSDShape::VSDShape(const libvisio::VSDShape &shape)  in VSDShape()  argument
25 : m_geometries(shape.m_geometries), m_shapeList(shape.m_shapeList), m_fields(shape.m_fields), in VSDShape()
26 …m_foreign(shape.m_foreign ? new ForeignData(*(shape.m_foreign)) : nullptr), m_parent(shape.m_paren… in VSDShape()
27 … m_masterPage(shape.m_masterPage), m_masterShape(shape.m_masterShape), m_shapeId(shape.m_shapeId), in VSDShape()
28 …m_lineStyleId(shape.m_lineStyleId), m_fillStyleId(shape.m_fillStyleId), m_textStyleId(shape.m_text… in VSDShape()
29 …m_lineStyle(shape.m_lineStyle), m_fillStyle(shape.m_fillStyle), m_textBlockStyle(shape.m_textBlock… in VSDShape()
30 m_charStyle(shape.m_charStyle), m_charList(shape.m_charList), m_paraStyle(shape.m_paraStyle), in VSDShape()
31 …m_paraList(shape.m_paraList), m_tabSets(shape.m_tabSets), m_text(shape.m_text), m_names(shape.m_na… in VSDShape()
32 …m_textFormat(shape.m_textFormat), m_nurbsData(shape.m_nurbsData), m_polylineData(shape.m_polylineD… in VSDShape()
33 m_xform(shape.m_xform), m_txtxform(shape.m_txtxform ? new XForm(*(shape.m_txtxform)) : nullptr), in VSDShape()
34 m_xform1d(shape.m_xform1d ? new XForm1D(*(shape.m_xform1d)) : nullptr), m_misc(shape.m_misc), in VSDShape()
35 m_layerMem(shape.m_layerMem) in VSDShape()
44 libvisio::VSDShape &libvisio::VSDShape::operator=(const libvisio::VSDShape &shape) in operator =() argument
46 if (this != &shape) in operator =()
48 m_geometries = shape.m_geometries; in operator =()
49 m_shapeList = shape.m_shapeList; in operator =()
50 m_fields = shape.m_fields; in operator =()
51 m_foreign.reset(shape.m_foreign ? new ForeignData(*(shape.m_foreign)) : nullptr); in operator =()
52 m_parent = shape.m_parent; in operator =()
53 m_masterPage = shape.m_masterPage; in operator =()
54 m_masterShape = shape.m_masterShape; in operator =()
55 m_shapeId = shape.m_shapeId; in operator =()
56 m_lineStyleId = shape.m_lineStyleId; in operator =()
57 m_fillStyleId = shape.m_fillStyleId; in operator =()
58 m_textStyleId = shape.m_textStyleId; in operator =()
59 m_lineStyle = shape.m_lineStyle; in operator =()
60 m_fillStyle = shape.m_fillStyle; in operator =()
61 m_textBlockStyle = shape.m_textBlockStyle; in operator =()
62 m_charStyle = shape.m_charStyle; in operator =()
63 m_charList = shape.m_charList; in operator =()
64 m_paraStyle = shape.m_paraStyle; in operator =()
65 m_paraList = shape.m_paraList; in operator =()
66 m_tabSets = shape.m_tabSets; in operator =()
67 m_text = shape.m_text; in operator =()
68 m_names = shape.m_names; in operator =()
69 m_textFormat = shape.m_textFormat; in operator =()
70 m_nurbsData = shape.m_nurbsData; in operator =()
71 m_polylineData = shape.m_polylineData; in operator =()
72 m_xform = shape.m_xform; in operator =()
73 m_txtxform.reset(shape.m_txtxform ? new XForm(*(shape.m_txtxform)) : nullptr); in operator =()
74 m_xform1d.reset(shape.m_xform1d ? new XForm1D(*shape.m_xform1d) : nullptr); in operator =()
75 m_misc = shape.m_misc; in operator =()
76 m_layerMem = shape.m_layerMem; in operator =()
124 void libvisio::VSDStencil::addStencilShape(unsigned id, const VSDShape &shape) in addStencilShape() argument
126 m_shapes[id] = shape; in addStencilShape()