summaryrefslogtreecommitdiff
path: root/src/lib/VSDStyles.cpp
blob: 88c016960047e92ebe5d403f9a44547dabdd6604 (plain)
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
 * This file is part of the libvisio project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#include "VSDStyles.h"

#include <set>
#include <stack>
#include "VSDTypes.h"

namespace libvisio
{

namespace
{

template<typename T>
T getOptionalStyle(const std::map<unsigned, unsigned> &styleMasters, const std::map<unsigned, T> &styles, const unsigned styleIndex)
{
  T style;
  if (MINUS_ONE == styleIndex)
    return style;
  std::stack<unsigned> styleIdStack;
  std::set<unsigned> foundStyles;
  styleIdStack.push(styleIndex);
  while (true)
  {
    auto iter = styleMasters.find(styleIdStack.top());
    if (iter != styleMasters.end() && iter->second != MINUS_ONE)
    {
      if (foundStyles.insert(iter->second).second)
        styleIdStack.push(iter->second);
      else // we already have this style -> stop incoming endless loop
        break;
    }
    else
      break;
  }
  while (!styleIdStack.empty())
  {
    auto iter = styles.find(styleIdStack.top());
    if (iter != styles.end())
      style.override(iter->second);
    styleIdStack.pop();
  }
  return style;
}

}

VSDOptionalLineStyle &VSDOptionalLineStyle::operator=(const VSDOptionalLineStyle &style)
{
  if (this != &style)
  {
    width = style.width;
    colour = style.colour;
    pattern = style.pattern;
    startMarker = style.startMarker;
    endMarker = style.endMarker;
    cap = style.cap;
    rounding = style.rounding;
    qsLineColour = style.qsLineColour;
    qsLineMatrix = style.qsLineMatrix;
  }
  return *this;
}

VSDLineStyle &VSDLineStyle::operator=(const VSDLineStyle &style)
{
  if (this != &style)
  {
    width = style.width;
    colour = style.colour;
    pattern = style.pattern;
    startMarker = style.startMarker;
    endMarker = style.endMarker;
    cap = style.cap;
    rounding = style.rounding;
    qsLineColour = style.qsLineColour;
    qsLineMatrix = style.qsLineMatrix;
  }
  return *this;
}

VSDOptionalFillStyle &VSDOptionalFillStyle::operator=(const VSDOptionalFillStyle &style)
{
  if (this != &style)
  {
    fgColour = style.fgColour;
    bgColour = style.bgColour;
    pattern = style.pattern;
    fgTransparency = style.fgTransparency;
    bgTransparency = style.bgTransparency;
    shadowFgColour = style.shadowFgColour;
    shadowPattern = style.shadowPattern;
    shadowOffsetX = style.shadowOffsetX;
    shadowOffsetY = style.shadowOffsetY;
    qsFillColour = style.qsFillColour;
    qsShadowColour = style.qsShadowColour;
    qsFillMatrix = style.qsFillMatrix;
  }
  return *this;
}

VSDFillStyle &VSDFillStyle::operator=(const VSDFillStyle &style)
{
  if (this != &style)
  {
    fgColour = style.fgColour;
    bgColour = style.bgColour;
    pattern = style.pattern;
    fgTransparency = style.fgTransparency;
    bgTransparency = style.bgTransparency;
    shadowFgColour = style.shadowFgColour;
    shadowPattern = style.shadowPattern;
    shadowOffsetX = style.shadowOffsetX;
    shadowOffsetY = style.shadowOffsetY;
    qsFillColour = style.qsFillColour;
    qsShadowColour = style.qsShadowColour;
    qsFillMatrix = style.qsFillMatrix;
  }
  return *this;
}

VSDOptionalCharStyle &VSDOptionalCharStyle::operator=(const VSDOptionalCharStyle &style)
{
  if (this != &style)
  {
    charCount = style.charCount;
    font = style.font;
    colour = style.colour;
    size = style.size;
    bold = style.bold;
    italic = style.italic;
    underline = style.underline;
    doubleunderline = style.doubleunderline;
    strikeout = style.strikeout;
    doublestrikeout = style.doublestrikeout;
    allcaps = style.allcaps;
    initcaps = style.initcaps;
    smallcaps = style.smallcaps;
    superscript = style.superscript;
    subscript = style.subscript;
    scaleWidth = style.scaleWidth;
  }
  return *this;
}

VSDCharStyle &VSDCharStyle::operator=(const VSDCharStyle &style)
{
  if (this != &style)
  {
    charCount = style.charCount;
    font = style.font;
    colour = style.colour;
    size = style.size;
    bold = style.bold;
    italic = style.italic;
    underline = style.underline;
    doubleunderline = style.doubleunderline;
    strikeout = style.strikeout;
    doublestrikeout = style.doublestrikeout;
    allcaps = style.allcaps;
    initcaps = style.initcaps;
    smallcaps = style.smallcaps;
    superscript = style.superscript;
    subscript = style.subscript;
    scaleWidth = style.scaleWidth;
  }
  return *this;
}

VSDOptionalParaStyle &VSDOptionalParaStyle::operator=(const VSDOptionalParaStyle &style)
{
  if (this != &style)
  {
    charCount = style.charCount;
    indFirst = style.indFirst;
    indLeft = style.indLeft;
    indRight = style.indRight;
    spLine = style.spLine;
    spBefore = style.spBefore;
    spAfter = style.spAfter;
    align = style.align;
    bullet = style.bullet;
    bulletStr = style.bulletStr;
    bulletFont = style.bulletFont;
    bulletFontSize = style.bulletFontSize;
    textPosAfterBullet = style.textPosAfterBullet;
    flags = style.flags;
  }
  return *this;
}

VSDParaStyle &VSDParaStyle::operator=(const VSDParaStyle &style)
{
  if (this != &style)
  {
    charCount = style.charCount;
    indFirst = style.indFirst;
    indLeft = style.indLeft;
    indRight = style.indRight;
    spLine = style.spLine;
    spBefore = style.spBefore;
    spAfter = style.spAfter;
    align = style.align;
    bullet = style.bullet;
    bulletStr = style.bulletStr;
    bulletFont = style.bulletFont;
    bulletFontSize = style.bulletFontSize;
    textPosAfterBullet = style.textPosAfterBullet;
    flags = style.flags;
  }
  return *this;
}

VSDOptionalTextBlockStyle &VSDOptionalTextBlockStyle::operator=(const VSDOptionalTextBlockStyle &style)
{
  if (this != &style)
  {
    leftMargin = style.leftMargin;
    rightMargin = style.rightMargin;
    topMargin = style.topMargin;
    bottomMargin = style.bottomMargin;
    verticalAlign = style.verticalAlign;
    isTextBkgndFilled = style.isTextBkgndFilled;
    textBkgndColour = style.textBkgndColour;
    defaultTabStop = style.defaultTabStop;
    textDirection = style.textDirection;
  }
  return *this;
}

VSDTextBlockStyle &VSDTextBlockStyle::operator=(const VSDTextBlockStyle &style)
{
  if (this != &style)
  {
    leftMargin = style.leftMargin;
    rightMargin = style.rightMargin;
    topMargin = style.topMargin;
    bottomMargin = style.bottomMargin;
    verticalAlign = style.verticalAlign;
    isTextBkgndFilled = style.isTextBkgndFilled;
    textBkgndColour = style.textBkgndColour;
    defaultTabStop = style.defaultTabStop;
    textDirection = style.textDirection;
  }
  return *this;
}

}

