]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/elements/CanvasImage.hxx
Fix a Clang warning in Shiva.
[flightgear.git] / src / Canvas / elements / CanvasImage.hxx
1 // An image on the canvas
2 //
3 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18
19 #ifndef CANVAS_IMAGE_HXX_
20 #define CANVAS_IMAGE_HXX_
21
22 #include "element.hxx"
23 #include <Canvas/canvas_fwd.hpp>
24 #include <Canvas/rect.hxx>
25
26 #include <osg/Texture2D>
27
28 namespace canvas
29 {
30
31   class Image:
32     public Element
33   {
34     public:
35       /**
36        * @param node    Property node containing settings for this image:
37        *                  rect/[left/right/top/bottom]  Dimensions of source
38        *                                                rect
39        *                  size[0-1]                     Dimensions of rectangle
40        *                  [x,y]                         Position of rectangle
41        */
42       Image(SGPropertyNode_ptr node, const Style& parent_style);
43       virtual ~Image();
44
45       virtual void update(double dt);
46
47       void setCanvas(CanvasPtr canvas);
48       CanvasWeakPtr getCanvas() const;
49
50       void setImage(osg::Image *img);
51       void setFill(const std::string& fill);
52
53       const Rect<float>& getRegion() const;
54
55     protected:
56
57       enum ImageAttributes
58       {
59         SRC_RECT       = LAST_ATTRIBUTE << 1, // Source image rectangle
60         DEST_SIZE      = SRC_RECT << 1        // Element size
61       };
62
63       virtual void childChanged(SGPropertyNode * child);
64
65       void setupDefaultDimensions();
66       Rect<int> getTextureDimensions() const;
67
68       osg::ref_ptr<osg::Texture2D> _texture;
69       // TODO optionally forward events to canvas
70       CanvasWeakPtr _canvas;
71
72       osg::ref_ptr<osg::Geometry>  _geom;
73       osg::ref_ptr<osg::Vec3Array> _vertices;
74       osg::ref_ptr<osg::Vec2Array> _texCoords;
75       osg::ref_ptr<osg::Vec4Array> _colors;
76
77       SGPropertyNode *_node_src_rect;
78       Rect<float>     _src_rect,
79                       _region;
80   };
81
82 }  // namespace canvas
83
84 #endif /* CANVAS_IMAGE_HXX_ */