]> git.tdb.fi Git - libs/gltk.git/commitdiff
Add various constructors to Sides (semantics inspired by CSS margins)
authorMikko Rasa <tdb@tdb.fi>
Mon, 28 Feb 2011 15:25:26 +0000 (15:25 +0000)
committerMikko Rasa <tdb@tdb.fi>
Mon, 28 Feb 2011 15:25:26 +0000 (15:25 +0000)
Reduce code duplication in Alignment::apply

source/geometry.cpp
source/geometry.h

index 5c304d389a631eab7c63c905b28425bcaaa7c5da..91d7c5a50abadcb8076192e48eea2b6c8a476608 100644 (file)
@@ -1,7 +1,7 @@
 /* $Id$
 
 This file is part of libmspgltk
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
+Copyright © 2007-2008, 2010-2011  Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
 
@@ -28,6 +28,34 @@ 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):
        DataFile::ObjectLoader<Sides>(s)
@@ -55,22 +83,14 @@ void Alignment::apply(Geometry &geom, const Geometry &parent) const
 
 void Alignment::apply(Geometry &geom, const Geometry &parent, const Sides &margin) const
 {
-       unsigned pw = parent.w-margin.left-margin.right;
-       unsigned ph = parent.h-margin.bottom-margin.top;
+       Geometry content = parent;
+       content.w -= margin.left+margin.right;
+       content.h -= margin.bottom+margin.top;
 
        geom.x += margin.left;
        geom.y += margin.bottom;
 
-       if(pw>geom.w)
-       {
-               geom.w += static_cast<unsigned>((pw-geom.w)*w);
-               geom.x += static_cast<int>((pw-geom.w)*x);
-       }
-       if(ph>geom.h)
-       {
-               geom.h += static_cast<unsigned>((ph-geom.h)*h);
-               geom.y += static_cast<int>((ph-geom.h)*y);
-       }
+       apply(geom, content);
 }
 
 } // namespace GLtk
index 4fe6a75ae33dab5a89fa2f907a177a6ee644fcc9..ed18e549d0519d40352fda49bfe0a6021805c800 100644 (file)
@@ -1,7 +1,7 @@
 /* $Id$
 
 This file is part of libmspgltk
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
+Copyright © 2007, 2011  Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
 
@@ -45,6 +45,10 @@ struct Sides
        unsigned left;
 
        Sides();
+       Sides(unsigned);
+       Sides(unsigned, unsigned);
+       Sides(unsigned, unsigned, unsigned);
+       Sides(unsigned, unsigned, unsigned, unsigned);
 };