]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/geometry.cpp
Add a persistent view size attribute to List
[libs/gltk.git] / source / geometry.cpp
index 81efcd05bad2e69d22325eb3e7df851f638d3644..0cb78ffcc392d636a45a7e7469d4ea5690601bbb 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of libmspgltk
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #include "geometry.h"
 
 namespace Msp {
@@ -15,6 +8,11 @@ bool Geometry::is_inside(int x_, int y_) const
        return (x_>=x && x_<x+static_cast<int>(w) && y_>=y && y_<y+static_cast<int>(h));
 }
 
+bool Geometry::is_inside_relative(int x_, int y_) const
+{
+       return (x_>=0 && x_<static_cast<int>(w) && y_>=0 && y_<static_cast<int>(h));
+}
+
 
 Sides::Sides():
        top(0),
@@ -23,27 +21,83 @@ Sides::Sides():
        left(0)
 { }
 
+Sides::Sides(unsigned s):
+       top(s),
+       right(s),
+       bottom(s),
+       left(s)
+{ }
+
+Sides::Sides(unsigned v, unsigned h):
+       top(v),
+       right(h),
+       bottom(v),
+       left(h)
+{ }
+
+Sides::Sides(unsigned t, unsigned h, unsigned b):
+       top(t),
+       right(h),
+       bottom(b),
+       left(h)
+{ }
+
+Sides::Sides(unsigned t, unsigned r, unsigned b, unsigned l):
+       top(t),
+       right(r),
+       bottom(b),
+       left(l)
+{ }
+
 
 Sides::Loader::Loader(Sides &s):
-       sides(s)
+       DataFile::ObjectLoader<Sides>(s)
 {
+       add("horizontal", &Loader::horizontal);
+       add("vertical",   &Loader::vertical);
        add("top",    &Sides::top);
        add("right",  &Sides::right);
        add("bottom", &Sides::bottom);
        add("left",   &Sides::left);
 }
 
+void Sides::Loader::horizontal(unsigned h)
+{
+       obj.right = h;
+       obj.left = h;
+}
+
+void Sides::Loader::vertical(unsigned v)
+{
+       obj.top = v;
+       obj.bottom = v;
+}
+
 
 void Alignment::apply(Geometry &geom, const Geometry &parent) const
 {
-       geom.x+=static_cast<int>((parent.w-geom.w)*x);
-       geom.y+=static_cast<int>((parent.h-geom.h)*y);
+       if(parent.w>geom.w)
+       {
+               geom.w += static_cast<unsigned>((parent.w-geom.w)*w);
+               geom.x += static_cast<int>((parent.w-geom.w)*x);
+       }
+       if(parent.h>geom.h)
+       {
+               geom.h += static_cast<unsigned>((parent.h-geom.h)*h);
+               geom.y += static_cast<int>((parent.h-geom.h)*y);
+       }
 }
 
 void Alignment::apply(Geometry &geom, const Geometry &parent, const Sides &margin) const
 {
-       geom.x+=static_cast<int>(margin.left+(parent.w-margin.left-margin.right-geom.w)*x);
-       geom.y+=static_cast<int>(margin.bottom+(parent.h-margin.bottom-margin.top-geom.h)*y);
+       Geometry content = parent;
+       content.w -= margin.left+margin.right;
+       content.h -= margin.bottom+margin.top;
+
+       geom.x += margin.left;
+       geom.y += margin.bottom;
+
+       apply(geom, content);
 }
 
 } // namespace GLtk