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 <optional>
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 std::optional<bool> &noFill,
56 const std::optional<bool> &noLine, const std::optional<bool> &noShow);
57 void addEmpty(unsigned id, unsigned level);
58 void addMoveTo(unsigned id, unsigned level, const std::optional<double> &x, const std::optional<double> &y);
59 void addLineTo(unsigned id, unsigned level, const std::optional<double> &x, const std::optional<double> &y);
60 void addArcTo(unsigned id, unsigned level, const std::optional<double> &x2, const std::optional<double> &y2,
61 const std::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 std::optional<double> &x2, const std::optional<double> &y2,
67 const std::optional<double> &knot, const std::optional<double> &knotPrev, const std::optional<double> &weight,
68 const std::optional<double> &weightPrev, const std::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, std::optional<double> &x, std::optional<double> &y, std::optional<PolylineData> &data);
73 void addEllipse(unsigned id, unsigned level, const std::optional<double> &cx, const std::optional<double> &cy,
74 const std::optional<double> &xleft, const std::optional<double> &yleft,
75 const std::optional<double> &xtop, const std::optional<double> &ytop);
76 void addEllipticalArcTo(unsigned id, unsigned level, const std::optional<double> &x3, const std::optional<double> &y3,
77 const std::optional<double> &x2, const std::optional<double> &y2,
78 const std::optional<double> &angle, const std::optional<double> &ecc);
79 void addSplineStart(unsigned id, unsigned level, const std::optional<double> &x, const std::optional<double> &y,
80 const std::optional<double> &secondKnot, const std::optional<double> &firstKnot,
81 const std::optional<double> &lastKnot, const std::optional<unsigned> &degree);
82 void addSplineKnot(unsigned id, unsigned level, const std::optional<double> &x, const std::optional<double> &y,
83 const std::optional<double> &knot);
84 void addInfiniteLine(unsigned id, unsigned level, const std::optional<double> &x1, const std::optional<double> &y1,
85 const std::optional<double> &x2, const std::optional<double> &y2);
86 void addRelCubBezTo(unsigned id, unsigned level, const std::optional<double> &x, const std::optional<double> &y,
87 const std::optional<double> &a, const std::optional<double> &b,
88 const std::optional<double> &c, const std::optional<double> &d);
89 void addRelEllipticalArcTo(unsigned id, unsigned level, const std::optional<double> &x3, const std::optional<double> &y3,
90 const std::optional<double> &x2, const std::optional<double> &y2,
91 const std::optional<double> &angle, const std::optional<double> &ecc);
92 void addRelMoveTo(unsigned id, unsigned level, const std::optional<double> &x, const std::optional<double> &y);
93 void addRelLineTo(unsigned id, unsigned level, const std::optional<double> &x, const std::optional<double> &y);
94 void addRelQuadBezTo(unsigned id, unsigned level, const std::optional<double> &x, const std::optional<double> &y,
95 const std::optional<double> &a, const std::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 addRelCubBezTo(unsigned id, unsigned level, const std::optional< double > &x, const std::optional< double > &y, const std::optional< double > &a, const std::optional< double > &b, const std::optional< double > &c, const std::optional< double > &d)
Definition VSDGeometryList.cpp:814
void addSplineKnot(unsigned id, unsigned level, const std::optional< double > &x, const std::optional< double > &y, const std::optional< double > &knot)
Definition VSDGeometryList.cpp:781
std::vector< unsigned > getElementsOrder() const
Definition VSDGeometryList.h:104
VSDGeometryList & operator=(const VSDGeometryList &geomList)
Definition VSDGeometryList.cpp:581
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 addEllipse(unsigned id, unsigned level, const std::optional< double > &cx, const std::optional< double > &cy, const std::optional< double > &xleft, const std::optional< double > &yleft, const std::optional< double > &xtop, const std::optional< double > &ytop)
Definition VSDGeometryList.cpp:721
void addArcTo(unsigned id, unsigned level, const std::optional< double > &x2, const std::optional< double > &y2, const std::optional< double > &bow)
Definition VSDGeometryList.cpp:647
void addLineTo(unsigned id, unsigned level, const std::optional< double > &x, const std::optional< double > &y)
Definition VSDGeometryList.cpp:633
void handle(VSDCollector *collector) const
Definition VSDGeometryList.cpp:905
unsigned count() const
Definition VSDGeometryList.h:108
void setElementsOrder(const std::vector< unsigned > &m_elementsOrder)
Definition VSDGeometryList.cpp:898
bool empty() const
Definition VSDGeometryList.h:99
void addRelLineTo(unsigned id, unsigned level, const std::optional< double > &x, const std::optional< double > &y)
Definition VSDGeometryList.cpp:868
void clear()
Definition VSDGeometryList.cpp:936
void addRelEllipticalArcTo(unsigned id, unsigned level, const std::optional< double > &x3, const std::optional< double > &y3, const std::optional< double > &x2, const std::optional< double > &y2, const std::optional< double > &angle, const std::optional< double > &ecc)
Definition VSDGeometryList.cpp:834
void addEllipticalArcTo(unsigned id, unsigned level, const std::optional< double > &x3, const std::optional< double > &y3, const std::optional< double > &x2, const std::optional< double > &y2, const std::optional< double > &angle, const std::optional< double > &ecc)
Definition VSDGeometryList.cpp:741
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 resetLevel(unsigned level)
Definition VSDGeometryList.cpp:954
void addRelMoveTo(unsigned id, unsigned level, const std::optional< double > &x, const std::optional< double > &y)
Definition VSDGeometryList.cpp:854
void addGeometry(unsigned id, unsigned level, const std::optional< bool > &noFill, const std::optional< bool > &noLine, const std::optional< bool > &noShow)
Definition VSDGeometryList.cpp:597
void addRelQuadBezTo(unsigned id, unsigned level, const std::optional< double > &x, const std::optional< double > &y, const std::optional< double > &a, const std::optional< double > &b)
Definition VSDGeometryList.cpp:882
VSDGeometryList()
Definition VSDGeometryList.cpp:567
void addSplineStart(unsigned id, unsigned level, const std::optional< double > &x, const std::optional< double > &y, const std::optional< double > &secondKnot, const std::optional< double > &firstKnot, const std::optional< double > &lastKnot, const std::optional< unsigned > &degree)
Definition VSDGeometryList.cpp:761
VSDGeometryListElement * getElement(unsigned index) const
Definition VSDGeometryList.cpp:942
void addInfiniteLine(unsigned id, unsigned level, const std::optional< double > &x1, const std::optional< double > &y1, const std::optional< double > &x2, const std::optional< double > &y2)
Definition VSDGeometryList.cpp:797
void addMoveTo(unsigned id, unsigned level, const std::optional< double > &x, const std::optional< double > &y)
Definition VSDGeometryList.cpp:618
Definition libvisio_utils.h:47

Generated for libvisio by doxygen 1.14.0