TGUI 1.x-dev
Loading...
Searching...
No Matches
BackendGui.hpp
1
2//
3// TGUI - Texus' Graphical User Interface
4// Copyright (C) 2012-2026 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_BACKEND_GUI_HPP
26#define TGUI_BACKEND_GUI_HPP
27
28#include <TGUI/Container.hpp>
29#include <TGUI/Cursor.hpp>
30#include <TGUI/Event.hpp>
31#include <TGUI/RelFloatRect.hpp>
32#include <TGUI/TwoFingerScrollDetect.hpp>
33
34#include <chrono>
35#include <stack>
36
38
39namespace tgui
40{
44 class TGUI_API BackendGui
45 {
46 public:
51
53 // Deleted copy constructor
55 BackendGui(const BackendGui& copy) = delete;
56
58 // Deleted assignment operator overload
60 BackendGui& operator=(const BackendGui& right) = delete;
61
63 // Virtual destructor
65 virtual ~BackendGui();
66
77 void setAbsoluteViewport(const FloatRect& viewport);
78
91 void setRelativeViewport(const FloatRect& viewport);
92
99 [[nodiscard]] RelFloatRect getViewport() const;
100
114 void setAbsoluteView(const FloatRect& view);
115
128 void setRelativeView(const FloatRect& view);
129
136 [[nodiscard]] RelFloatRect getView() const;
137
154 bool handleEvent(Event event);
155
159 void setTabKeyUsageEnabled(bool enabled);
160
164 [[nodiscard]] bool isTabKeyUsageEnabled() const;
165
169 virtual void draw(); // TGUI_NEXT: Remove from base class, as some backends require parameters
170
181 [[nodiscard]] RootContainer::Ptr getContainer() const;
182
188 [[nodiscard]] std::shared_ptr<BackendRenderTarget> getBackendRenderTarget() const;
189
195 void setFont(const Font& font);
196
202 [[nodiscard]] Font getFont() const;
203
209 [[nodiscard]] const std::vector<Widget::Ptr>& getWidgets() const;
210
222 void add(const Widget::Ptr& widgetPtr, const String& widgetName = "");
223
236 [[nodiscard]] Widget::Ptr get(const String& widgetName) const;
237
251 template <class WidgetType>
252 [[nodiscard]] typename WidgetType::Ptr get(const String& widgetName) const
253 {
254 return m_container->get<WidgetType>(widgetName);
255 }
256
262 bool remove(const Widget::Ptr& widget);
263
268
277 [[nodiscard]] Widget::Ptr getFocusedChild() const;
278
287 [[nodiscard]] Widget::Ptr getFocusedLeaf() const;
288
289#ifndef TGUI_REMOVE_DEPRECATED_CODE
299 TGUI_DEPRECATED("Use getWidgetAtPos(pos, true) instead")
300 [[nodiscard]] Widget::Ptr getWidgetAtPosition(Vector2f pos) const;
301#endif
302
317 [[nodiscard]] Widget::Ptr getWidgetAtPos(Vector2f pos, bool recursive) const;
318
319#ifndef TGUI_REMOVE_DEPRECATED_CODE
329 TGUI_DEPRECATED("Use getWidgetBelowMouseCursor(mousePos, true) instead")
330 [[nodiscard]] Widget::Ptr getWidgetBelowMouseCursor(Vector2i mousePos) const;
331#endif
332
347 [[nodiscard]] Widget::Ptr getWidgetBelowMouseCursor(Vector2i mousePos, bool recursive) const;
348
359 [[nodiscard]] Vector2i getLastMousePosition() const;
360
369 bool focusNextWidget(bool recursive = true);
370
379 bool focusPreviousWidget(bool recursive = true);
380
385
391 void moveWidgetToFront(const Widget::Ptr& widget);
392
398 void moveWidgetToBack(const Widget::Ptr& widget);
399
410 std::size_t moveWidgetForward(const Widget::Ptr& widget);
411
422 std::size_t moveWidgetBackward(const Widget::Ptr& widget);
423
434 bool setWidgetIndex(const Widget::Ptr& widget, std::size_t index);
435
441 [[nodiscard]] int getWidgetIndex(const Widget::Ptr& widget) const;
442
448 void setOpacity(float opacity);
449
455 [[nodiscard]] float getOpacity() const;
456
465 void setTextSize(unsigned int size);
466
472 [[nodiscard]] unsigned int getTextSize() const;
473
484 void loadWidgetsFromFile(const String& filename, bool replaceExisting = true);
485
494 void loadWidgetsFromFile(const String& filename, const FormLoadOptions& options);
495
503 void saveWidgetsToFile(const String& filename) const;
504
513 void loadWidgetsFromStream(std::stringstream& stream, bool replaceExisting = true);
514
523 void loadWidgetsFromStream(std::stringstream&& stream, bool replaceExisting = true);
524
531 void loadWidgetsFromStream(std::stringstream& stream, const FormLoadOptions& options);
532
539 void loadWidgetsFromStream(std::stringstream&& stream, const FormLoadOptions& options);
540
546 void saveWidgetsToStream(std::stringstream& stream) const;
547
560
568
580
586 void setDrawingUpdatesTime(bool drawUpdatesTime);
587
596
604 bool updateTime(Duration elapsedTime);
605
611 [[nodiscard]] Vector2f mapPixelToCoords(Vector2i pixel) const;
612
618 [[nodiscard]] Vector2f mapCoordsToPixel(Vector2f coord) const;
619
629 virtual void mainLoop(Color clearColor = {240, 240, 240}) = 0;
630
637 virtual void startTextInput(FloatRect inputRect);
638
643 virtual void stopTextInput();
644
652 virtual void updateTextCursorPosition(FloatRect inputRect, Vector2f caretPos);
653
661 [[nodiscard]] virtual bool isKeyboardModifierPressed(Event::KeyModifier modifierKey) const; // TGUI_NEXT: Pure virtual
662
677
687 [[nodiscard]] bool isKeyboardNavigationEnabled() const;
688
690
691 protected:
693 // Handles the backend-independent part of the two finger scrolling.
694 // Returns whether the touch event should be absorbed by the gui.
696 bool handleTwoFingerScroll(bool wasAlreadyScrolling);
697
699 // Updates the view and changes the size of the root container when needed.
700 // Derived classes should update m_framebufferSize in this function and then call this function from the base class.
702 virtual void updateContainerSize();
703
705 // Used when the NumLock is off to translate keypad key events to key events for text cursor navigation.
706 // The key parameter should be a value from Numpad0 to Numpad9 and the output is the key code that corresponds to the
707 // wanted functionality (e.g. for Numpad0 we return the Insert key). Unknown is returned for Numpad5.
709 static Event::KeyboardKey translateKeypadKey(Event::KeyboardKey key);
710
712
713 public:
714 SignalFloatRect onViewChange = {"ViewChanged"};
715 Signal onWindowFocus = {"WindowFocused"};
716 Signal onWindowUnfocus = {"WindowUnfocused"};
717
719
720 protected:
721 std::chrono::steady_clock::time_point m_lastUpdateTime;
722 bool m_windowFocused = true;
723
724 RootContainer::Ptr m_container = std::make_shared<RootContainer>();
725
726 Widget::Ptr m_visibleToolTip = nullptr;
727 Duration m_tooltipTime;
728 bool m_tooltipPossible = false;
729 Vector2f m_toolTipRelativePos;
730 Vector2i m_lastMousePos;
731 std::uintptr_t m_trackedFingerId = 0;
732 TwoFingerScrollDetect m_twoFingerScroll;
733
734 Vector2i m_framebufferSize;
735 RelFloatRect m_viewport{RelativeValue{0}, RelativeValue{0}, RelativeValue{1}, RelativeValue{1}};
736 RelFloatRect m_view{RelativeValue{0}, RelativeValue{0}, RelativeValue{1}, RelativeValue{1}};
737 FloatRect m_lastView;
738
739 bool m_drawUpdatesTime = true;
740 bool m_tabKeyUsageEnabled = true;
741 bool m_keyboardNavigationEnabled = false; // TGUI_NEXT: Enable by default?
742
743 Cursor::Type m_requestedMouseCursor = Cursor::Type::Arrow;
744 std::stack<Cursor::Type> m_overrideMouseCursors;
745
746 std::shared_ptr<BackendRenderTarget> m_backendRenderTarget = nullptr;
747 };
748
750} // namespace tgui
751
753
754#endif // TGUI_BACKEND_GUI_HPP
void add(const Widget::Ptr &widgetPtr, const String &widgetName="")
Adds a widget to the container.
virtual void stopTextInput()
This function is called by TGUI when unfocusing a text field (EditBox or TextArea)....
std::size_t moveWidgetForward(const Widget::Ptr &widget)
Places a widget one step forward in the z-order.
int getWidgetIndex(const Widget::Ptr &widget) const
Returns the current index of a widget in this container.
void moveWidgetToBack(const Widget::Ptr &widget)
Places a widget behind all other widgets, to the back of the z-order.
void setFont(const Font &font)
Changes the global font.
void loadWidgetsFromFile(const String &filename, bool replaceExisting=true)
Loads the child widgets from a text file.
bool isKeyboardNavigationEnabled() const
Returns whether using the arrow keys can be used to navigate between widgets.
Widget::Ptr getWidgetAtPos(Vector2f pos, bool recursive) const
Returns the widget that is located at the given position.
Widget::Ptr getWidgetBelowMouseCursor(Vector2i mousePos) const
Returns the leaf child widget below the mouse.
bool updateTime()
Updates the internal clock (for timers, animations and blinking edit cursors).
void setRelativeViewport(const FloatRect &viewport)
Sets the part of the screen to which the gui will render as a ratio relative to the window size.
RelFloatRect getViewport() const
Returns to which part of the screen the gui will render.
void setAbsoluteView(const FloatRect &view)
Sets the part of the gui that will be used to fill the viewport in pixels.
Font getFont() const
Returns the global font for this gui.
virtual void startTextInput(FloatRect inputRect)
This function is called by TGUI when focusing a text field (EditBox or TextArea). It may result in th...
virtual void updateTextCursorPosition(FloatRect inputRect, Vector2f caretPos)
This function is called by TGUI when the position of the caret changes in a text field (EditBox or Te...
virtual void mainLoop(Color clearColor={240, 240, 240})=0
Give the gui control over the main loop.
virtual bool isKeyboardModifierPressed(Event::KeyModifier modifierKey) const
Checks the state for one of the modifier keys.
RootContainer::Ptr getContainer() const
Returns the internal container of the Gui.
void setAbsoluteViewport(const FloatRect &viewport)
Sets the part of the screen to which the gui will render in pixels.
Signal onWindowFocus
The window sent a GainedFocus event.
Definition BackendGui.hpp:715
void loadWidgetsFromStream(std::stringstream &stream, const FormLoadOptions &options)
Loads the child widgets from a string stream with load options.
void saveWidgetsToFile(const String &filename) const
Saves the child widgets to a text file.
void loadWidgetsFromStream(std::stringstream &stream, bool replaceExisting=true)
Loads the child widgets from a string stream.
void saveWidgetsToStream(std::stringstream &stream) const
Saves this the child widgets to a text file.
std::size_t moveWidgetBackward(const Widget::Ptr &widget)
Places a widget one step backward in the z-order.
bool focusPreviousWidget(bool recursive=true)
Focuses the previous widget in the gui.
virtual void draw()
Draws all the widgets that were added to the gui.
void setOpacity(float opacity)
Changes the opacity of all widgets.
void restoreOverrideMouseCursor()
Undoes the effect of the last call to setOverrideCursor.
Widget::Ptr get(const String &widgetName) const
Returns a pointer to an earlier created widget.
Signal onWindowUnfocus
The window sent a LostFocus event.
Definition BackendGui.hpp:716
Widget::Ptr getFocusedChild() const
Returns the child widget that is focused inside this container.
void removeAllWidgets()
Removes all widgets that were added to the container.
Vector2f mapCoordsToPixel(Vector2f coord) const
Converts a position within the view to the corresponding pixel coordinate.
void setRelativeView(const FloatRect &view)
Sets the part of the gui that will be used to fill the viewport.
void loadWidgetsFromFile(const String &filename, const FormLoadOptions &options)
Loads the child widgets from a text file.
void moveWidgetToFront(const Widget::Ptr &widget)
Places a widget before all other widgets, to the front of the z-order.
bool handleEvent(Event event)
Passes the event to the widgets.
bool focusNextWidget(bool recursive=true)
Focuses the next widget in the gui.
void unfocusAllWidgets()
Unfocus all the widgets.
void setDrawingUpdatesTime(bool drawUpdatesTime)
Sets whether drawing the gui will automatically update the internal clock or whether the user does it...
Vector2i getLastMousePosition() const
Returns the mouse position of the last mouse event that was handled by the gui.
void loadWidgetsFromStream(std::stringstream &&stream, const FormLoadOptions &options)
Loads the child widgets from a string stream with load options.
void setTabKeyUsageEnabled(bool enabled)
When the tab key usage is enabled, pressing tab will focus another widget.
unsigned int getTextSize() const
Returns the character size for future child widgets (and for existing widgets where the size wasn't c...
bool setWidgetIndex(const Widget::Ptr &widget, std::size_t index)
Changes the index of a widget in this container.
bool isTabKeyUsageEnabled() const
Returns whether the tab key usage is enabled (if so, pressing tab will focus another widget).
Widget::Ptr getWidgetBelowMouseCursor(Vector2i mousePos, bool recursive) const
Returns the widget below the mouse.
const std::vector< Widget::Ptr > & getWidgets() const
Returns a list of all the widgets.
Vector2f mapPixelToCoords(Vector2i pixel) const
Converts the pixel coordinate to a position within the view.
void setTextSize(unsigned int size)
Changes the character size of all existing and future child widgets.
std::shared_ptr< BackendRenderTarget > getBackendRenderTarget() const
Returns the backend render target that is assigned to the gui.
bool remove(const Widget::Ptr &widget)
Removes a single widget that was added to the container.
void loadWidgetsFromStream(std::stringstream &&stream, bool replaceExisting=true)
Loads the child widgets from a string stream.
SignalFloatRect onViewChange
The view was changed. Optional parameter: new view rectangle.
Definition BackendGui.hpp:714
WidgetType::Ptr get(const String &widgetName) const
Returns a pointer to an earlier created widget.
Definition BackendGui.hpp:252
BackendGui()
Default constructor.
void setKeyboardNavigationEnabled(bool enabled)
Changes whether using the arrow keys can be used to navigate between widgets.
Widget::Ptr getWidgetAtPosition(Vector2f pos) const
Returns the leaf child widget that is located at the given position.
float getOpacity() const
Returns the opacity of all the widgets.
void setOverrideMouseCursor(Cursor::Type type)
Overrides which cursor gets shown.
RelFloatRect getView() const
Returns the part of the gui that will be used to fill the viewport.
void requestMouseCursor(Cursor::Type type)
Function that is used by widgets to change the mouse cursor.
Widget::Ptr getFocusedLeaf() const
Returns the leaf child widget that is focused inside this container.
Wrapper for colors.
Definition Color.hpp:63
Type
List of available cursors.
Definition Cursor.hpp:48
Wrapper for durations.
Definition Duration.hpp:52
Wrapper around the backend-specific font. All copies of the font will share the same internal font re...
Definition Font.hpp:54
std::shared_ptr< RootContainer > Ptr
Shared widget pointer.
Definition Container.hpp:690
Signal to which the user can subscribe to get callbacks from.
Definition Signal.hpp:59
Wrapper class to store strings.
Definition String.hpp:94
Definition TwoFingerScrollDetect.hpp:42
std::shared_ptr< Widget > Ptr
Shared widget pointer.
Definition Widget.hpp:85
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:37
SignalTyped< FloatRect > SignalFloatRect
Signal with one "FloatRect" as optional unbound parameter.
Definition Signal.hpp:415
Definition Event.hpp:36
KeyModifier
Modifiers keys.
Definition Event.hpp:155
KeyboardKey
Keyboard key codes.
Definition Event.hpp:40
Options for loadWidgetsFromFile / loadWidgetsFromStream.
Definition FormLoadOptions.hpp:42
FloatRect that can contain absolute values or values relative to the parent size.
Definition RelFloatRect.hpp:39
Helper class to create an AbsoluteOrRelativeValue object containing a relative value without using a ...
Definition AbsoluteOrRelativeValue.hpp:163