X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgeometry.cpp;h=ba47c0593c620d13bc0a403457fb05c947f31af6;hb=9f38197854e699a6093a906ab43f4238f3cd2388;hp=6183928673f2e51b1344335550dfe76cf8d99b05;hpb=c2635c5a3dca6a6cea5562fd387beb0662b18cf0;p=libs%2Fgltk.git diff --git a/source/geometry.cpp b/source/geometry.cpp index 6183928..ba47c05 100644 --- a/source/geometry.cpp +++ b/source/geometry.cpp @@ -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,23 +8,90 @@ bool Geometry::is_inside(int x_, int y_) const return (x_>=x && x_(w) && y_>=y && y_(h)); } +bool Geometry::is_inside_relative(int x_, int y_) const +{ + return (x_>=0 && x_(w) && y_>=0 && y_(h)); +} -Sides::Sides(): - top(0), - right(0), - bottom(0), - 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(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 +{ + if(parent.w>geom.w) + { + geom.w += static_cast((parent.w-geom.w)*w); + geom.x += static_cast((parent.w-geom.w)*x); + } + if(parent.h>geom.h) + { + geom.h += static_cast((parent.h-geom.h)*h); + geom.y += static_cast((parent.h-geom.h)*y); + } +} + +void Alignment::apply(Geometry &geom, const Geometry &parent, const Sides &margin) const +{ + 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 } // namespace Msp