]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/elements/map.hxx
Canvas: Forward mouse events to elements.
[flightgear.git] / src / Canvas / elements / map.hxx
1 // A group of 2D canvas elements which get automatically transformed according
2 // to the map parameters.
3 //
4 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
5 //
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License as
8 // published by the Free Software Foundation; either version 2 of the
9 // License, or (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful, but
12 // WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
19
20 #ifndef CANVAS_MAP_HXX_
21 #define CANVAS_MAP_HXX_
22
23 #include "group.hxx"
24
25 #include <boost/shared_ptr.hpp>
26 #include <boost/unordered_map.hpp>
27
28 namespace canvas
29 {
30   class GeoNodePair;
31   class Map:
32     public Group
33   {
34     public:
35       Map(SGPropertyNode_ptr node);
36       virtual ~Map();
37
38       virtual void update(double dt);
39
40       virtual void childAdded( SGPropertyNode * parent,
41                                SGPropertyNode * child );
42       virtual void childRemoved( SGPropertyNode * parent,
43                                  SGPropertyNode * child );
44       virtual void valueChanged(SGPropertyNode * child);
45
46     protected:
47
48       virtual void childChanged(SGPropertyNode * child);
49
50       typedef boost::unordered_map< SGPropertyNode*,
51                                     boost::shared_ptr<GeoNodePair>
52                                   > GeoNodes;
53       GeoNodes _geo_nodes;
54       bool _projection_dirty;
55
56       struct GeoCoord
57       {
58         GeoCoord():
59           type(INVALID)
60         {}
61         enum
62         {
63           INVALID,
64           LATITUDE,
65           LONGITUDE
66         } type;
67         double value;
68       };
69
70       GeoCoord parseGeoCoord(const std::string& val) const;
71   };
72
73 } // namespace canvas
74
75 #endif /* CANVAS_MAP_HXX_ */