X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgeometry.cpp;h=8202774d62913cf894c147aec7d7e287b3828bdc;hb=1a6d9006d0a85d8b8266266a4fc5e135f07448ae;hp=6183928673f2e51b1344335550dfe76cf8d99b05;hpb=c2635c5a3dca6a6cea5562fd387beb0662b18cf0;p=libs%2Fgltk.git diff --git a/source/geometry.cpp b/source/geometry.cpp index 6183928..8202774 100644 --- a/source/geometry.cpp +++ b/source/geometry.cpp @@ -15,6 +15,11 @@ 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), @@ -33,5 +38,31 @@ Sides::Loader::Loader(Sides &s): add("left", &Sides::left); } + +void Alignment::apply(Geometry &geom, const Geometry &parent) const +{ + if(parent.w>geom.w) + geom.w+=static_cast((parent.w-geom.w)*w); + if(parent.h>geom.h) + geom.h+=static_cast((parent.h-geom.h)*h); + + geom.x+=static_cast((parent.w-geom.w)*x); + geom.y+=static_cast((parent.h-geom.h)*y); +} + +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; + + if(parent.w>geom.w) + geom.w+=static_cast((pw-geom.w)*w); + if(parent.h>geom.h) + geom.h+=static_cast((ph-geom.h)*h); + + geom.x+=static_cast(margin.left+(pw-geom.w)*x); + geom.y+=static_cast(margin.bottom+(ph-geom.h)*y); +} + } // namespace GLtk } // namespace Msp