]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/elements/CanvasPath.hxx
Canvas: add chainable helpers to Path for adding segments.
[simgear.git] / simgear / canvas / elements / CanvasPath.hxx
1 // An OpenVG path on the Canvas
2 //
3 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU Library General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
18
19 #ifndef CANVAS_PATH_HXX_
20 #define CANVAS_PATH_HXX_
21
22 #include "CanvasElement.hxx"
23 #include <boost/preprocessor/iteration/iterate.hpp>
24
25 namespace simgear
26 {
27 namespace canvas
28 {
29   class Path:
30     public Element
31   {
32     public:
33       Path( const CanvasWeakPtr& canvas,
34             const SGPropertyNode_ptr& node,
35             const Style& parent_style,
36             Element* parent = 0 );
37       virtual ~Path();
38
39       virtual void update(double dt);
40
41       virtual osg::BoundingBox getTransformedBounds(const osg::Matrix& m) const;
42
43 #define BOOST_PP_ITERATION_LIMITS (0, 6)
44 #define BOOST_PP_FILENAME_1 \
45         <simgear/canvas/elements/detail/add_segment_variadic.hxx>
46 #include BOOST_PP_ITERATE()
47
48       /** Move path cursor */
49       Path& moveTo(float x_abs, float y_abs);
50       Path& move(float x_rel, float y_rel);
51
52       /** Add a line */
53       Path& lineTo(float x_abs, float y_abs);
54       Path& line(float x_rel, float y_rel);
55
56       /** Add a horizontal line */
57       Path& horizTo(float x_abs);
58       Path& horiz(float x_rel);
59
60       /** Add a vertical line */
61       Path& vertTo(float y_abs);
62       Path& vert(float y_rel);
63
64       /** Close the path (implicit lineTo to first point of path) */
65       Path& close();
66
67     protected:
68
69       enum PathAttributes
70       {
71         CMDS       = LAST_ATTRIBUTE << 1,
72         COORDS     = CMDS << 1
73       };
74
75       class PathDrawable;
76       typedef osg::ref_ptr<PathDrawable> PathDrawableRef;
77       PathDrawableRef _path;
78
79       virtual void childRemoved(SGPropertyNode * child);
80       virtual void childChanged(SGPropertyNode * child);
81   };
82
83 } // namespace canvas
84 } // namespace simgear
85
86 #endif /* CANVAS_PATH_HXX_ */