TGUI  0.7.8
ClickableWidget.hpp
1
2//
3// TGUI - Texus's Graphical User Interface
4// Copyright (C) 2012-2017 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_CLICKABLE_WIDGET_HPP
27#define TGUI_CLICKABLE_WIDGET_HPP
28
29
30#include <TGUI/Widget.hpp>
31
33
34namespace tgui
35{
55 class TGUI_API ClickableWidget : public Widget
56 {
57 public:
58
59 typedef std::shared_ptr<ClickableWidget> Ptr;
60 typedef std::shared_ptr<const ClickableWidget> ConstPtr;
61
62
69 ClickableWidget(const Layout2d& size = {100, 100});
70
71
79 ClickableWidget(const Layout& width, const Layout& height);
80
81
90 static ClickableWidget::Ptr create(Layout2d size = {100, 100});
91
92
102
103
105 // Makes a copy of the widget
107 virtual Widget::Ptr clone() const override
108 {
109 return std::make_shared<ClickableWidget>(*this);
110 }
111
112
116 virtual bool mouseOnWidget(float x, float y) const override;
117
121 virtual void leftMousePressed(float x, float y) override;
122
126 virtual void leftMouseReleased(float x, float y) override;
127
128
130 protected:
131
134 // This function draws nothing.
136 virtual void draw(sf::RenderTarget& target, sf::RenderStates states) const override;
137 };
138
140}
141
143
144#endif // TGUI_CLICKABLE_WIDGET_HPP
Clickable widget.
Definition: ClickableWidget.hpp:56
ClickableWidget(const Layout2d &size={100, 100})
Default constructor.
virtual Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
Definition: ClickableWidget.hpp:107
std::shared_ptr< ClickableWidget > Ptr
Shared widget pointer.
Definition: ClickableWidget.hpp:59
static ClickableWidget::Ptr create(Layout2d size={100, 100})
Creates a new clickable widget.
ClickableWidget(const Layout &width, const Layout &height)
Constructor.
static ClickableWidget::Ptr copy(ClickableWidget::ConstPtr widget)
Makes a copy of another clickable widget.
std::shared_ptr< const ClickableWidget > ConstPtr
Shared constant widget pointer.
Definition: ClickableWidget.hpp:60
Class to store the position or size of a widget.
Definition: Layout.hpp:255
Class to store the left, top, width or height of a widget.
Definition: Layout.hpp:121
The parent class for every widget.
Definition: Widget.hpp:72
std::shared_ptr< Widget > Ptr
Shared widget pointer.
Definition: Widget.hpp:75
Namespace that contains all TGUI functions and classes.
Definition: Animation.hpp:34