No-op: remove all trailing whitespace.
[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 #include <algorithm>
25
26 /* Put this inside a namespace as Apple put a Rect in the global namespace */
27
28 namespace dcpomatic
29 {
30
31 /** @struct Rect
32  *  @brief A rectangle.
33  */
34 template <class T>
35 class Rect
36 {
37 public:
38
39         Rect ()
40                 : x (0)
41                 , y (0)
42                 , width (0)
43                 , height (0)
44         {}
45
46         Rect (Position<T> p, T w_, T h_)
47                 : x (p.x)
48                 , y (p.y)
49                 , width (w_)
50                 , height (h_)
51         {}
52
53         Rect (T x_, T y_, T w_, T h_)
54                 : x (x_)
55                 , y (y_)
56                 , width (w_)
57                 , height (h_)
58         {}
59
60         T x;
61         T y;
62         T width;
63         T height;
64
65         Position<T> position () const
66         {
67                 return Position<T> (x, y);
68         }
69
70         Rect<T> intersection (Rect<T> const & other) const
71         {
72                 T const tx = max (x, other.x);
73                 T const ty = max (y, other.y);
74
75                 return Rect (
76                         tx, ty,
77                         min (x + width, other.x + other.width) - tx,
78                         min (y + height, other.y + other.height) - ty
79                         );
80         }
81
82         void extend (Rect<T> const & other)
83         {
84                 x = std::min (x, other.x);
85                 y = std::min (y, other.y);
86                 width = std::max (x + width, other.x + other.width) - x;
87                 height = std::max (y + height, other.y + other.height) - y;
88         }
89
90         bool contains (Position<T> p) const
91         {
92                 return (p.x >= x && p.x <= (x + width) && p.y >= y && p.y <= (y + height));
93         }
94 };
95
96 }
97
98 #endif