]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/rect.hxx
Canvas: Image/Window unifying and allow using canvas inside canvas.
[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       void setX(T x) { T w = width(); _x1 = x; _x2 = x + w; }
53       void setY(T y) { T h = height(); _y1 = y; _y2 = y + h; }
54       void setWidth(T w) { _x2 = _x1 + w; }
55       void setHeight(T h) { _y2 = _y1 + h; }
56
57       T l() const { return _x1; }
58       T r() const { return _x2; }
59       T t() const { return _y1; }
60       T b() const { return _y2; }
61
62       void setLeft(T l) { _x1 = l; }
63       void setRight(T r) { _x2 = r; }
64       void setTop(T t) { _y1 = t; }
65       void setBottom(T b) { _y2 = b; }
66
67       bool contains(T x, T y) const
68       {
69         return _x1 <= x && x <= _x2
70             && _y1 <= y && y <= _y2;
71       }
72
73     private:
74       T _x1, _x2, _y1, _y2;
75   };
76 } // namespace canvas
77
78 #endif /* CANVAS_RECT_HXX_ */