libvisio::VSDStyles::VSDStyles() :
  m_lineStyles(), m_fillStyles(), m_textBlockStyles(), m_charStyles(), m_paraStyles(),
  m_lineStyleMasters(), m_fillStyleMasters(), m_textStyleMasters()
{
}

libvisio::VSDStyles::VSDStyles(const libvisio::VSDStyles &styles) :
  m_lineStyles(styles.m_lineStyles), m_fillStyles(styles.m_fillStyles), m_textBlockStyles(styles.m_textBlockStyles),
  m_charStyles(styles.m_charStyles), m_paraStyles(styles.m_paraStyles), m_lineStyleMasters(styles.m_lineStyleMasters),
  m_fillStyleMasters(styles.m_fillStyleMasters), m_textStyleMasters(styles.m_textStyleMasters)
{
}

libvisio::VSDStyles::~VSDStyles()
{
}

libvisio::VSDStyles &libvisio::VSDStyles::operator=(const libvisio::VSDStyles &styles)
{
  if (this != &styles)
  {
    m_lineStyles = styles.m_lineStyles;
    m_fillStyles = styles.m_fillStyles;
    m_textBlockStyles = styles.m_textBlockStyles;
    m_charStyles = styles.m_charStyles;
    m_paraStyles = styles.m_paraStyles;

    m_lineStyleMasters = styles.m_lineStyleMasters;
    m_fillStyleMasters = styles.m_fillStyleMasters;
    m_textStyleMasters = styles.m_textStyleMasters;
  }
  return *this;
}

