X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgeometry.h;h=9945fabcd8645a63e093ce8de5b6939e87c2fd80;hb=3d84860cb25cf05ed36ee6cbd07d9e58cee52422;hp=6fa8e7f1287ffd1f39942979f1f046889bc97ecc;hpb=8f6f543758fb1b2b17ae2db519198d420eb9982d;p=libs%2Fgltk.git diff --git a/source/geometry.h b/source/geometry.h index 6fa8e7f..9945fab 100644 --- a/source/geometry.h +++ b/source/geometry.h @@ -1,14 +1,7 @@ -/* $Id$ - -This file is part of libmspgltk -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MSP_GLTK_GEOMETRY_H_ #define MSP_GLTK_GEOMETRY_H_ -#include +#include namespace Msp { namespace GLtk { @@ -24,6 +17,7 @@ struct Geometry Geometry(): x(0), y(0), w(1), h(1) { } Geometry(int x_, int y_, unsigned w_, unsigned h_): x(x_), y(y_), w(w_), h(h_) { } bool is_inside(int, int) const; + bool is_inside_relative(int, int) const; }; @@ -32,13 +26,10 @@ Specifies margins on the sides of an element. */ struct Sides { - class Loader: public DataFile::Loader + class Loader: public DataFile::ObjectLoader { public: Loader(Sides &); - Sides &get_object() { return sides; } - private: - Sides &sides; }; unsigned top; @@ -47,6 +38,10 @@ struct Sides unsigned left; Sides(); + Sides(unsigned); + Sides(unsigned, unsigned); + Sides(unsigned, unsigned, unsigned); + Sides(unsigned, unsigned, unsigned, unsigned); };