TGUI  0.8.9
MenuBarRenderer.hpp
1
2//
3// TGUI - Texus' Graphical User Interface
4// Copyright (C) 2012-2020 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
34namespace tgui
35{
39 class TGUI_API MenuBarRenderer : public WidgetRenderer
40 {
41 public:
42
44
45
52 void setBackgroundColor(Color backgroundColor);
53
54
62
63
70 void setSelectedBackgroundColor(Color backgroundColor);
71
72
80
81
88 void setTextColor(Color textColor);
89
90
98
99
107
108
116
117
123
124
130
131
140 void setTextureBackground(const Texture& texture);
141
142
150
151
158 void setTextureItemBackground(const Texture& texture);
159
160
168
169
177
178
186
187
194 void setDistanceToSide(float distanceToSide);
195
196
203 float getDistanceToSide() const;
204
205
207 };
208
210}
211
213
214#endif // TGUI_MENU_BAR_RENDERER_HPP
Wrapper for colors.
Definition: Color.hpp:49
Renderer for the MenuBar widget.
Definition: MenuBarRenderer.hpp:40
void setSelectedTextColor(Color textColor)
Changes the color of the text from the selected item.
void setTextureSelectedItemBackground(const Texture &texture)
Changes the image that is used as background of the selected menu item.
Texture & getTextureItemBackground() const
Returns the image that is displayed when the menu item is not selected.
void setBackgroundColor(Color backgroundColor)
Changes the background color of the menu bar.
Color getTextColorDisabled() const
Returns the color of the text when disabled.
Color getBackgroundColor() const
Returns the background color.
void setDistanceToSide(float distanceToSide)
Changes the distance between the text and the side of the menu item.
float getDistanceToSide() const
Returns the distance between the text and the side of the menu item.
void setTextureBackground(const Texture &texture)
Changes the image that is used to fill the entire menu bar.
void setTextColor(Color textColor)
Changes the color of the text.
Texture & getTextureBackground() const
Returns the image that is used to fill the entire menu bar.
Color getSelectedBackgroundColor() const
Returns the background color of the selected item.
void setTextureItemBackground(const Texture &texture)
Changes the image that is displayed when the menu item is not selected.
Texture & getTextureSelectedItemBackground() const
Returns the image that is used as background of the selected menu item.
Color getSelectedTextColor() const
Returns the color of the text from the selected item.
void setTextColorDisabled(Color textColor)
Changes the color of the text when disabled.
void setSelectedBackgroundColor(Color backgroundColor)
Changes the background color of the selected item.
Color getTextColor() const
Returns the color of the text.
Definition: Texture.hpp:42
Base class for all renderer classes.
Definition: WidgetRenderer.hpp:81
WidgetRenderer()=default
Default constructor.
Namespace that contains all TGUI functions and classes.
Definition: AbsoluteOrRelativeValue.hpp:37