VSDGeometryList.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 libvisio 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 __VSDGEOMETRYLIST_H__
11#define __VSDGEOMETRYLIST_H__
12
13#include <map>
14#include <memory>
15#include <vector>
16#include <functional>
17#include <algorithm>
18#include <boost/optional.hpp>
19#include "VSDTypes.h"
20
21namespace libvisio
22{
23
24class VSDCollector;
25
27{
28public:
29 VSDGeometryListElement(unsigned id, unsigned level)
30 : m_id(id), m_level(level) {}
32 virtual void handle(VSDCollector *collector) const = 0;
34 virtual unsigned getDataID() const
35 {
36 return MINUS_ONE;
37 }
38 void setLevel(unsigned level)
39 {
40 m_level = level;
41 }
42protected:
43 unsigned m_id;
44 unsigned m_level;
45};
46
48{
49public:
51 VSDGeometryList(const VSDGeometryList &geomList);
54
55 void addGeometry(unsigned id, unsigned level, const boost::optional<bool> &noFill,
56 const boost::optional<bool> &noLine, const boost::optional<bool> &noShow);
57 void addEmpty(unsigned id, unsigned level);
58 void addMoveTo(unsigned id, unsigned level, const boost::optional<double> &x, const boost::optional<double> &y);
59 void addLineTo(unsigned id, unsigned level, const boost::optional<double> &x, const boost::optional<double> &y);
60 void addArcTo(unsigned id, unsigned level, const boost::optional<double> &x2, const boost::optional<double> &y2,
61 const boost::optional<double> &bow);
62 void addNURBSTo(unsigned id, unsigned level, double x2, double y2, unsigned char xType, unsigned char yType, unsigned degree,
63 const std::vector<std::pair<double, double> > &controlPoints, const std::vector<double> &knotVector,
64 const std::vector<double> &weights);
65 void addNURBSTo(unsigned id, unsigned level, double x2, double y2, double knot, double knotPrev, double weight, double weightPrev, unsigned dataID);
66 void addNURBSTo(unsigned id, unsigned level, const boost::optional<double> &x2, const boost::optional<double> &y2,
67 const boost::optional<double> &knot, const boost::optional<double> &knotPrev, const boost::optional<double> &weight,
68 const boost::optional<double> &weightPrev, const boost::optional<NURBSData> &data);
69 void addPolylineTo(unsigned id, unsigned level, double x, double y, unsigned char xType, unsigned char yType,
70 const std::vector<std::pair<double, double> > &points);
71 void addPolylineTo(unsigned id, unsigned level, double x, double y, unsigned dataID);
72 void addPolylineTo(unsigned id, unsigned level, boost::optional<double> &x, boost::optional<double> &y, boost::optional<PolylineData> &data);
73 void addEllipse(unsigned id, unsigned level, const boost::optional<double> &cx, const boost::optional<double> &cy,
74 const boost::optional<double> &xleft, const boost::optional<double> &yleft,
75 const boost::optional<double> &xtop, const boost::optional<double> &ytop);
76 void addEllipticalArcTo(unsigned id, unsigned level, const boost::optional<double> &x3, const boost::optional<double> &y3,
77 const boost::optional<double> &x2, const boost::optional<double> &y2,
78 const boost::optional<double> &angle, const boost::optional<double> &ecc);
79 void addSplineStart(unsigned id, unsigned level, const boost::optional<double> &x, const boost::optional<double> &y,
80 const boost::optional<double> &secondKnot, const boost::optional<double> &firstKnot,
81 const boost::optional<double> &lastKnot, const boost::optional<unsigned> &degree);
82 void addSplineKnot(unsigned id, unsigned level, const boost::optional<double> &x, const boost::optional<double> &y,
83 const boost::optional<double> &knot);
84 void addInfiniteLine(unsigned id, unsigned level, const boost::optional<double> &x1, const boost::optional<double> &y1,
85 const boost::optional<double> &x2, const boost::optional<double> &y2);
86 void addRelCubBezTo(unsigned id, unsigned level, const boost::optional<double> &x, const boost::optional<double> &y,
87 const boost::optional<double> &a, const boost::optional<double> &b,
88 const boost::optional<double> &c, const boost::optional<double> &d);
89 void addRelEllipticalArcTo(unsigned id, unsigned level, const boost::optional<double> &x3, const boost::optional<double> &y3,
90 const boost::optional<double> &x2, const boost::optional<double> &y2,
91 const boost::optional<double> &angle, const boost::optional<double> &ecc);
92 void addRelMoveTo(unsigned id, unsigned level, const boost::optional<double> &x, const boost::optional<double> &y);
93 void addRelLineTo(unsigned id, unsigned level, const boost::optional<double> &x, const boost::optional<double> &y);
94 void addRelQuadBezTo(unsigned id, unsigned level, const boost::optional<double> &x, const boost::optional<double> &y,
95 const boost::optional<double> &a, const boost::optional<double> &b);
96 void setElementsOrder(const std::vector<unsigned> &m_elementsOrder);
97 void handle(VSDCollector *collector) const;
98 void clear();
99 bool empty() const
100 {
101 return (m_elements.empty());
102 }
103 VSDGeometryListElement *getElement(unsigned index) const;
104 std::vector<unsigned> getElementsOrder() const
105 {
106 return m_elementsOrder;
107 }
108 unsigned count() const
109 {
110 return (unsigned)m_elements.size();
111 }
112 void resetLevel(unsigned level);
113private:
114 std::map<unsigned, std::unique_ptr<VSDGeometryListElement>> m_elements;
115 std::vector<unsigned> m_elementsOrder;
116};
117
118} // namespace libvisio
119
120#endif // __VSDGEOMETRYLIST_H__
121/* vim:set shiftwidth=2 softtabstop=2 expandtab: */
#define MINUS_ONE
Definition VSDTypes.h:18
Definition VSDCollector.h:21
Definition VSDGeometryList.h:27
void setLevel(unsigned level)
Definition VSDGeometryList.h:38
unsigned m_id
Definition VSDGeometryList.h:43
virtual unsigned getDataID() const
Definition VSDGeometryList.h:34
virtual void handle(VSDCollector *collector) const =0
unsigned m_level
Definition VSDGeometryList.h:44
virtual ~VSDGeometryListElement()
Definition VSDGeometryList.h:31
VSDGeometryListElement(unsigned id, unsigned level)
Definition VSDGeometryList.h:29
virtual VSDGeometryListElement * clone()=0
~VSDGeometryList()
Definition VSDGeometryList.cpp:593
std::vector< unsigned > m_elementsOrder
Definition VSDGeometryList.h:115
std::map< unsigned, std::unique_ptr< VSDGeometryListElement > > m_elements
Definition VSDGeometryList.h:114
void addLineTo(unsigned id, unsigned level, const boost::optional< double > &x, const boost::optional< double > &y)
Definition VSDGeometryList.cpp:633
std::vector< unsigned > getElementsOrder() const
Definition VSDGeometryList.h:104
VSDGeometryList & operator=(const VSDGeometryList &geomList)
Definition VSDGeometryList.cpp:581
void addRelEllipticalArcTo(unsigned id, unsigned level, const boost::optional< double > &x3, const boost::optional< double > &y3, const boost::optional< double > &x2, const boost::optional< double > &y2, const boost::optional< double > &angle, const boost::optional< double > &ecc)
Definition VSDGeometryList.cpp:834
void addEmpty(unsigned id, unsigned level)
Definition VSDGeometryList.cpp:613
void addNURBSTo(unsigned id, unsigned level, double x2, double y2, unsigned char xType, unsigned char yType, unsigned degree, const std::vector< std::pair< double, double > > &controlPoints, const std::vector< double > &knotVector, const std::vector< double > &weights)
Definition VSDGeometryList.cpp:663
void addRelMoveTo(unsigned id, unsigned level, const boost::optional< double > &x, const boost::optional< double > &y)
Definition VSDGeometryList.cpp:854
void addRelCubBezTo(unsigned id, unsigned level, const boost::optional< double > &x, const boost::optional< double > &y, const boost::optional< double > &a, const boost::optional< double > &b, const boost::optional< double > &c, const boost::optional< double > &d)
Definition VSDGeometryList.cpp:814
void addMoveTo(unsigned id, unsigned level, const boost::optional< double > &x, const boost::optional< double > &y)
Definition VSDGeometryList.cpp:618
void handle(VSDCollector *collector) const
Definition VSDGeometryList.cpp:905
void addInfiniteLine(unsigned id, unsigned level, const boost::optional< double > &x1, const boost::optional< double > &y1, const boost::optional< double > &x2, const boost::optional< double > &y2)
Definition VSDGeometryList.cpp:797
unsigned count() const
Definition VSDGeometryList.h:108
void addEllipse(unsigned id, unsigned level, const boost::optional< double > &cx, const boost::optional< double > &cy, const boost::optional< double > &xleft, const boost::optional< double > &yleft, const boost::optional< double > &xtop, const boost::optional< double > &ytop)
Definition VSDGeometryList.cpp:721
void setElementsOrder(const std::vector< unsigned > &m_elementsOrder)
Definition VSDGeometryList.cpp:898
void addSplineKnot(unsigned id, unsigned level, const boost::optional< double > &x, const boost::optional< double > &y, const boost::optional< double > &knot)
Definition VSDGeometryList.cpp:781
bool empty() const
Definition VSDGeometryList.h:99
void clear()
Definition VSDGeometryList.cpp:936
void addSplineStart(unsigned id, unsigned level, const boost::optional< double > &x, const boost::optional< double > &y, const boost::optional< double > &secondKnot, const boost::optional< double > &firstKnot, const boost::optional< double > &lastKnot, const boost::optional< unsigned > &degree)
Definition VSDGeometryList.cpp:761
void addGeometry(unsigned id, unsigned level, const boost::optional< bool > &noFill, const boost::optional< bool > &noLine, const boost::optional< bool > &noShow)
Definition VSDGeometryList.cpp:597
void addPolylineTo(unsigned id, unsigned level, double x, double y, unsigned char xType, unsigned char yType, const std::vector< std::pair< double, double > > &points)
Definition VSDGeometryList.cpp:695
void addRelLineTo(unsigned id, unsigned level, const boost::optional< double > &x, const boost::optional< double > &y)
Definition VSDGeometryList.cpp:868
void resetLevel(unsigned level)
Definition VSDGeometryList.cpp:954
void addArcTo(unsigned id, unsigned level, const boost::optional< double > &x2, const boost::optional< double > &y2, const boost::optional< double > &bow)
Definition VSDGeometryList.cpp:647
void addRelQuadBezTo(unsigned id, unsigned level, const boost::optional< double > &x, const boost::optional< double > &y, const boost::optional< double > &a, const boost::optional< double > &b)
Definition VSDGeometryList.cpp:882
VSDGeometryList()
Definition VSDGeometryList.cpp:567
void addEllipticalArcTo(unsigned id, unsigned level, const boost::optional< double > &x3, const boost::optional< double > &y3, const boost::optional< double > &x2, const boost::optional< double > &y2, const boost::optional< double > &angle, const boost::optional< double > &ecc)
Definition VSDGeometryList.cpp:741
VSDGeometryListElement * getElement(unsigned index) const
Definition VSDGeometryList.cpp:942
Definition libvisio_utils.h:49

Generated for libvisio by doxygen 1.14.0