TGUI 1.8
Loading...
Searching...
No Matches
ClickableWidget.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_CLICKABLE_WIDGET_HPP
26#define TGUI_CLICKABLE_WIDGET_HPP
27
28#include <TGUI/Widget.hpp>
29
31
32TGUI_MODULE_EXPORT namespace tgui
33{
39 class TGUI_API ClickableWidget : public Widget
40 {
41 public:
42
43 using Ptr = std::shared_ptr<ClickableWidget>;
44 using ConstPtr = std::shared_ptr<const ClickableWidget>;
45
46 static constexpr const char StaticWidgetType[] = "ClickableWidget";
47
55 ClickableWidget(const char* typeName = StaticWidgetType, bool initRenderer = true);
56
64 TGUI_NODISCARD static ClickableWidget::Ptr create(const Layout2d& size = {"100%", "100%"});
65
73 TGUI_NODISCARD static ClickableWidget::Ptr copy(const ClickableWidget::ConstPtr& widget);
74
79 TGUI_NODISCARD bool isMouseOnWidget(Vector2f pos) const override;
80
84 bool leftMousePressed(Vector2f pos) override;
85
89 void leftMouseReleased(Vector2f pos) override;
90
94 void rightMousePressed(Vector2f pos) override;
95
99 void rightMouseReleased(Vector2f pos) override;
100
104 void rightMouseButtonNoLongerDown() override;
105
112 void draw(BackendRenderTarget& target, RenderStates states) const override;
113
115 protected:
116
126 TGUI_NODISCARD Signal& getSignal(String signalName) override;
127
129 // Makes a copy of the widget
131 TGUI_NODISCARD Widget::Ptr clone() const override;
132
134 public:
135
136 SignalVector2f onMousePress = {"MousePressed"};
137 SignalVector2f onMouseRelease = {"MouseReleased"};
138 SignalVector2f onClick = {"Clicked"};
139
140 SignalVector2f onRightMousePress = {"RightMousePressed"};
141 SignalVector2f onRightMouseRelease = {"RightMouseReleased"};
142 SignalVector2f onRightClick = {"RightClicked"};
143
145 private:
146
147 bool m_rightMouseDown = false;
148
150 };
151
153}
154
156
157#endif // TGUI_CLICKABLE_WIDGET_HPP
158
Base class for render targets.
Definition BackendRenderTarget.hpp:46
static ClickableWidget::Ptr create(const Layout2d &size={"100%", "100%"})
Creates a new clickable widget.
SignalVector2f onMousePress
The mouse went down on the widget. Optional parameter: mouse position relative to widget.
Definition ClickableWidget.hpp:136
SignalVector2f onRightClick
The widget was right clicked. Optional parameter: mouse position relative to widget.
Definition ClickableWidget.hpp:142
bool leftMousePressed(Vector2f pos) override
Called by the parent when the left mouse button goes down on top of the widget.
SignalVector2f onRightMousePress
The right mouse button went down on the widget. Optional parameter: mouse position relative to widget...
Definition ClickableWidget.hpp:140
bool isMouseOnWidget(Vector2f pos) const override
Returns whether the mouse position (which is relative to the parent widget) lies on top of the widget...
Signal & getSignal(String signalName) override
Retrieves a signal based on its name.
SignalVector2f onClick
The widget was clicked. Optional parameter: mouse position relative to widget.
Definition ClickableWidget.hpp:138
std::shared_ptr< const ClickableWidget > ConstPtr
Shared constant widget pointer.
Definition ClickableWidget.hpp:44
SignalVector2f onRightMouseRelease
The right mouse button was released on top of the widget. Optional parameter: mouse position relative...
Definition ClickableWidget.hpp:141
SignalVector2f onMouseRelease
The mouse was released on top of the widget. Optional parameter: mouse position relative to widget.
Definition ClickableWidget.hpp:137
void draw(BackendRenderTarget &target, RenderStates states) const override
Draw the widget to a render target.
Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
std::shared_ptr< ClickableWidget > Ptr
Shared widget pointer.
Definition ClickableWidget.hpp:43
static constexpr const char StaticWidgetType[]
Type name of the widget.
Definition ClickableWidget.hpp:46
static ClickableWidget::Ptr copy(const ClickableWidget::ConstPtr &widget)
Makes a copy of another clickable widget.
Class to store the position or size of a widget.
Definition Layout.hpp:323
Signal to which the user can subscribe to get callbacks from.
Definition Signal.hpp:61
Wrapper class to store strings.
Definition String.hpp:96
std::shared_ptr< Widget > Ptr
Shared widget pointer.
Definition Widget.hpp:86
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38
SignalTyped< Vector2f > SignalVector2f
Signal with one "Vector2f" as optional unbound parameter.
Definition Signal.hpp:429
States used for drawing.
Definition RenderStates.hpp:38