TGUI  1.6.1
Loading...
Searching...
No Matches
ProgressBarRenderer.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_RENDERER_HPP
26#define TGUI_PROGRESS_BAR_RENDERER_HPP
27
28#include <TGUI/Renderers/WidgetRenderer.hpp>
29
31
32TGUI_MODULE_EXPORT namespace tgui
33{
34 class TGUI_API ProgressBarRenderer : public WidgetRenderer
35 {
36 public:
37
38 using WidgetRenderer::WidgetRenderer;
39
45 void setBorders(const Borders& borders);
46
52 TGUI_NODISCARD Borders getBorders() const;
53
59 void setTextColor(Color color);
60
66 TGUI_NODISCARD Color getTextColor() const;
67
74
80 TGUI_NODISCARD Color getTextColorFilled() const;
81
92
98 TGUI_NODISCARD Color getBackgroundColor() const;
99
109 void setFillColor(Color color);
110
116 TGUI_NODISCARD Color getFillColor() const;
117
124
130 TGUI_NODISCARD Color getBorderColor() const;
131
139 void setTextureBackground(const Texture& texture);
140
146 TGUI_NODISCARD const Texture& getTextureBackground() const;
147
155 void setTextureFill(const Texture& texture);
156
162 TGUI_NODISCARD const Texture& getTextureFill() const;
163
170
176 TGUI_NODISCARD TextStyles getTextStyle() const;
177
183 void setTextOutlineColor(Color outlineColor);
184
190 TGUI_NODISCARD Color getTextOutlineColor() const;
191
197 void setTextOutlineThickness(float outlineThickness);
198
204 TGUI_NODISCARD float getTextOutlineThickness() const;
205
207 };
208
210}
211
213
214#endif // TGUI_PROGRESS_BAR_RENDERER_HPP
Wrapper for colors.
Definition Color.hpp:73
Definition Outline.hpp:38
Definition ProgressBarRenderer.hpp:35
void setFillColor(Color color)
Changes the fill color of the progress bar.
void setTextureFill(const Texture &texture)
Changes the fill image of the progress bar.
void setTextColor(Color color)
Changes the color of the text that is optionally displayed on top of the progress bar.
const Texture & getTextureFill() const
Returns the fill image.
void setBackgroundColor(Color color)
Changes the background color of the progress bar.
Color getTextOutlineColor() const
Returns the outline color of the text (used when TextOutlineThickness > 0)
Color getBackgroundColor() const
Returns the background color of the progress bar.
Color getFillColor() const
Returns the fill color of the progress bar.
Color getTextColor() const
Returns the color of the text that is optionally displayed on top of the progress bar.
void setTextColorFilled(Color color)
Changes the color of the text that is on top of the filled part of the progress bar.
const Texture & getTextureBackground() const
Returns the background image.
Color getBorderColor() const
Returns the border color.
TextStyles getTextStyle() const
Returns text style.
Color getTextColorFilled() const
Returns the color of the text that is on top of the filled part of the progress bar.
void setTextOutlineColor(Color outlineColor)
Changes the outline color of the text (used when TextOutlineThickness > 0)
void setTextStyle(TextStyles style)
Changes the text style.
void setBorders(const Borders &borders)
Changes the size of the borders.
void setTextureBackground(const Texture &texture)
Changes the background image of the progress bar.
float getTextOutlineThickness() const
Returns the thickness of the text outline.
void setTextOutlineThickness(float outlineThickness)
Changes the thickness of the text outline (0 by default, which means there is no outline).
void setBorderColor(Color color)
Changes the border color.
Borders getBorders() const
Returns the size of the borders.
Wrapper for text styles.
Definition TextStyle.hpp:55
Texture wrapper that internally reuses resources when multiple Texture objects are loaded from the sa...
Definition Texture.hpp:57
Base class for all renderer classes.
Definition WidgetRenderer.hpp:69
Namespace that contains all TGUI functions and classes.
Definition AbsoluteOrRelativeValue.hpp:38