]> git.mxchange.org Git - simgear.git/blob - simgear/canvas/layout/LayoutItem.hxx
6654349a7a4a7218726bcfbc177025de794d589b
[simgear.git] / simgear / canvas / layout / LayoutItem.hxx
1 ///@file Basic element for layouting canvas elements
2 //
3 // Copyright (C) 2014  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU Library General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
18
19 #ifndef SG_CANVAS_LAYOUT_ITEM_HXX_
20 #define SG_CANVAS_LAYOUT_ITEM_HXX_
21
22 #include <simgear/canvas/canvas_fwd.hxx>
23 #include <simgear/math/SGMath.hxx>
24 #include <simgear/math/SGRect.hxx>
25 #include <simgear/misc/stdint.hxx>
26 #include <simgear/structure/SGWeakReferenced.hxx>
27 #include <simgear/structure/SGSharedPtr.hxx>
28
29 namespace simgear
30 {
31 namespace canvas
32 {
33   class LayoutItem;
34   typedef SGSharedPtr<LayoutItem> LayoutItemRef;
35   typedef SGWeakPtr<LayoutItem> LayoutItemWeakRef;
36
37   /**
38    * Base class for all layouting elements. Specializations either implement a
39    * layouting algorithm or a widget.
40    */
41   class LayoutItem:
42     public virtual SGVirtualWeakReferenced
43   {
44     public:
45
46       static const SGVec2i MAX_SIZE;
47
48       LayoutItem();
49       virtual ~LayoutItem();
50
51       /**
52        * Get the preferred size of this item.
53        */
54       SGVec2i sizeHint() const;
55
56       /**
57        * Get the minimum amount of the space this item requires.
58        */
59       SGVec2i minimumSize() const;
60
61       /**
62        * Get the maximum amount of space this item can use.
63        */
64       SGVec2i maximumSize() const;
65
66       /**
67        * Mark all cached data as invalid and require it to be recalculated.
68        */
69       virtual void invalidate();
70
71       /**
72        * Mark all cached data of parent item as invalid (if it is known)
73        */
74       void invalidateParent();
75
76       /**
77        * Set position and size of this element. For layouts this triggers a
78        * recalculation of the layout.
79        */
80       virtual void setGeometry(const SGRecti& geom);
81
82       /**
83        * Get position and size of this element.
84        */
85       virtual SGRecti geometry() const;
86
87       /**
88        * Set the canvas this item is attached to.
89        */
90       virtual void setCanvas(const CanvasWeakPtr& canvas);
91
92       /**
93        * Get the canvas this item is attached to.
94        */
95       CanvasPtr getCanvas() const;
96
97       /**
98        * Set the parent layout item (usually this is a layout).
99        */
100       void setParent(const LayoutItemWeakRef& parent);
101
102       /**
103        * Get the parent layout.
104        */
105       LayoutItemRef getParent() const;
106
107     protected:
108
109       friend class Canvas;
110
111       enum Flags
112       {
113         SIZE_HINT_DIRTY = 1,
114         MINIMUM_SIZE_DIRTY = SIZE_HINT_DIRTY << 1,
115         MAXIMUM_SIZE_DIRTY = MINIMUM_SIZE_DIRTY << 1,
116         SIZE_INFO_DIRTY = SIZE_HINT_DIRTY
117                         | MINIMUM_SIZE_DIRTY
118                         | MAXIMUM_SIZE_DIRTY,
119         LAST_FLAG = MAXIMUM_SIZE_DIRTY
120       };
121
122       CanvasWeakPtr     _canvas;
123       LayoutItemWeakRef _parent;
124
125       SGRecti           _geometry;
126
127       mutable uint32_t  _flags;
128       mutable SGVec2i   _size_hint,
129                         _min_size,
130                         _max_size;
131
132       virtual SGVec2i sizeHintImpl() const;
133       virtual SGVec2i minimumSizeImpl() const;
134       virtual SGVec2i maximumSizeImpl() const;
135
136   };
137
138 } // namespace canvas
139 } // namespace simgear
140
141 #endif /* SG_CANVAS_LAYOUT_ITEM_HXX_ */