X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgeometry.h;h=9945fabcd8645a63e093ce8de5b6939e87c2fd80;hb=2b70e8801c43875ed3f4135bdd0141265cff0312;hp=7e59bd4936f7dc4f82797f9a97170532527b0a37;hpb=c1f038acb91eb3bfaa34dfd4729d19ed3f871a42;p=libs%2Fgltk.git diff --git a/source/geometry.h b/source/geometry.h index 7e59bd4..9945fab 100644 --- a/source/geometry.h +++ b/source/geometry.h @@ -1,6 +1,8 @@ #ifndef MSP_GLTK_GEOMETRY_H_ #define MSP_GLTK_GEOMETRY_H_ +#include + namespace Msp { namespace GLtk { @@ -14,6 +16,46 @@ 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; +}; + + +/** +Specifies margins on the sides of an element. +*/ +struct Sides +{ + class Loader: public DataFile::ObjectLoader + { + public: + Loader(Sides &); + }; + + unsigned top; + unsigned right; + unsigned bottom; + unsigned left; + + Sides(); + Sides(unsigned); + Sides(unsigned, unsigned); + Sides(unsigned, unsigned, unsigned); + Sides(unsigned, unsigned, unsigned, unsigned); +}; + + +/** +Performs alignment of nested geometries, such as widgets and their parts. +*/ +struct Alignment +{ + float x, y; + float w, h; + + Alignment(): x(0), y(0), w(1), h(1) { } + void apply(Geometry &, const Geometry &) const; + void apply(Geometry &, const Geometry &, const Sides &) const; }; } // namespace GLtk