]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/rect.hxx
Canvas: First version of new Canvas GUI system.
[flightgear.git] / src / Canvas / rect.hxx
1 // Class representing a rectangular region
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_RECT_HXX_
20 #define CANVAS_RECT_HXX_
21
22 #include <osg/Vec2>
23
24 namespace canvas
25 {
26   template<typename T>
27   class Rect
28   {
29     public:
30       Rect() {}
31
32       Rect(T x, T y, T w, T h):
33         _x1(x),
34         _x2(x + w),
35         _y1(y),
36         _y2(y + h)
37       {}
38
39       void set(T x, T y, T w, T h)
40       {
41         _x1 = x;
42         _x2 = x + w;
43         _y1 = y;
44         _y2 = y + h;
45       }
46
47       T x() const { return _x1; }
48       T y() const { return _y1; }
49       T width() const { return _x2 - _x1; }
50       T height() const { return _y2 - _y1; }
51
52       T l() const { return _x1; }
53       T r() const { return _x2; }
54       T t() const { return _y1; }
55       T b() const { return _y2; }
56
57       bool contains(T x, T y) const
58       {
59         return _x1 <= x && x <= _x2
60             && _y1 <= y && y <= _y2;
61       }
62
63     private:
64       T _x1, _x2, _y1, _y2;
65   };
66 } // namespace canvas
67
68 #endif /* CANVAS_RECT_HXX_ */