TGUI 1.11
Loading...
Searching...
No Matches
Layout.hpp
1
2//
3// TGUI - Texus' Graphical User Interface
4// Copyright (C) 2012-2025 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#ifndef TGUI_LAYOUT_HPP
26#define TGUI_LAYOUT_HPP
27
28#include <TGUI/Config.hpp>
29#include <TGUI/Vector2.hpp>
30#include <TGUI/AbsoluteOrRelativeValue.hpp>
31
32#include <type_traits>
33#include <functional>
34#include <memory>
35#include <string>
36
38
39namespace tgui
40{
41 class BackendGui;
42 class Widget;
43 class Container;
44
49 enum class Orientation
50 {
53 };
54
65
71 {
72 Top ,
75 };
76
93
99 class TGUI_API Layout
100 {
101 public:
102
104 enum class Operation
105 {
106 Value,
107 Plus,
108 Minus,
109 Multiplies,
110 Divides,
111 Minimum,
112 Maximum,
113 BindingPosX, // X position, same as BindingLeft if widget origin isn't changed
114 BindingPosY, // Y position, same as BindingTop if widget origin isn't changed
115 BindingLeft,
116 BindingTop,
117 BindingWidth,
118 BindingHeight,
119 BindingInnerWidth,
120 BindingInnerHeight,
121 BindingString
122 };
123
125 public:
126
130 Layout() = default;
131
137 template <typename T, typename = typename std::enable_if_t<std::is_arithmetic<T>::value, T>>
138 Layout(T constant) :
139 m_value{static_cast<float>(constant)}
140 {
141 }
142
151
157 Layout(const char* expression) :
158 Layout{String{expression}}
159 {
160 }
161
167 Layout(String expression);
168
173 explicit Layout(Operation operation, Widget* boundWidget);
174
179 explicit Layout(Operation operation, std::unique_ptr<Layout> leftOperand, std::unique_ptr<Layout> rightOperand);
180
184 Layout(const Layout& other);
185
189 Layout(Layout&& other) noexcept;
190
194 Layout& operator=(const Layout& other);
195
199 Layout& operator=(Layout&& other) noexcept;
200
205
211 void replaceValue(const Layout& value);
212
218 TGUI_NODISCARD float getValue() const
219 {
220 return m_value;
221 }
222
228 TGUI_NODISCARD bool isConstant() const
229 {
230 return m_operation == Operation::Value;
231 }
232
239 TGUI_NODISCARD String toString() const;
240
248 void connectWidget(Widget* widget, bool xAxis, std::function<void()> valueChangedCallbackHandler);
249
254 void unbindWidget();
255
261 void recalculateValue();
262
267 TGUI_NODISCARD Layout* getLeftOperand() const;
268
273 TGUI_NODISCARD Layout* getRightOperand() const;
274
276 private:
277
279 // If a widget is bound, inform it that the layout no longer binds it
281 void unbindLayout();
282
284 // Resets the parent pointers of the left and right operands if they exist and tell the bound widget that this layout
285 // requires information about changes to its position or size when the operation requires a widget to be bound.
287 void resetPointers();
288
290 // Check whether sublayouts contain a string that refers to a widget which should be bound.
292 void parseBindingStringRecursive(Widget* widget, bool xAxis);
293
295 // Find the widget corresponding to the given name and bind it if found
297 void parseBindingString(const String& expression, Widget* widget, bool xAxis);
298
300 private:
301
302 float m_value = 0;
303 Layout* m_parent = nullptr;
304 Operation m_operation = Operation::Value;
305 std::unique_ptr<Layout> m_leftOperand = nullptr; // The left operand of the operation in case the operation is a math operation
306 std::unique_ptr<Layout> m_rightOperand = nullptr; // The left operand of the operation in case the operation is a math operation
307 Widget* m_boundWidget = nullptr; // The widget on which this layout depends in case the operation is a binding
308 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
309 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
310 int m_callingCallbackCount = 0; // Used to detect that connectWidget is called in an infinity loop if certain layouts depend on each other
311
313 };
314
320 class TGUI_API Layout2d
321 {
322 public:
323
329 Layout2d(Vector2f constant = {0, 0}) :
330 x{constant.x},
331 y{constant.y}
332 {
333 }
334
341 Layout2d(Layout layoutX, Layout layoutY) :
342 x{std::move(layoutX)},
343 y{std::move(layoutY)}
344 {
345 }
346
354 Layout2d(const char* expression) :
355 x{expression},
356 y{expression}
357 {
358 }
359
367 Layout2d(const String& expression) :
368 x{expression},
369 y{expression}
370 {
371 }
372
378 TGUI_NODISCARD Vector2f getValue() const
379 {
380 return {x.getValue(), y.getValue()};
381 }
382
389 TGUI_NODISCARD String toString() const
390 {
391 return U"(" + x.toString() + U", " + y.toString() + U")";
392 }
393
395 public:
396
397 Layout x;
398 Layout y;
399 };
400
404 TGUI_NODISCARD TGUI_API Layout operator-(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 Layout operator*(Layout left, Layout right);
420
424 TGUI_NODISCARD TGUI_API Layout operator/(Layout left, Layout right);
425
429 TGUI_NODISCARD TGUI_API Layout2d operator-(Layout2d right);
430
434 TGUI_NODISCARD TGUI_API Layout2d operator+(Layout2d left, Layout2d right);
435
439 TGUI_NODISCARD TGUI_API Layout2d operator-(Layout2d left, Layout2d right);
440
444 TGUI_NODISCARD TGUI_API Layout2d operator*(Layout2d left, const Layout& right);
445
449 TGUI_NODISCARD TGUI_API Layout2d operator*(const Layout& left, Layout2d right);
450
454 TGUI_NODISCARD TGUI_API Layout2d operator/(Layout2d left, const Layout& right);
455
457
458 inline namespace bind_functions
459 {
461 TGUI_NODISCARD TGUI_API Layout bindPosX(const std::shared_ptr<Widget>& widget);
462
464 TGUI_NODISCARD TGUI_API Layout bindPosY(const std::shared_ptr<Widget>& widget);
465
467 TGUI_NODISCARD TGUI_API Layout bindLeft(const std::shared_ptr<Widget>& widget);
468
470 TGUI_NODISCARD TGUI_API Layout bindTop(const std::shared_ptr<Widget>& widget);
471
473 TGUI_NODISCARD TGUI_API Layout bindWidth(const std::shared_ptr<Widget>& widget);
474
476 TGUI_NODISCARD TGUI_API Layout bindHeight(const std::shared_ptr<Widget>& widget);
477
479 TGUI_NODISCARD TGUI_API Layout bindInnerWidth(const std::shared_ptr<Container>& container);
480
482 TGUI_NODISCARD TGUI_API Layout bindInnerHeight(const std::shared_ptr<Container>& container);
483
485 TGUI_NODISCARD TGUI_API Layout bindRight(const std::shared_ptr<Widget>& widget);
486
488 TGUI_NODISCARD TGUI_API Layout bindBottom(const std::shared_ptr<Widget>& widget);
489
491 TGUI_NODISCARD TGUI_API Layout2d bindPosition(const std::shared_ptr<Widget>& widget);
492
494 TGUI_NODISCARD TGUI_API Layout2d bindSize(const std::shared_ptr<Widget>& widget);
495
497 TGUI_NODISCARD TGUI_API Layout2d bindInnerSize(const std::shared_ptr<Container>& container);
498
500 TGUI_NODISCARD TGUI_API Layout bindWidth(const BackendGui& gui);
501
503 TGUI_NODISCARD TGUI_API Layout bindHeight(const BackendGui& gui);
504
506 TGUI_NODISCARD TGUI_API Layout2d bindSize(const BackendGui& gui);
507
509 TGUI_NODISCARD TGUI_API Layout bindMin(const Layout& value1, const Layout& value2);
510
512 TGUI_NODISCARD TGUI_API Layout bindMax(const Layout& value1, const Layout& value2);
513 }
514
516}
517
519
520#endif // TGUI_LAYOUT_HPP
Base class for the Gui.
Definition BackendGui.hpp:45
Container widget.
Definition Container.hpp:46
Class to store the position or size of a widget.
Definition Layout.hpp:321
Layout2d(Vector2f constant={0, 0})
Default constructor to implicitly construct from a tgui::Vector2f.
Definition Layout.hpp:329
Layout2d(Layout layoutX, Layout layoutY)
Constructor to create the Layout2d from two Layout classes.
Definition Layout.hpp:341
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:354
Vector2f getValue() const
Returns the cached value of the layout.
Definition Layout.hpp:378
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:367
Class to store the left, top, width or height of a widget.
Definition Layout.hpp:100
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:105
Layout()=default
Default constructor.
float getValue() const
Return the cached value of the layout.
Definition Layout.hpp:218
Layout & operator=(Layout &&other) noexcept
Move assignment operator.
Layout(T constant)
Constructor to implicitly construct from numeric constant.
Definition Layout.hpp:138
Layout(const Layout &other)
Copy constructor.
~Layout()
Destructor.
void replaceValue(const Layout &value)
Replaces the value of the layout without overwriting its parent.
Layout(RelativeValue ratio)
Constructs the layout from a ratio relative to the parent size.
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:157
bool isConstant() const
Return whether the layout stores a constant value.
Definition Layout.hpp:228
Layout & operator=(const Layout &other)
Copy assignment operator.
Wrapper class to store strings.
Definition String.hpp:94
The parent class for every widget.
Definition Widget.hpp:84
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:36
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_API Layout2d bindInnerSize(const std::shared_ptr< Container > &container)
Bind to the inner size of the container widget.
TGUI_API Layout bindMax(const Layout &value1, const Layout &value2)
Bind to the maximum value of two layouts.
TGUI_API Layout bindInnerHeight(const std::shared_ptr< Container > &container)
Bind to the inner height of the container widget.
HorizontalAlignment
The horizontal alignment.
Definition Layout.hpp:60
@ Center
Center the object horizontally.
Definition Layout.hpp:62
@ Right
Align to the right side.
Definition Layout.hpp:63
@ Left
Align to the left side.
Definition Layout.hpp:61
TGUI_API Layout2d bindPosition(const std::shared_ptr< Widget > &widget)
Bind to the position of the widget.
TGUI_API Layout bindInnerWidth(const std::shared_ptr< Container > &container)
Bind to the inner width of the container widget.
TGUI_API Layout bindLeft(const std::shared_ptr< Widget > &widget)
Bind to the left position of the widget.
Orientation
Orientation of the object.
Definition Layout.hpp:50
@ Vertical
Vertical orientation.
Definition Layout.hpp:51
@ Horizontal
Horizontal orientation.
Definition Layout.hpp:52
AutoLayout
Alignments for how to position a widget in its parent.
Definition Layout.hpp:83
@ Leftmost
Places the widget on the left side and sets height to 100%. Width needs to be manually set....
Definition Layout.hpp:89
@ Rightmost
Places the widget on the right side and sets height to 100%. Width needs to be manually set....
Definition Layout.hpp:90
@ Fill
Sets the position and size to fill the entire area that isn't already taken by components with the ot...
Definition Layout.hpp:91
@ Manual
Position and size need to be manually set. This is the default.
Definition Layout.hpp:84
TGUI_API Layout bindWidth(const std::shared_ptr< Widget > &widget)
Bind to the width of the widget.
TGUI_API Layout bindMin(const Layout &value1, const Layout &value2)
Bind to the minimum value of two layouts.
TGUI_API Layout bindHeight(const std::shared_ptr< Widget > &widget)
Bind to the height of the widget.
TGUI_API Layout bindBottom(const std::shared_ptr< Widget > &widget)
Bind to the bottom of the widget.
VerticalAlignment
The vertical alignment.
Definition Layout.hpp:71
@ Bottom
Align to the bottom.
Definition Layout.hpp:74
@ Top
Align to the top.
Definition Layout.hpp:72
TGUI_API Layout bindRight(const std::shared_ptr< Widget > &widget)
Bind to the right position of the widget.
TGUI_API Layout bindTop(const std::shared_ptr< Widget > &widget)
Bind to the top position of the widget.
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_API Layout2d bindSize(const std::shared_ptr< Widget > &widget)
Bind to the size of the widget.
Helper class to create an AbsoluteOrRelativeValue object containing a relative value without using a ...
Definition AbsoluteOrRelativeValue.hpp:164