ShapeGroupElement.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_SHAPEGROUPELEMENT_H
11 #define INCLUDED_SHAPEGROUPELEMENT_H
12 
13 #include <functional>
14 #include <memory>
15 #include <vector>
16 
17 #include <boost/optional.hpp>
18 
19 #include "ShapeInfo.h"
20 #include "VectorTransformation2D.h"
21 
22 namespace libmspub
23 {
25 {
26  boost::optional<ShapeInfo> m_shapeInfo;
27  std::weak_ptr<ShapeGroupElement> m_parent;
28  std::vector<std::shared_ptr<ShapeGroupElement>> m_children;
29  unsigned m_seqNum;
31  ShapeGroupElement(const ShapeGroupElement &) = delete;
33  ShapeGroupElement(const std::shared_ptr<ShapeGroupElement> &parent, unsigned seqNum);
34 
35 public:
37  static std::shared_ptr<ShapeGroupElement> create(const std::shared_ptr<ShapeGroupElement> &parent, unsigned seqNum = 0);
38 
39  void setShapeInfo(const ShapeInfo &shapeInfo);
40  void setup(std::function<void(ShapeGroupElement &self)> visitor);
41  void visit(std::function<
42  std::function<void(void)>
43  (const ShapeInfo &info, const Coordinate &relativeTo, const VectorTransformation2D &foldedTransform, bool isGroup, const VectorTransformation2D &thisTransform)> visitor,
44  const Coordinate &relativeTo, const VectorTransformation2D &foldedTransform) const;
45  void visit(std::function<
46  std::function<void(void)>
47  (const ShapeInfo &info, const Coordinate &relativeTo, const VectorTransformation2D &foldedTransform, bool isGroup, const VectorTransformation2D &thisTransform)> visitor) const;
48  bool isGroup() const;
49  std::shared_ptr<ShapeGroupElement> getParent() const;
50  void setSeqNum(unsigned seqNum);
51  void setTransform(const VectorTransformation2D &transform);
52  unsigned getSeqNum() const;
53 };
54 }
55 
56 #endif
57 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */
void setShapeInfo(const ShapeInfo &shapeInfo)
Definition: ShapeGroupElement.cpp:31
static std::shared_ptr< ShapeGroupElement > create(const std::shared_ptr< ShapeGroupElement > &parent, unsigned seqNum=0)
Definition: ShapeGroupElement.cpp:23
ShapeGroupElement(const ShapeGroupElement &)=delete
ShapeGroupElement & operator=(const ShapeGroupElement &)=delete
void visit(std::function< std::function< void(void)>(const ShapeInfo &info, const Coordinate &relativeTo, const VectorTransformation2D &foldedTransform, bool isGroup, const VectorTransformation2D &thisTransform)> visitor, const Coordinate &relativeTo, const VectorTransformation2D &foldedTransform) const
VectorTransformation2D m_transform
Definition: ShapeGroupElement.h:32
void setTransform(const VectorTransformation2D &transform)
Definition: ShapeGroupElement.cpp:36
std::weak_ptr< ShapeGroupElement > m_parent
Definition: ShapeGroupElement.h:27
boost::optional< ShapeInfo > m_shapeInfo
Definition: ShapeGroupElement.h:26
std::vector< std::shared_ptr< ShapeGroupElement > > m_children
Definition: ShapeGroupElement.h:28
Definition: Coordinate.h:17
~ShapeGroupElement()
Definition: ShapeGroupElement.cpp:19
Definition: Arrow.h:13
void setup(std::function< void(ShapeGroupElement &self)> visitor)
Definition: ShapeGroupElement.cpp:41
Definition: VectorTransformation2D.h:25
unsigned getSeqNum() const
Definition: ShapeGroupElement.cpp:98
unsigned m_seqNum
Definition: ShapeGroupElement.h:29
std::shared_ptr< ShapeGroupElement > getParent() const
Definition: ShapeGroupElement.cpp:88
Definition: ShapeGroupElement.h:24
Definition: ShapeInfo.h:37
bool isGroup() const
Definition: ShapeGroupElement.cpp:83
void setSeqNum(unsigned seqNum)
Definition: ShapeGroupElement.cpp:93

Generated for libmspub by doxygen 1.8.13