TGUI
=
=
Download
Tutorials
1.x
0.9
0.8
Documentation
1.x
0.9
0.8
Examples
1.x
0.9
0.8
Community
TGUI
1.8
Loading...
Searching...
No Matches
include
TGUI
Renderers
MenuWidgetBaseRenderer.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_MENU_WIDGET_BASE_RENDERER_HPP
26
#define TGUI_MENU_WIDGET_BASE_RENDERER_HPP
27
28
#include <TGUI/Renderers/WidgetRenderer.hpp>
29
31
32
TGUI_MODULE_EXPORT
namespace
tgui
33
{
37
class
TGUI_API
MenuWidgetBaseRenderer
:
public
WidgetRenderer
38
{
39
public
:
40
41
using
WidgetRenderer::WidgetRenderer
;
42
48
void
setBackgroundColor
(
Color
backgroundColor);
49
55
TGUI_NODISCARD
Color
getBackgroundColor
()
const
;
56
62
void
setSelectedBackgroundColor
(
Color
backgroundColor);
63
69
TGUI_NODISCARD
Color
getSelectedBackgroundColor
()
const
;
70
76
void
setTextColor
(
Color
textColor);
77
83
TGUI_NODISCARD
Color
getTextColor
()
const
;
84
90
void
setSelectedTextColor
(
Color
textColor);
91
97
TGUI_NODISCARD
Color
getSelectedTextColor
()
const
;
98
103
void
setTextColorDisabled
(
Color
textColor);
104
109
TGUI_NODISCARD
Color
getTextColorDisabled
()
const
;
110
115
void
setSeparatorColor
(
Color
separatorColor);
116
121
TGUI_NODISCARD
Color
getSeparatorColor
()
const
;
122
128
void
setTextureItemBackground
(
const
Texture
& texture);
129
135
TGUI_NODISCARD
const
Texture
&
getTextureItemBackground
()
const
;
136
142
void
setTextureSelectedItemBackground
(
const
Texture
& texture);
143
149
TGUI_NODISCARD
const
Texture
&
getTextureSelectedItemBackground
()
const
;
150
156
void
setDistanceToSide
(
float
distanceToSide);
157
163
TGUI_NODISCARD
float
getDistanceToSide
()
const
;
164
169
void
setSeparatorThickness
(
float
thickness);
170
175
TGUI_NODISCARD
float
getSeparatorThickness
()
const
;
176
181
void
setSeparatorVerticalPadding
(
float
padding);
182
187
TGUI_NODISCARD
float
getSeparatorVerticalPadding
()
const
;
188
193
void
setSeparatorSidePadding
(
float
padding);
194
199
TGUI_NODISCARD
float
getSeparatorSidePadding
()
const
;
200
202
};
203
205
}
206
208
209
#endif
// TGUI_MENU_WIDGET_BASE_RENDERER_HPP
tgui::Color
Wrapper for colors.
Definition
Color.hpp:73
tgui::MenuWidgetBaseRenderer
Renderer for the MenuBar widget.
Definition
MenuWidgetBaseRenderer.hpp:38
tgui::MenuWidgetBaseRenderer::setTextColor
void setTextColor(Color textColor)
Changes the color of the text.
tgui::MenuWidgetBaseRenderer::getTextureItemBackground
const Texture & getTextureItemBackground() const
Returns the image that is displayed when the menu item is not selected.
tgui::MenuWidgetBaseRenderer::getSelectedBackgroundColor
Color getSelectedBackgroundColor() const
Returns the background color of the selected item.
tgui::MenuWidgetBaseRenderer::setBackgroundColor
void setBackgroundColor(Color backgroundColor)
Changes the background color.
tgui::MenuWidgetBaseRenderer::getBackgroundColor
Color getBackgroundColor() const
Returns the background color.
tgui::MenuWidgetBaseRenderer::getTextureSelectedItemBackground
const Texture & getTextureSelectedItemBackground() const
Returns the image that is used as background of the selected menu item.
tgui::MenuWidgetBaseRenderer::getSeparatorThickness
float getSeparatorThickness() const
Returns the height of the separators.
tgui::MenuWidgetBaseRenderer::setTextureSelectedItemBackground
void setTextureSelectedItemBackground(const Texture &texture)
Changes the image that is used as background of the selected menu item.
tgui::MenuWidgetBaseRenderer::setSelectedBackgroundColor
void setSelectedBackgroundColor(Color backgroundColor)
Changes the background color of the selected item.
tgui::MenuWidgetBaseRenderer::setDistanceToSide
void setDistanceToSide(float distanceToSide)
Changes the distance between the text and the side of the menu item.
tgui::MenuWidgetBaseRenderer::getSeparatorVerticalPadding
float getSeparatorVerticalPadding() const
Returns the distance between the separator and the menu items above and below it.
tgui::MenuWidgetBaseRenderer::setSelectedTextColor
void setSelectedTextColor(Color textColor)
Changes the color of the text from the selected item.
tgui::MenuWidgetBaseRenderer::getSelectedTextColor
Color getSelectedTextColor() const
Returns the color of the text from the selected item.
tgui::MenuWidgetBaseRenderer::setSeparatorThickness
void setSeparatorThickness(float thickness)
Changes the height of the separators.
tgui::MenuWidgetBaseRenderer::setSeparatorColor
void setSeparatorColor(Color separatorColor)
Changes the color of the separators.
tgui::MenuWidgetBaseRenderer::getTextColorDisabled
Color getTextColorDisabled() const
Returns the color of the text when disabled.
tgui::MenuWidgetBaseRenderer::getSeparatorColor
Color getSeparatorColor() const
Returns the color of the separators.
tgui::MenuWidgetBaseRenderer::setTextColorDisabled
void setTextColorDisabled(Color textColor)
Changes the color of the text when disabled.
tgui::MenuWidgetBaseRenderer::setSeparatorVerticalPadding
void setSeparatorVerticalPadding(float padding)
Changes the distance between the separator and the menu items above and below it.
tgui::MenuWidgetBaseRenderer::setTextureItemBackground
void setTextureItemBackground(const Texture &texture)
Changes the image that is displayed when the menu item is not selected.
tgui::MenuWidgetBaseRenderer::getDistanceToSide
float getDistanceToSide() const
Returns the distance between the text and the side of the menu item.
tgui::MenuWidgetBaseRenderer::getTextColor
Color getTextColor() const
Returns the color of the text.
tgui::MenuWidgetBaseRenderer::WidgetRenderer
WidgetRenderer()=default
Default constructor.
tgui::MenuWidgetBaseRenderer::setSeparatorSidePadding
void setSeparatorSidePadding(float padding)
Changes the distance between the separator and the sides of the menu.
tgui::MenuWidgetBaseRenderer::getSeparatorSidePadding
float getSeparatorSidePadding() const
Returns the distance between the separator and the sides of the menu.
tgui::Texture
Texture wrapper that internally reuses resources when multiple Texture objects are loaded from the sa...
Definition
Texture.hpp:57
tgui::WidgetRenderer::WidgetRenderer
WidgetRenderer()=default
Default constructor.
tgui
Namespace that contains all TGUI functions and classes.
Definition
AbsoluteOrRelativeValue.hpp:38
Generated on Sun Feb 23 2025 20:03:02 for TGUI by
1.13.2