It builds.
[dcpomatic.git] / src / lib / rect.h
1 /*
2     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef DCPOMATIC_RECT_H
21 #define DCPOMATIC_RECT_H
22
23 #include "position.h"
24
25 /* Put this inside a namespace as Apple put a Rect in the global namespace */
26
27 namespace dcpomatic
28 {
29         
30 /** @struct Rect
31  *  @brief A rectangle.
32  */
33 template <class T>      
34 class Rect
35 {
36 public:
37         
38         Rect ()
39                 : x (0)
40                 , y (0)
41                 , width (0)
42                 , height (0)
43         {}
44
45         Rect (Position<T> p, T w_, T h_)
46                 : x (p.x)
47                 , y (p.y)
48                 , width (w_)
49                 , height (h_)
50         {}
51
52         Rect (T x_, T y_, T w_, T h_)
53                 : x (x_)
54                 , y (y_)
55                 , width (w_)
56                 , height (h_)
57         {}
58
59         T x;
60         T y;
61         T width;
62         T height;
63
64         Position<T> position () const
65         {
66                 return Position<T> (x, y);
67         }
68
69         Rect<T> intersection (Rect<T> const & other) const
70         {
71                 T const tx = max (x, other.x);
72                 T const ty = max (y, other.y);
73         
74                 return Rect (
75                         tx, ty,
76                         min (x + width, other.x + other.width) - tx,
77                         min (y + height, other.y + other.height) - ty
78                         );
79         }
80
81         void extend (Rect<T> const & other)
82         {
83                 x = std::min (x, other.x);
84                 y = std::min (y, other.y);
85                 width = std::max (x + width, other.x + other.width) - x;
86                 height = std::max (y + height, other.y + other.height) - y;
87         }
88
89         bool contains (Position<T> p) const
90         {
91                 return (p.x >= x && p.x <= (x + width) && p.y >= y && p.y <= (y + height));
92         }
93 };
94
95 }
96
97 #endif