]> git.tdb.fi Git - libs/gltk.git/blob - source/geometry.h
Pass coordinates relative to the receiving widget's geometry
[libs/gltk.git] / source / geometry.h
1 /* $Id$
2
3 This file is part of libmspgltk
4 Copyright © 2007  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GLTK_GEOMETRY_H_
9 #define MSP_GLTK_GEOMETRY_H_
10
11 #include <msp/datafile/loader.h>
12
13 namespace Msp {
14 namespace GLtk {
15
16 /**
17 Specifies the position and size of a widget or graphic.
18 */
19 struct Geometry
20 {
21         int x, y;
22         unsigned w, h;
23
24         Geometry(): x(0), y(0), w(1), h(1) { }
25         Geometry(int x_, int y_, unsigned w_, unsigned h_): x(x_), y(y_), w(w_), h(h_) { }
26         bool is_inside(int, int) const;
27         bool is_inside_relative(int, int) const;
28 };
29
30
31 /**
32 Specifies margins on the sides of an element.
33 */
34 struct Sides
35 {
36         class Loader: public DataFile::Loader
37         {
38         public:
39                 Loader(Sides &);
40                 Sides &get_object() { return sides; }
41         private:
42                 Sides &sides;
43         };
44
45         unsigned top;
46         unsigned right;
47         unsigned bottom;
48         unsigned left;
49
50         Sides();
51 };
52
53
54 /**
55 Performs alignment of nested geometries, such as widgets and their parts.
56 */
57 struct Alignment
58 {
59         float x, y;
60         float w, h;
61
62         Alignment(): x(0), y(0), w(1), h(1) { }
63         void apply(Geometry &, const Geometry &) const;
64         void apply(Geometry &, const Geometry &, const Sides &) const;
65 };
66
67 } // namespace GLtk
68 } // namespace Msp
69
70 #endif