X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgeometry.h;h=cb99cedecb8d6198e89bc869c633eb9a07d55f22;hb=b59fab7e533ef96d72c92b224d4f24718bc6b0a1;hp=fdef8ace97d45557d9450f4fca535c3fc2446e01;hpb=131ac8ff2c06f94d40f4bf98d4a6ec0d113cdffc;p=libs%2Fgltk.git diff --git a/source/geometry.h b/source/geometry.h index fdef8ac..cb99ced 100644 --- a/source/geometry.h +++ b/source/geometry.h @@ -1,7 +1,8 @@ #ifndef MSP_GLTK_GEOMETRY_H_ #define MSP_GLTK_GEOMETRY_H_ -#include +#include +#include "mspgltk_api.h" namespace Msp { namespace GLtk { @@ -9,36 +10,60 @@ namespace GLtk { /** Specifies the position and size of a widget or graphic. */ -struct Geometry +struct MSPGLTK_API Geometry { - int x, y; - unsigned w, h; + int x = 0; + int y = 0; + unsigned w = 1; + unsigned h = 1; - Geometry(): x(0), y(0), w(1), h(1) { } + Geometry() = default; 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 +struct MSPGLTK_API Sides { - class Loader: public DataFile::Loader + class Loader: public DataFile::ObjectLoader { public: Loader(Sides &); - Sides &get_object() { return sides; } private: - Sides &sides; + void horizontal(unsigned); + void vertical(unsigned); }; - unsigned top; - unsigned right; - unsigned bottom; - unsigned left; + unsigned top = 0; + unsigned right = 0; + unsigned bottom = 0; + unsigned left = 0; + + Sides() = default; + 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 MSPGLTK_API Alignment +{ + float x = 0.0f; + float y = 0.0f; + float w = 1.0f; + float h = 1.0f; - Sides(); + void apply(Geometry &, const Geometry &) const; + void apply(Geometry &, const Geometry &, const Sides &) const; }; } // namespace GLtk