]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/elements/CanvasImage.hxx
Initial work on Image element for Canvas.
[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
24 #include <boost/shared_ptr.hpp>
25
26 #include <map>
27 #include <vector>
28
29 #include <osg/Texture2D>
30
31 namespace canvas
32 {
33
34   class Image:
35     public Element
36   {
37     public:
38       Image(SGPropertyNode_ptr node);
39       ~Image();
40
41       virtual void update(double dt);
42
43     protected:
44
45       enum TextAttributes
46       {
47         SRC_RECT       = LAST_ATTRIBUTE << 1, // Source image rectangle
48       };
49
50       SGPropertyNode_ptr  _source_rect, 
51           _dest_rect;
52
53       virtual void childChanged(SGPropertyNode * child);
54       virtual void colorChanged(const osg::Vec4& color);
55       virtual void colorFillChanged(const osg::Vec4& color);
56
57       void handleHit(float x, float y);
58
59       osg::ref_ptr<osg::Texture2D> _texture;
60       
61       osg::Geometry *_geom;
62       osg::Vec2Array *_vertices;
63       osg::Vec2Array *_texCoords;
64       osg::Vec4Array* _colors;      
65   };
66
67 }  // namespace canvas
68
69 #endif /* CANVAS_IMAGE_HXX_ */