void libvisio::VSDStyles::addLineStyle(unsigned lineStyleIndex, const VSDOptionalLineStyle &lineStyle)
{
  m_lineStyles[lineStyleIndex] = lineStyle;
}

void libvisio::VSDStyles::addFillStyle(unsigned fillStyleIndex, const VSDOptionalFillStyle &fillStyle)
{
  m_fillStyles[fillStyleIndex] = fillStyle;
}

void libvisio::VSDStyles::addTextBlockStyle(unsigned textStyleIndex, const VSDOptionalTextBlockStyle &textBlockStyle)
{
  m_textBlockStyles[textStyleIndex] = textBlockStyle;
}

void libvisio::VSDStyles::addCharStyle(unsigned textStyleIndex, const VSDOptionalCharStyle &charStyle)
{
  m_charStyles[textStyleIndex] = charStyle;
}

void libvisio::VSDStyles::addParaStyle(unsigned textStyleIndex, const VSDOptionalParaStyle &paraStyle)
{
  m_paraStyles[textStyleIndex] = paraStyle;
}

void libvisio::VSDStyles::addLineStyleMaster(unsigned lineStyleIndex, unsigned lineStyleMaster)
{
  m_lineStyleMasters[lineStyleIndex] = lineStyleMaster;
}

void libvisio::VSDStyles::addFillStyleMaster(unsigned fillStyleIndex, unsigned fillStyleMaster)
{
  m_fillStyleMasters[fillStyleIndex] = fillStyleMaster;
}

void libvisio::VSDStyles::addTextStyleMaster(unsigned textStyleIndex, unsigned textStyleMaster)
{
  m_textStyleMasters[textStyleIndex] = textStyleMaster;
}

libvisio::VSDOptionalLineStyle libvisio::VSDStyles::getOptionalLineStyle(unsigned lineStyleIndex) const
{
  return getOptionalStyle(m_lineStyleMasters, m_lineStyles, lineStyleIndex);
}

libvisio::VSDOptionalFillStyle libvisio::VSDStyles::getOptionalFillStyle(unsigned fillStyleIndex) const
{
  return getOptionalStyle(m_fillStyleMasters, m_fillStyles, fillStyleIndex);
}

libvisio::VSDFillStyle libvisio::VSDStyles::getFillStyle(unsigned fillStyleIndex, const libvisio::VSDXTheme *theme) const
{
  VSDFillStyle fillStyle;
  fillStyle.override(getOptionalFillStyle(fillStyleIndex), theme);
  return fillStyle;
}

libvisio::VSDOptionalTextBlockStyle libvisio::VSDStyles::getOptionalTextBlockStyle(unsigned textStyleIndex) const
{
  return getOptionalStyle(m_textStyleMasters, m_textBlockStyles, textStyleIndex);
}

libvisio::VSDOptionalCharStyle libvisio::VSDStyles::getOptionalCharStyle(unsigned textStyleIndex) const
{
  return getOptionalStyle(m_textStyleMasters, m_charStyles, textStyleIndex);
}

libvisio::VSDOptionalParaStyle libvisio::VSDStyles::getOptionalParaStyle(unsigned textStyleIndex) const
{
  return getOptionalStyle(m_textStyleMasters, m_paraStyles, textStyleIndex);
}

/* vim:set shiftwidth=2 softtabstop=2 expandtab: */