ShapeInfo.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 INCLUDED_SHAPEINFO_H
11 #define INCLUDED_SHAPEINFO_H
12 
13 #include <functional>
14 #include <map>
15 #include <memory>
16 #include <vector>
17 
18 #include <boost/optional.hpp>
19 
20 #include "Arrow.h"
21 #include "ColorReference.h"
22 #include "Coordinate.h"
23 #include "Dash.h"
24 #include "Fill.h"
25 #include "Line.h"
26 #include "MSPUBTypes.h"
27 #include "Margins.h"
28 #include "PolygonUtils.h"
29 #include "Shadow.h"
30 #include "ShapeType.h"
31 #include "TableInfo.h"
32 #include "VerticalAlign.h"
33 
34 namespace libmspub
35 {
36 void noop(const CustomShape *);
37 struct ShapeInfo
38 {
39  boost::optional<ShapeType> m_type;
40  boost::optional<ShapeType> m_cropType;
41  boost::optional<unsigned> m_imgIndex;
42  boost::optional<unsigned> m_borderImgIndex;
43  boost::optional<Coordinate> m_coordinates;
44  std::vector<Line> m_lines;
45  boost::optional<unsigned> m_pageSeqNum;
46  boost::optional<unsigned> m_textId;
47  std::map<unsigned, int> m_adjustValuesByIndex;
48  std::vector<int> m_adjustValues;
49  boost::optional<double> m_rotation;
50  boost::optional<std::pair<bool, bool> > m_flips;
51  boost::optional<Margins> m_margins;
52  boost::optional<BorderPosition> m_borderPosition; // Irrelevant except for rectangular shapes
53  std::shared_ptr<const Fill> m_fill;
54  boost::optional<DynamicCustomShape> m_customShape;
56  boost::optional<ColorReference> m_lineBackColor;
57  boost::optional<Dash> m_dash;
58  boost::optional<TableInfo> m_tableInfo;
59  boost::optional<unsigned> m_numColumns;
60  unsigned m_columnSpacing;
61  boost::optional<Arrow> m_beginArrow;
62  boost::optional<Arrow> m_endArrow;
63  boost::optional<VerticalAlign> m_verticalAlign;
64  boost::optional<ColorReference> m_pictureRecolor;
65  boost::optional<Shadow> m_shadow;
66  boost::optional<int> m_innerRotation;
67  std::vector<libmspub::Vertex> m_clipPath;
68  boost::optional<int> m_pictureBrightness;
69  boost::optional<int> m_pictureContrast;
76  m_numColumns(),
79  {
80  }
81  std::shared_ptr<const CustomShape> getCustomShape() const
82  {
83  if (bool(m_customShape))
84  {
86  }
87  if (bool(m_cropType))
88  {
89  return std::shared_ptr<const CustomShape>(
91  std::function<void (const CustomShape *)>(noop));
92  }
93  return std::shared_ptr<const CustomShape>(
95  std::function<void (const CustomShape *)>(noop));
96  }
97 };
98 }
99 #endif
100 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */
libmspub::ShapeInfo::m_borderImgIndex
boost::optional< unsigned > m_borderImgIndex
Definition: ShapeInfo.h:42
libmspub::ShapeInfo::m_pictureContrast
boost::optional< int > m_pictureContrast
Definition: ShapeInfo.h:69
Dash.h
libmspub::ShapeInfo::m_imgIndex
boost::optional< unsigned > m_imgIndex
Definition: ShapeInfo.h:41
libmspub::ShapeInfo::getCustomShape
std::shared_ptr< const CustomShape > getCustomShape() const
Definition: ShapeInfo.h:81
libmspub
Definition: Arrow.h:13
libmspub::ShapeInfo::m_pictureBrightness
boost::optional< int > m_pictureBrightness
Definition: ShapeInfo.h:68
libmspub::ShapeInfo::m_fill
std::shared_ptr< const Fill > m_fill
Definition: ShapeInfo.h:53
TableInfo.h
ColorReference.h
MSPUBTypes.h
libmspub::ShapeInfo::m_adjustValuesByIndex
std::map< unsigned, int > m_adjustValuesByIndex
Definition: ShapeInfo.h:47
libmspub::ShapeInfo::m_customShape
boost::optional< DynamicCustomShape > m_customShape
Definition: ShapeInfo.h:54
libmspub::RECTANGLE
Definition: ShapeType.h:19
libmspub::ShapeInfo::m_margins
boost::optional< Margins > m_margins
Definition: ShapeInfo.h:51
libmspub::ShapeInfo::m_beginArrow
boost::optional< Arrow > m_beginArrow
Definition: ShapeInfo.h:61
libmspub::ShapeInfo::m_type
boost::optional< ShapeType > m_type
Definition: ShapeInfo.h:39
libmspub::ShapeInfo::m_pageSeqNum
boost::optional< unsigned > m_pageSeqNum
Definition: ShapeInfo.h:45
libmspub::ShapeInfo::m_verticalAlign
boost::optional< VerticalAlign > m_verticalAlign
Definition: ShapeInfo.h:63
libmspub::ShapeInfo::m_coordinates
boost::optional< Coordinate > m_coordinates
Definition: ShapeInfo.h:43
Margins.h
Coordinate.h
libmspub::ShapeInfo::m_flips
boost::optional< std::pair< bool, bool > > m_flips
Definition: ShapeInfo.h:50
Line.h
Shadow.h
PolygonUtils.h
libmspub::getCustomShape
const CustomShape * getCustomShape(ShapeType type)
Definition: PolygonUtils.cpp:5245
libmspub::ShapeInfo::m_stretchBorderArt
bool m_stretchBorderArt
Definition: ShapeInfo.h:55
Arrow.h
libmspub::noop
void noop(const CustomShape *)
Definition: MSPUBCollector.cpp:520
libmspub::ShapeInfo::m_adjustValues
std::vector< int > m_adjustValues
Definition: ShapeInfo.h:48
libmspub::ShapeInfo::m_tableInfo
boost::optional< TableInfo > m_tableInfo
Definition: ShapeInfo.h:58
libmspub::ShapeInfo::m_borderPosition
boost::optional< BorderPosition > m_borderPosition
Definition: ShapeInfo.h:52
libmspub::ShapeInfo::m_columnSpacing
unsigned m_columnSpacing
Definition: ShapeInfo.h:60
libmspub::CustomShape
Definition: PolygonUtils.h:59
libmspub::ShapeInfo::m_clipPath
std::vector< libmspub::Vertex > m_clipPath
Definition: ShapeInfo.h:67
libmspub::ShapeInfo::m_endArrow
boost::optional< Arrow > m_endArrow
Definition: ShapeInfo.h:62
libmspub::ShapeInfo::m_cropType
boost::optional< ShapeType > m_cropType
Definition: ShapeInfo.h:40
VerticalAlign.h
Fill.h
libmspub::ShapeInfo::ShapeInfo
ShapeInfo()
Definition: ShapeInfo.h:70
libmspub::ShapeInfo::m_rotation
boost::optional< double > m_rotation
Definition: ShapeInfo.h:49
libmspub::ShapeInfo::m_innerRotation
boost::optional< int > m_innerRotation
Definition: ShapeInfo.h:66
libmspub::ShapeInfo::m_pictureRecolor
boost::optional< ColorReference > m_pictureRecolor
Definition: ShapeInfo.h:64
libmspub::ShapeInfo::m_shadow
boost::optional< Shadow > m_shadow
Definition: ShapeInfo.h:65
libmspub::ShapeInfo::m_lineBackColor
boost::optional< ColorReference > m_lineBackColor
Definition: ShapeInfo.h:56
libmspub::ShapeInfo::m_textId
boost::optional< unsigned > m_textId
Definition: ShapeInfo.h:46
libmspub::ShapeInfo::m_numColumns
boost::optional< unsigned > m_numColumns
Definition: ShapeInfo.h:59
libmspub::getFromDynamicCustomShape
std::shared_ptr< const CustomShape > getFromDynamicCustomShape(const DynamicCustomShape &dcs)
Definition: PolygonUtils.cpp:6381
libmspub::ShapeInfo::m_dash
boost::optional< Dash > m_dash
Definition: ShapeInfo.h:57
libmspub::ShapeInfo
Definition: ShapeInfo.h:37
libmspub::ShapeInfo::m_lines
std::vector< Line > m_lines
Definition: ShapeInfo.h:44
ShapeType.h

Generated for libmspub by doxygen 1.8.16