TGUI  1.5
Loading...
Searching...
No Matches
ProgressBar.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#ifndef TGUI_PROGRESS_BAR_HPP
26#define TGUI_PROGRESS_BAR_HPP
27
28#include <TGUI/Renderers/ProgressBarRenderer.hpp>
29#include <TGUI/Widgets/ClickableWidget.hpp>
30#include <TGUI/Text.hpp>
31
33
34TGUI_MODULE_EXPORT namespace tgui
35{
39 class TGUI_API ProgressBar : public ClickableWidget
40 {
41 public:
42
43 using Ptr = std::shared_ptr<ProgressBar>;
44 using ConstPtr = std::shared_ptr<const ProgressBar>;
45
46 static constexpr const char StaticWidgetType[] = "ProgressBar";
47
53 enum class FillDirection
54 {
55 LeftToRight,
56 RightToLeft,
57 TopToBottom,
58 BottomToTop
59 };
60
68 ProgressBar(const char* typeName = StaticWidgetType, bool initRenderer = true);
69
75 TGUI_NODISCARD static ProgressBar::Ptr create();
76
84 TGUI_NODISCARD static ProgressBar::Ptr copy(const ProgressBar::ConstPtr& progressBar);
85
90 TGUI_NODISCARD ProgressBarRenderer* getSharedRenderer() override;
91 TGUI_NODISCARD const ProgressBarRenderer* getSharedRenderer() const override;
92
98 TGUI_NODISCARD ProgressBarRenderer* getRenderer() override;
99
105 void setSize(const Layout2d& size) override;
106 using Widget::setSize;
107
115 void setMinimum(unsigned int minimum);
116
122 TGUI_NODISCARD unsigned int getMinimum() const;
123
131 void setMaximum(unsigned int maximum);
132
138 TGUI_NODISCARD unsigned int getMaximum() const;
139
147 void setValue(unsigned int value);
148
154 TGUI_NODISCARD unsigned int getValue() const;
155
163 unsigned int incrementValue();
164
172 void setText(const String& text);
173
179 TGUI_NODISCARD const String& getText() const;
180
189
197 TGUI_NODISCARD FillDirection getFillDirection() const;
198
203 TGUI_NODISCARD bool isMouseOnWidget(Vector2f pos) const override;
204
211 void draw(BackendRenderTarget& target, RenderStates states) const override;
212
214 protected:
215
225 TGUI_NODISCARD Signal& getSignal(String signalName) override;
226
232 void rendererChanged(const String& property) override;
233
237 TGUI_NODISCARD std::unique_ptr<DataIO::Node> save(SavingRenderersMap& renderers) const override;
238
242 void load(const std::unique_ptr<DataIO::Node>& node, const LoadingRenderersMap& renderers) override;
243
247 void updateTextSize() override;
248
250 // Returns the size without the borders
252 TGUI_NODISCARD Vector2f getInnerSize() const;
253
255 // When the value changes, or when the minimum/maximum limits change then a smaller of bigger piece of the front image
256 // must be drawn. This function is called to calculate the size of the piece to draw.
258 void recalculateFillSize();
259
261 // Returns the size of the front image.
263 TGUI_NODISCARD Vector2f getFrontImageSize() const;
264
266 // Makes a copy of the widget
268 TGUI_NODISCARD Widget::Ptr clone() const override;
269
271 public:
272
273 SignalUInt onValueChange = {"ValueChanged"};
274 Signal onFull = {"Full"};
275
277 protected:
278
279 unsigned int m_minimum = 0;
280 unsigned int m_maximum = 100;
281 unsigned int m_value = 0;
282
283 Text m_textBack;
284 Text m_textFront;
285
286 FloatRect m_backRect;
287 FloatRect m_frontRect;
288
289 FillDirection m_fillDirection = FillDirection::LeftToRight;
290
291 Sprite m_spriteBackground;
292 Sprite m_spriteFill;
293
294 // Cached renderer properties
295 Borders m_bordersCached;
296 Color m_borderColorCached;
297 Color m_backgroundColorCached;
298 Color m_fillColorCached;
299 };
300
302}
303
305
306#endif // TGUI_PROGRESS_BAR_HPP
Base class for render targets.
Definition BackendRenderTarget.hpp:46
Clickable widget.
Definition ClickableWidget.hpp:38
Wrapper for colors.
Definition Color.hpp:73
Class to store the position or size of a widget.
Definition Layout.hpp:313
Definition Outline.hpp:38
Definition ProgressBarRenderer.hpp:35
Progress bar widget.
Definition ProgressBar.hpp:40
TGUI_NODISCARD ProgressBarRenderer * getSharedRenderer() override
Returns the renderer, which gives access to functions that determine how the widget is displayed.
void setFillDirection(FillDirection direction)
Changes the fill direction of the progress bar.
TGUI_NODISCARD Widget::Ptr clone() const override
Makes a copy of the widget if you don't know its exact type.
void setMaximum(unsigned int maximum)
Sets a maximum value.
TGUI_NODISCARD unsigned int getValue() const
Returns the current value.
void updateTextSize() override
Called when the text size is changed (either by setTextSize or via the renderer)
std::shared_ptr< ProgressBar > Ptr
Shared widget pointer.
Definition ProgressBar.hpp:43
TGUI_NODISCARD Signal & getSignal(String signalName) override
Retrieves a signal based on its name.
static TGUI_NODISCARD ProgressBar::Ptr copy(const ProgressBar::ConstPtr &progressBar)
Makes a copy of another progress bar.
TGUI_NODISCARD std::unique_ptr< DataIO::Node > save(SavingRenderersMap &renderers) const override
Saves the widget as a tree node in order to save it to a file.
TGUI_NODISCARD ProgressBarRenderer * getRenderer() override
Returns the renderer, which gives access to functions that determine how the widget is displayed.
TGUI_NODISCARD unsigned int getMinimum() const
Returns the minimum value.
std::shared_ptr< const ProgressBar > ConstPtr
Shared constant widget pointer.
Definition ProgressBar.hpp:44
void setValue(unsigned int value)
Changes the current value.
unsigned int incrementValue()
Increments the value.
void setMinimum(unsigned int minimum)
Sets a minimum value.
void setText(const String &text)
Changes the caption of the progress bar.
void setSize(const Layout2d &size) override
Changes the size of the progress bar.
FillDirection
The fill direction of the progress bar.
Definition ProgressBar.hpp:54
TGUI_NODISCARD FillDirection getFillDirection() const
Returns the fill direction of the progress bar.
TGUI_NODISCARD bool isMouseOnWidget(Vector2f pos) const override
Returns whether the mouse position (which is relative to the parent widget) lies on top of the widget...
void draw(BackendRenderTarget &target, RenderStates states) const override
Draw the widget to a render target.
static TGUI_NODISCARD ProgressBar::Ptr create()
Creates a new progress bar widget.
void rendererChanged(const String &property) override
Function called when one of the properties of the renderer is changed.
TGUI_NODISCARD const String & getText() const
Returns the caption of the progress bar.
void load(const std::unique_ptr< DataIO::Node > &node, const LoadingRenderersMap &renderers) override
Loads the widget from a tree of nodes.
TGUI_NODISCARD unsigned int getMaximum() const
Returns the maximum value.
Signal to which the user can subscribe to get callbacks from.
Definition Signal.hpp:61
Definition Sprite.hpp:47
Wrapper class to store strings.
Definition String.hpp:96
Backend-independent wrapper around the backend-specific text class.
Definition Text.hpp:48
std::shared_ptr< Widget > Ptr
Shared widget pointer.
Definition Widget.hpp:86
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38
States used for drawing.
Definition RenderStates.hpp:38