Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / rect.h
index 6f4709c088ce137b2c589df64cb69304c1b62373..97b90abc5e28546ab74d6c0fa1115460289a0dbb 100644 (file)
 #define DCPOMATIC_RECT_H
 
 #include "position.h"
+#include <algorithm>
 
 /* Put this inside a namespace as Apple put a Rect in the global namespace */
 
 namespace dcpomatic
 {
-       
+
 /** @struct Rect
  *  @brief A rectangle.
  */
-template <class T>     
+template <class T>
 class Rect
 {
 public:
-       
+
        Rect ()
                : x (0)
                , y (0)
@@ -42,6 +43,13 @@ public:
                , height (0)
        {}
 
+       Rect (Position<T> p, T w_, T h_)
+               : x (p.x)
+               , y (p.y)
+               , width (w_)
+               , height (h_)
+       {}
+
        Rect (T x_, T y_, T w_, T h_)
                : x (x_)
                , y (y_)
@@ -54,14 +62,16 @@ public:
        T width;
        T height;
 
-       Position<T> position () const {
+       Position<T> position () const
+       {
                return Position<T> (x, y);
        }
 
-       Rect<T> intersection (Rect<T> const & other) const {
+       Rect<T> intersection (Rect<T> const & other) const
+       {
                T const tx = max (x, other.x);
                T const ty = max (y, other.y);
-       
+
                return Rect (
                        tx, ty,
                        min (x + width, other.x + other.width) - tx,
@@ -69,7 +79,16 @@ public:
                        );
        }
 
-       bool contains (Position<T> p) const {
+       void extend (Rect<T> const & other)
+       {
+               x = std::min (x, other.x);
+               y = std::min (y, other.y);
+               width = std::max (x + width, other.x + other.width) - x;
+               height = std::max (y + height, other.y + other.height) - y;
+       }
+
+       bool contains (Position<T> p) const
+       {
                return (p.x >= x && p.x <= (x + width) && p.y >= y && p.y <= (y + height));
        }
 };