TGUI  1.3-dev
Loading...
Searching...
No Matches
Layout.hpp
1
2//
3// TGUI - Texus' Graphical User Interface
4// Copyright (C) 2012-2024 Bruno Van de Velde (vdv_b@tgui.eu)
5//
6// This software is provided 'as-is', without any express or implied warranty.
7// In no event will the authors be held liable for any damages arising from the use of this software.
8//
9// Permission is granted to anyone to use this software for any purpose,
10// including commercial applications, and to alter it and redistribute it freely,
11// subject to the following restrictions:
12//
13// 1. The origin of this software must not be misrepresented;
14// you must not claim that you wrote the original software.
15// If you use this software in a product, an acknowledgment
16// in the product documentation would be appreciated but is not required.
17//
18// 2. Altered source versions must be plainly marked as such,
19// and must not be misrepresented as being the original software.
20//
21// 3. This notice may not be removed or altered from any source distribution.
22//
24
25
26#ifndef TGUI_LAYOUT_HPP
27#define TGUI_LAYOUT_HPP
28
29#include <TGUI/Config.hpp>
30#include <TGUI/Vector2.hpp>
31
32#if !TGUI_EXPERIMENTAL_USE_STD_MODULE
33 #include <type_traits>
34 #include <functional>
35 #include <memory>
36 #include <string>
37#endif
38
40
41TGUI_MODULE_EXPORT namespace tgui
42{
43 class BackendGui;
44 class Widget;
45 class Container;
46
52 enum class AutoLayout
53 {
54 Manual,
55 Top,
56 Left,
57 Right,
58 Bottom,
59 Leftmost,
60 Rightmost,
61 Fill
62 };
63
69 class TGUI_API Layout
70 {
71 public:
72
74 enum class Operation
75 {
76 Value,
77 Plus,
78 Minus,
79 Multiplies,
80 Divides,
81 Minimum,
82 Maximum,
83 BindingPosX, // X position, same as BindingLeft if widget origin isn't changed
84 BindingPosY, // Y position, same as BindingTop if widget origin isn't changed
85 BindingLeft,
86 BindingTop,
87 BindingWidth,
88 BindingHeight,
89 BindingInnerWidth,
90 BindingInnerHeight,
91 BindingString
92 };
93
94
96 public:
97
101 Layout() = default;
102
103
109 template <typename T, typename = typename std::enable_if_t<std::is_arithmetic<T>::value, T>>
110 Layout(T constant) :
111 m_value{static_cast<float>(constant)}
112 {
113 }
114
115
121 Layout(const char* expression) :
122 Layout{String{expression}}
123 {
124 }
125
126
132 Layout(String expression);
133
134
139 explicit Layout(Operation operation, Widget* boundWidget);
140
141
146 explicit Layout(Operation operation, std::unique_ptr<Layout> leftOperand, std::unique_ptr<Layout> rightOperand);
147
148
152 Layout(const Layout& other);
153
157 Layout(Layout&& other) noexcept;
158
162 Layout& operator=(const Layout& other);
163
167 Layout& operator=(Layout&& other) noexcept;
168
173
174
180 void replaceValue(const Layout& value);
181
182
188 TGUI_NODISCARD float getValue() const
189 {
190 return m_value;
191 }
192
193
199 TGUI_NODISCARD bool isConstant() const
200 {
201 return m_operation == Operation::Value;
202 }
203
204
211 TGUI_NODISCARD String toString() const;
212
213
221 void connectWidget(Widget* widget, bool xAxis, std::function<void()> valueChangedCallbackHandler);
222
223
228 void unbindWidget();
229
230
236 void recalculateValue();
237
238
243 TGUI_NODISCARD Layout* getLeftOperand() const;
244
245
250 TGUI_NODISCARD Layout* getRightOperand() const;
251
252
254 private:
255
256
258 // If a widget is bound, inform it that the layout no longer binds it
260 void unbindLayout();
261
262
264 // Resets the parent pointers of the left and right operands if they exist and tell the bound widget that this layout
265 // requires information about changes to its position or size when the operation requires a widget to be bound.
267 void resetPointers();
268
269
271 // Check whether sublayouts contain a string that refers to a widget which should be bound.
273 void parseBindingStringRecursive(Widget* widget, bool xAxis);
274
275
277 // Find the widget corresponding to the given name and bind it if found
279 void parseBindingString(const String& expression, Widget* widget, bool xAxis);
280
281
283 private:
284
285 float m_value = 0;
286 Layout* m_parent = nullptr;
287 Operation m_operation = Operation::Value;
288 std::unique_ptr<Layout> m_leftOperand = nullptr; // The left operand of the operation in case the operation is a math operation
289 std::unique_ptr<Layout> m_rightOperand = nullptr; // The left operand of the operation in case the operation is a math operation
290 Widget* m_boundWidget = nullptr; // The widget on which this layout depends in case the operation is a binding
291 String m_boundString; // String referring to a widget on which this layout depends in case the layout was created from a string and contains a binding operation
292 std::function<void()> m_connectedWidgetCallback = nullptr; // Function to call when the value of the layout changes in case the layout and sublayouts are not all constants
293 int m_callingCallbackCount = 0; // Used to detect that connectWidget is called in an infinity loop if certain layouts depend on each other
294
296 };
297
298
304 class TGUI_API Layout2d
305 {
306 public:
307
313 Layout2d(Vector2f constant = {0, 0}) :
314 x{constant.x},
315 y{constant.y}
316 {
317 }
318
319
326 Layout2d(Layout layoutX, Layout layoutY) :
327 x{std::move(layoutX)},
328 y{std::move(layoutY)}
329 {
330 }
331
332
340 Layout2d(const char* expression) :
341 x{expression},
342 y{expression}
343 {
344 }
345
346
354 Layout2d(const String& expression) :
355 x{expression},
356 y{expression}
357 {
358 }
359
360
366 TGUI_NODISCARD Vector2f getValue() const
367 {
368 return {x.getValue(), y.getValue()};
369 }
370
371
378 TGUI_NODISCARD String toString() const
379 {
380 return U"(" + x.toString() + U", " + y.toString() + U")";
381 }
382
384 public:
385
386 Layout x;
387 Layout y;
388 };
389
390
394 TGUI_NODISCARD TGUI_API Layout operator-(Layout right);
395
399 TGUI_NODISCARD TGUI_API Layout operator+(Layout left, Layout right);
400
404 TGUI_NODISCARD TGUI_API Layout operator-(Layout left, Layout right);
405
409 TGUI_NODISCARD TGUI_API Layout operator*(Layout left, Layout right);
410
414 TGUI_NODISCARD TGUI_API Layout operator/(Layout left, Layout right);
415
419 TGUI_NODISCARD TGUI_API Layout2d operator-(Layout2d right);
420
424 TGUI_NODISCARD TGUI_API Layout2d operator+(Layout2d left, Layout2d right);
425
429 TGUI_NODISCARD TGUI_API Layout2d operator-(Layout2d left, Layout2d right);
430
434 TGUI_NODISCARD TGUI_API Layout2d operator*(Layout2d left, const Layout& right);
435
439 TGUI_NODISCARD TGUI_API Layout2d operator*(const Layout& left, Layout2d right);
440
444 TGUI_NODISCARD TGUI_API Layout2d operator/(Layout2d left, const Layout& right);
445
446
448
449 inline namespace bind_functions
450 {
452 TGUI_NODISCARD TGUI_API Layout bindPosX(const std::shared_ptr<Widget>& widget);
453
455 TGUI_NODISCARD TGUI_API Layout bindPosY(const std::shared_ptr<Widget>& widget);
456
458 TGUI_NODISCARD TGUI_API Layout bindLeft(const std::shared_ptr<Widget>& widget);
459
461 TGUI_NODISCARD TGUI_API Layout bindTop(const std::shared_ptr<Widget>& widget);
462
464 TGUI_NODISCARD TGUI_API Layout bindWidth(const std::shared_ptr<Widget>& widget);
465
467 TGUI_NODISCARD TGUI_API Layout bindHeight(const std::shared_ptr<Widget>& widget);
468
470 TGUI_NODISCARD TGUI_API Layout bindInnerWidth(const std::shared_ptr<Container>& container);
471
473 TGUI_NODISCARD TGUI_API Layout bindInnerHeight(const std::shared_ptr<Container>& container);
474
476 TGUI_NODISCARD TGUI_API Layout bindRight(const std::shared_ptr<Widget>& widget);
477
479 TGUI_NODISCARD TGUI_API Layout bindBottom(const std::shared_ptr<Widget>& widget);
480
482 TGUI_NODISCARD TGUI_API Layout2d bindPosition(const std::shared_ptr<Widget>& widget);
483
485 TGUI_NODISCARD TGUI_API Layout2d bindSize(const std::shared_ptr<Widget>& widget);
486
488 TGUI_NODISCARD TGUI_API Layout2d bindInnerSize(const std::shared_ptr<Container>& container);
489
491 TGUI_NODISCARD TGUI_API Layout bindWidth(const BackendGui& gui);
492
494 TGUI_NODISCARD TGUI_API Layout bindHeight(const BackendGui& gui);
495
497 TGUI_NODISCARD TGUI_API Layout2d bindSize(const BackendGui& gui);
498
500 TGUI_NODISCARD TGUI_API Layout bindMin(const Layout& value1, const Layout& value2);
501
503 TGUI_NODISCARD TGUI_API Layout bindMax(const Layout& value1, const Layout& value2);
504 }
505
507}
508
510
511#endif // TGUI_LAYOUT_HPP
Base class for the Gui.
Definition BackendGui.hpp:48
Class to store the position or size of a widget.
Definition Layout.hpp:305
Layout2d(Vector2f constant={0, 0})
Default constructor to implicitly construct from a tgui::Vector2f.
Definition Layout.hpp:313
Layout2d(Layout layoutX, Layout layoutY)
Constructor to create the Layout2d from two Layout classes.
Definition Layout.hpp:326
Layout2d(const char *expression)
Constructs the Layout2d based on a string which will be parsed to determine the value of the layouts.
Definition Layout.hpp:340
TGUI_NODISCARD Vector2f getValue() const
Returns the cached value of the layout.
Definition Layout.hpp:366
Layout2d(const String &expression)
Constructs the Layout2d based on a string which will be parsed to determine the value of the layouts.
Definition Layout.hpp:354
Class to store the left, top, width or height of a widget.
Definition Layout.hpp:70
Layout(Layout &&other) noexcept
Move constructor.
Layout(String expression)
Constructs the layout based on a string which will be parsed to determine the value of the layout.
Operation
The operation which the layout has to perform to find its value.
Definition Layout.hpp:75
TGUI_NODISCARD float getValue() const
Return the cached value of the layout.
Definition Layout.hpp:188
Layout()=default
Default constructor.
Layout & operator=(Layout &&other) noexcept
Move assignment operator.
Layout(T constant)
Constructor to implicitly construct from numeric constant.
Definition Layout.hpp:110
Layout(const Layout &other)
Copy constructor.
~Layout()
Destructor.
void replaceValue(const Layout &value)
Replaces the value of the layout without overwriting its parent.
Layout(const char *expression)
Constructs the layout based on a string which will be parsed to determine the value of the layout.
Definition Layout.hpp:121
TGUI_NODISCARD bool isConstant() const
Return whether the layout stores a constant value.
Definition Layout.hpp:199
Layout & operator=(const Layout &other)
Copy assignment operator.
Wrapper class to store strings.
Definition String.hpp:101
The parent class for every widget.
Definition Widget.hpp:84
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:39
TGUI_NODISCARD TGUI_API Layout bindLeft(const std::shared_ptr< Widget > &widget)
Bind to the left position of the widget.
TGUI_NODISCARD TGUI_API Layout bindRight(const std::shared_ptr< Widget > &widget)
Bind to the right position of the widget.
TGUI_NODISCARD TGUI_API Layout bindWidth(const std::shared_ptr< Widget > &widget)
Bind to the width of the widget.
TGUI_NODISCARD TGUI_API Layout bindMax(const Layout &value1, const Layout &value2)
Bind to the maximum value of two layouts.
TGUI_NODISCARD TGUI_API Layout bindHeight(const std::shared_ptr< Widget > &widget)
Bind to the height of the widget.
TGUI_NODISCARD TGUI_API Layout2d bindSize(const std::shared_ptr< Widget > &widget)
Bind to the size of the widget.
TGUI_NODISCARD TGUI_API Layout bindTop(const std::shared_ptr< Widget > &widget)
Bind to the top position of the widget.
TGUI_NODISCARD TGUI_API Layout bindInnerWidth(const std::shared_ptr< Container > &container)
Bind to the inner width of the container widget.
TGUI_NODISCARD TGUI_API Layout2d bindPosition(const std::shared_ptr< Widget > &widget)
Bind to the position of the widget.
AutoLayout
Alignments for how to position a widget in its parent.
Definition Layout.hpp:53
@ Bottom
Places the widget on on the bottom and sets its width to the area between Leftmost and Rightmost alig...
@ Leftmost
Places the widget on the left side and sets height to 100%. Width needs to be manually set....
@ Rightmost
Places the widget on the right side and sets height to 100%. Width needs to be manually set....
@ Right
Places the widget on the right side and sets its height to the area between Top and Bottom aligned co...
@ Left
Places the widget on the left side and sets its height to the area between Top and Bottom aligned com...
@ Top
Places the widget on on the top and sets its width to the area between Leftmost and Rightmost aligned...
@ Fill
Sets the position and size to fill the entire area that isn't already taken by components with the ot...
@ Manual
Position and size need to be manually set. This is the default.
TGUI_NODISCARD TGUI_API Layout bindPosX(const std::shared_ptr< Widget > &widget)
Bind to the x position of the widget (same as bindLeft unless widget origin is changed)
TGUI_NODISCARD TGUI_API Layout bindBottom(const std::shared_ptr< Widget > &widget)
Bind to the bottom of the widget.
TGUI_NODISCARD TGUI_API Layout bindMin(const Layout &value1, const Layout &value2)
Bind to the minimum value of two layouts.
TGUI_NODISCARD TGUI_API Layout bindPosY(const std::shared_ptr< Widget > &widget)
Bind to the y position of the widget (same as bindTop unless widget origin is changed)
TGUI_NODISCARD TGUI_API Layout2d bindInnerSize(const std::shared_ptr< Container > &container)
Bind to the inner size of the container widget.
TGUI_NODISCARD TGUI_API Layout bindInnerHeight(const std::shared_ptr< Container > &container)
Bind to the inner height of the container widget.