1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
|
/* libvisio
* Copyright (C) 2011 Fridrich Strba <fridrich.strba@bluewin.ch>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02111-1301 USA
*/
#include "VSDXOutputElementList.h"
namespace libvisio {
class VSDXOutputElement
{
public:
VSDXOutputElement() {}
virtual ~VSDXOutputElement() {}
virtual void draw(libwpg::WPGPaintInterface *painter) = 0;
};
class VSDXStyleOutputElement : public VSDXOutputElement
{
public:
VSDXStyleOutputElement(const WPXPropertyList &propList, const WPXPropertyListVector &propListVec);
virtual ~VSDXStyleOutputElement() {}
virtual void draw(libwpg::WPGPaintInterface *painter);
private:
WPXPropertyList m_propList;
WPXPropertyListVector m_propListVec;
};
class VSDXEllipseOutputElement : public VSDXOutputElement
{
public:
VSDXEllipseOutputElement(const WPXPropertyList &propList);
virtual ~VSDXEllipseOutputElement() {}
virtual void draw(libwpg::WPGPaintInterface *painter);
private:
WPXPropertyList m_propList;
};
class VSDXPathOutputElement : public VSDXOutputElement
{
public:
VSDXPathOutputElement(const WPXPropertyListVector &propListVec);
virtual ~VSDXPathOutputElement() {}
virtual void draw(libwpg::WPGPaintInterface *painter);
private:
WPXPropertyListVector m_propListVec;
};
class VSDXGraphicObjectOutputElement : public VSDXOutputElement
{
public:
VSDXGraphicObjectOutputElement(const WPXPropertyList &propList, const ::WPXBinaryData &binaryData);
virtual ~VSDXGraphicObjectOutputElement() {}
virtual void draw(libwpg::WPGPaintInterface *painter);
private:
WPXPropertyList m_propList;
WPXBinaryData m_binaryData;
};
class VSDXStartLayerOutputElement : public VSDXOutputElement
{
public:
VSDXStartLayerOutputElement(const WPXPropertyList &propList);
virtual ~VSDXStartLayerOutputElement() {}
virtual void draw(libwpg::WPGPaintInterface *painter);
private:
WPXPropertyList m_propList;
};
class VSDXEndLayerOutputElement : public VSDXOutputElement
{
public:
VSDXEndLayerOutputElement();
virtual ~VSDXEndLayerOutputElement() {}
virtual void draw(libwpg::WPGPaintInterface *painter);
};
class VSDXStartTextObjectOutputElement : public VSDXOutputElement
{
public:
VSDXStartTextObjectOutputElement(const WPXPropertyList &propList, const WPXPropertyListVector &propListVec);
virtual ~VSDXStartTextObjectOutputElement() {}
virtual void draw(libwpg::WPGPaintInterface *painter);
private:
WPXPropertyList m_propList;
WPXPropertyListVector m_propListVec;
};
class VSDXInsertTextOutputElement : public VSDXOutputElement
{
public:
VSDXInsertTextOutputElement(const WPXString &text);
virtual ~VSDXInsertTextOutputElement() {}
virtual void draw(libwpg::WPGPaintInterface *painter);
private:
WPXString m_text;
};
class VSDXEndTextObjectOutputElement : public VSDXOutputElement
{
public:
VSDXEndTextObjectOutputElement();
virtual ~VSDXEndTextObjectOutputElement() {}
virtual void draw(libwpg::WPGPaintInterface *painter);
};
} // namespace libvisio
libvisio::VSDXStyleOutputElement::VSDXStyleOutputElement(const WPXPropertyList &propList, const WPXPropertyListVector &propListVec) :
m_propList(propList), m_propListVec(propListVec) {}
void libvisio::VSDXStyleOutputElement::draw(libwpg::WPGPaintInterface *painter)
{
if (painter)
painter->setStyle(m_propList, m_propListVec);
}
libvisio::VSDXEllipseOutputElement::VSDXEllipseOutputElement(const WPXPropertyList &propList) :
m_propList(propList) {}
void libvisio::VSDXEllipseOutputElement::draw(libwpg::WPGPaintInterface *painter)
{
if (painter)
painter->drawEllipse(m_propList);
}
libvisio::VSDXPathOutputElement::VSDXPathOutputElement(const WPXPropertyListVector &propListVec) :
m_propListVec(propListVec) {}
void libvisio::VSDXPathOutputElement::draw(libwpg::WPGPaintInterface *painter)
{
if (painter)
painter->drawPath(m_propListVec);
}
libvisio::VSDXGraphicObjectOutputElement::VSDXGraphicObjectOutputElement(const WPXPropertyList &propList, const ::WPXBinaryData &binaryData) :
m_propList(propList), m_binaryData(binaryData) {}
void libvisio::VSDXGraphicObjectOutputElement::draw(libwpg::WPGPaintInterface *painter)
{
if (painter)
painter->drawGraphicObject(m_propList, m_binaryData);
}
libvisio::VSDXStartLayerOutputElement::VSDXStartLayerOutputElement(const WPXPropertyList &propList) :
m_propList(propList) {}
void libvisio::VSDXStartLayerOutputElement::draw(libwpg::WPGPaintInterface *painter)
{
if (painter)
painter->startLayer(m_propList);
}
libvisio::VSDXEndLayerOutputElement::VSDXEndLayerOutputElement() {}
void libvisio::VSDXEndLayerOutputElement::draw(libwpg::WPGPaintInterface *painter)
{
if (painter)
painter->endLayer();
}
libvisio::VSDXStartTextObjectOutputElement::VSDXStartTextObjectOutputElement(const WPXPropertyList &propList, const WPXPropertyListVector &propListVec) :
m_propList(propList), m_propListVec(propListVec) {}
void libvisio::VSDXStartTextObjectOutputElement::draw(libwpg::WPGPaintInterface *painter)
{
if (painter)
painter->startTextObject(m_propList, m_propListVec);
}
libvisio::VSDXInsertTextOutputElement::VSDXInsertTextOutputElement(const WPXString &text) :
m_text(text) {}
void libvisio::VSDXInsertTextOutputElement::draw(libwpg::WPGPaintInterface *painter)
{
if (painter)
painter->insertText(m_text);
}
libvisio::VSDXEndTextObjectOutputElement::VSDXEndTextObjectOutputElement() {}
void libvisio::VSDXEndTextObjectOutputElement::draw(libwpg::WPGPaintInterface *painter)
{
if (painter)
painter->endTextObject();
}
libvisio::VSDXOutputElementList::~VSDXOutputElementList()
{
for (std::vector<VSDXOutputElement *>::iterator iter = m_elements.begin(); iter != m_elements.end(); iter++)
delete (*iter);
m_elements.clear();
}
void libvisio::VSDXOutputElementList::draw(libwpg::WPGPaintInterface *painter)
{
for (std::vector<VSDXOutputElement *>::iterator iter = m_elements.begin(); iter != m_elements.end(); iter++)
(*iter)->draw(painter);
}
void libvisio::VSDXOutputElementList::addStyle(const WPXPropertyList &propList, const WPXPropertyListVector &propListVec)
{
m_elements.push_back(new VSDXStyleOutputElement(propList, propListVec));
}
void libvisio::VSDXOutputElementList::addEllipse(const WPXPropertyList &propList)
{
m_elements.push_back(new VSDXEllipseOutputElement(propList));
}
void libvisio::VSDXOutputElementList::addPath(const WPXPropertyListVector &propListVec)
{
m_elements.push_back(new VSDXPathOutputElement(propListVec));
}
void libvisio::VSDXOutputElementList::addGraphicObject(const WPXPropertyList &propList, const ::WPXBinaryData &binaryData)
{
m_elements.push_back(new VSDXGraphicObjectOutputElement(propList, binaryData));
}
void libvisio::VSDXOutputElementList::addStartLayer(const WPXPropertyList &propList)
{
m_elements.push_back(new VSDXStartLayerOutputElement(propList));
}
void libvisio::VSDXOutputElementList::addEndLayer()
{
m_elements.push_back(new VSDXEndLayerOutputElement());
}
void libvisio::VSDXOutputElementList::addStartTextObject(const WPXPropertyList &propList, const WPXPropertyListVector &propListVec)
{
m_elements.push_back(new VSDXStartTextObjectOutputElement(propList, propListVec));
}
void libvisio::VSDXOutputElementList::addInsertText(const WPXString &text)
{
m_elements.push_back(new VSDXInsertTextOutputElement(text));
}
void libvisio::VSDXOutputElementList::addEndTextObject()
{
m_elements.push_back(new VSDXEndTextObjectOutputElement());
}
void libvisio::VSDXOutputElementList::clear()
{
for (std::vector<VSDXOutputElement *>::iterator iter = m_elements.begin(); iter != m_elements.end(); iter++)
delete (*iter);
m_elements.clear();
}
|