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
0.9.5
Loading...
Searching...
No Matches
include
TGUI
Renderers
MenuBarRenderer.hpp
1
2
//
3
// TGUI - Texus' Graphical User Interface
4
// Copyright (C) 2012-2022 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_MENU_BAR_RENDERER_HPP
27
#define TGUI_MENU_BAR_RENDERER_HPP
28
29
30
#include <TGUI/Renderers/WidgetRenderer.hpp>
31
33
34
namespace
tgui
35
{
39
class
TGUI_API
MenuBarRenderer
:
public
WidgetRenderer
40
{
41
public
:
42
43
using
WidgetRenderer::WidgetRenderer;
44
45
52
void
setBackgroundColor
(
Color
backgroundColor);
53
54
61
Color
getBackgroundColor
()
const
;
62
63
70
void
setSelectedBackgroundColor
(
Color
backgroundColor);
71
72
79
Color
getSelectedBackgroundColor
()
const
;
80
81
88
void
setTextColor
(
Color
textColor);
89
90
97
Color
getTextColor
()
const
;
98
99
106
void
setSelectedTextColor
(
Color
textColor);
107
108
115
Color
getSelectedTextColor
()
const
;
116
117
122
void
setTextColorDisabled
(
Color
textColor);
123
124
129
Color
getTextColorDisabled
()
const
;
130
131
136
void
setSeparatorColor
(
Color
separatorColor);
137
138
143
Color
getSeparatorColor
()
const
;
144
145
154
void
setTextureBackground
(
const
Texture
& texture);
155
156
163
const
Texture
&
getTextureBackground
()
const
;
164
165
172
void
setTextureItemBackground
(
const
Texture
& texture);
173
174
181
const
Texture
&
getTextureItemBackground
()
const
;
182
183
190
void
setTextureSelectedItemBackground
(
const
Texture
& texture);
191
192
199
const
Texture
&
getTextureSelectedItemBackground
()
const
;
200
201
208
void
setDistanceToSide
(
float
distanceToSide);
209
210
217
float
getDistanceToSide
()
const
;
218
219
224
void
setSeparatorThickness
(
float
thickness);
225
226
231
float
getSeparatorThickness
()
const
;
232
233
238
void
setSeparatorVerticalPadding
(
float
padding);
239
240
245
float
getSeparatorVerticalPadding
()
const
;
246
247
252
void
setSeparatorSidePadding
(
float
padding);
253
254
259
float
getSeparatorSidePadding
()
const
;
260
261
263
};
264
266
}
267
269
270
#endif
// TGUI_MENU_BAR_RENDERER_HPP
tgui::Color
Wrapper for colors.
Definition
Color.hpp:63
tgui::MenuBarRenderer
Renderer for the MenuBar widget.
Definition
MenuBarRenderer.hpp:40
tgui::MenuBarRenderer::getTextureSelectedItemBackground
const Texture & getTextureSelectedItemBackground() const
Returns the image that is used as background of the selected menu item.
tgui::MenuBarRenderer::setSelectedTextColor
void setSelectedTextColor(Color textColor)
Changes the color of the text from the selected item.
tgui::MenuBarRenderer::setTextureSelectedItemBackground
void setTextureSelectedItemBackground(const Texture &texture)
Changes the image that is used as background of the selected menu item.
tgui::MenuBarRenderer::setSeparatorThickness
void setSeparatorThickness(float thickness)
Changes the height of the separators.
tgui::MenuBarRenderer::getTextureItemBackground
const Texture & getTextureItemBackground() const
Returns the image that is displayed when the menu item is not selected.
tgui::MenuBarRenderer::setBackgroundColor
void setBackgroundColor(Color backgroundColor)
Changes the background color of the menu bar.
tgui::MenuBarRenderer::getTextColorDisabled
Color getTextColorDisabled() const
Returns the color of the text when disabled.
tgui::MenuBarRenderer::getBackgroundColor
Color getBackgroundColor() const
Returns the background color.
tgui::MenuBarRenderer::getSeparatorColor
Color getSeparatorColor() const
Returns the color of the separators.
tgui::MenuBarRenderer::setDistanceToSide
void setDistanceToSide(float distanceToSide)
Changes the distance between the text and the side of the menu item.
tgui::MenuBarRenderer::getDistanceToSide
float getDistanceToSide() const
Returns the distance between the text and the side of the menu item.
tgui::MenuBarRenderer::setTextureBackground
void setTextureBackground(const Texture &texture)
Changes the image that is used to fill the entire menu bar.
tgui::MenuBarRenderer::setSeparatorSidePadding
void setSeparatorSidePadding(float padding)
Changes the distance between the separator and the sides of the menu.
tgui::MenuBarRenderer::setTextColor
void setTextColor(Color textColor)
Changes the color of the text.
tgui::MenuBarRenderer::getSelectedBackgroundColor
Color getSelectedBackgroundColor() const
Returns the background color of the selected item.
tgui::MenuBarRenderer::setTextureItemBackground
void setTextureItemBackground(const Texture &texture)
Changes the image that is displayed when the menu item is not selected.
tgui::MenuBarRenderer::setSeparatorVerticalPadding
void setSeparatorVerticalPadding(float padding)
Changes the distance between the separator and the menu items above and below it.
tgui::MenuBarRenderer::getSelectedTextColor
Color getSelectedTextColor() const
Returns the color of the text from the selected item.
tgui::MenuBarRenderer::getSeparatorThickness
float getSeparatorThickness() const
Returns the height of the separators.
tgui::MenuBarRenderer::setTextColorDisabled
void setTextColorDisabled(Color textColor)
Changes the color of the text when disabled.
tgui::MenuBarRenderer::setSeparatorColor
void setSeparatorColor(Color separatorColor)
Changes the color of the separators.
tgui::MenuBarRenderer::getSeparatorVerticalPadding
float getSeparatorVerticalPadding() const
Returns the distance between the separator and the menu items above and below it.
tgui::MenuBarRenderer::setSelectedBackgroundColor
void setSelectedBackgroundColor(Color backgroundColor)
Changes the background color of the selected item.
tgui::MenuBarRenderer::getTextColor
Color getTextColor() const
Returns the color of the text.
tgui::MenuBarRenderer::getSeparatorSidePadding
float getSeparatorSidePadding() const
Returns the distance between the separator and the sides of the menu.
tgui::MenuBarRenderer::getTextureBackground
const Texture & getTextureBackground() const
Returns the image that is used to fill the entire menu bar.
tgui::Texture
Definition
Texture.hpp:49
tgui::WidgetRenderer
Base class for all renderer classes.
Definition
WidgetRenderer.hpp:81
tgui
Namespace that contains all TGUI functions and classes.
Definition
AbsoluteOrRelativeValue.hpp:36
Generated on Sat Nov 4 2023 16:38:26 for TGUI by
1.9.8