Shapes.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /*
3  * This file is part of the libmspub project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  */
9 
10 #ifndef __SHAPES_H__
11 #define __SHAPES_H__
12 
13 #include <vector>
14 #include <map>
15 
16 #include "Coordinate.h"
17 #include "MSPUBConstants.h"
18 #include "ShapeType.h"
19 #include "VectorTransformation2D.h"
20 
21 namespace libmspub
22 {
23 class MSPUBCollector;
24 struct CustomShape;
25 struct Shape
26 {
28  virtual void output(librevenge::RVNGDrawingInterface *painter, Coordinate coord);
29  virtual ~Shape()
30  {
31  }
32  librevenge::RVNGPropertyList props;
33  librevenge::RVNGPropertyList graphicsProps;
34 protected:
35  virtual void setCoordProps(Coordinate coord);
36  virtual void write(librevenge::RVNGDrawingInterface *painter) = 0;
38 
39  virtual librevenge::RVNGPropertyListVector updateGraphicsProps();
40 
41  Shape();
42 private:
43  Shape(const Shape &);
44  Shape &operator=(const Shape &);
45 };
46 struct FillableShape : public Shape
47 {
50  void setFill(Fill *fill);
51 protected:
52  virtual librevenge::RVNGPropertyListVector updateGraphicsProps();
53 private:
56 };
58 {
59  void addLine(ColorReference color, unsigned widthInEmu, bool lineExists);
61  void setAdjustValue(unsigned index, int adjustValue);
62  void setText(std::vector<TextParagraph> str);
63  double getCalculationValue(unsigned index, bool recursiveEntry = false) const;
64  double getSpecialValue(const CustomShape &shape, int arg) const;
65  void writeText(librevenge::RVNGDrawingInterface *painter);
67 
68  std::vector<TextParagraph> m_str;
69  bool m_hasText;
70  unsigned m_pageSeqNum;
71  unsigned m_imgIndex;
73  double m_x, m_y, m_width, m_height;
75  std::vector<int> m_adjustValues;
76  unsigned m_left, m_top, m_right, m_bottom; //emu
83  m_lines(), m_drawStroke(false),
86  GeometricShape(unsigned pageSeqNum, MSPUBCollector *o)
87  : FillableShape(o), m_str(), m_hasText(false), m_pageSeqNum(pageSeqNum), m_imgIndex(0), m_type(RECTANGLE),
91  m_lines(), m_drawStroke(false),
94  std::vector<Color> getPaletteColors() const;
95  void output(librevenge::RVNGDrawingInterface *painter, Coordinate coord);
96 protected:
97  virtual bool hasFill();
98  void setCoordProps(Coordinate coord);
99  virtual void write(librevenge::RVNGDrawingInterface *painter);
100  librevenge::RVNGPropertyListVector updateGraphicsProps();
101  GeometricShape();
102 private:
105  mutable std::vector<bool> m_valuesSeen;
109 public:
110  std::vector<Line> m_lines;
115 };
116 } // namespace libmspub
117 #endif // __SHAPES_H__
118 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */

Generated for libmspub by doxygen 1.8.4