TGUI  0.10-beta
tgui::MenuBarRenderer Class Reference

Renderer for the MenuBar widget. More...

#include <TGUI/Renderers/MenuBarRenderer.hpp>

Inheritance diagram for tgui::MenuBarRenderer:
tgui::WidgetRenderer

Public Member Functions

void setBackgroundColor (Color backgroundColor)
 Changes the background color of the menu bar. More...
 
Color getBackgroundColor () const
 Returns the background color. More...
 
void setSelectedBackgroundColor (Color backgroundColor)
 Changes the background color of the selected item. More...
 
Color getSelectedBackgroundColor () const
 Returns the background color of the selected item. More...
 
void setTextColor (Color textColor)
 Changes the color of the text. More...
 
Color getTextColor () const
 Returns the color of the text. More...
 
void setSelectedTextColor (Color textColor)
 Changes the color of the text from the selected item. More...
 
Color getSelectedTextColor () const
 Returns the color of the text from the selected item. More...
 
void setTextColorDisabled (Color textColor)
 Changes the color of the text when disabled. More...
 
Color getTextColorDisabled () const
 Returns the color of the text when disabled. More...
 
void setSeparatorColor (Color separatorColor)
 Changes the color of the separators. More...
 
Color getSeparatorColor () const
 Returns the color of the separators. More...
 
void setTextureBackground (const Texture &texture)
 Changes the image that is used to fill the entire menu bar. More...
 
const TexturegetTextureBackground () const
 Returns the image that is used to fill the entire menu bar. More...
 
void setTextureItemBackground (const Texture &texture)
 Changes the image that is displayed when the menu item is not selected. More...
 
const TexturegetTextureItemBackground () const
 Returns the image that is displayed when the menu item is not selected. More...
 
void setTextureSelectedItemBackground (const Texture &texture)
 Changes the image that is used as background of the selected menu item. More...
 
const TexturegetTextureSelectedItemBackground () const
 Returns the image that is used as background of the selected menu item. More...
 
void setDistanceToSide (float distanceToSide)
 Changes the distance between the text and the side of the menu item. More...
 
float getDistanceToSide () const
 Returns the distance between the text and the side of the menu item. More...
 
void setSeparatorThickness (float thickness)
 Changes the height of the separators. More...
 
float getSeparatorThickness () const
 Returns the height of the separators. More...
 
void setSeparatorVerticalPadding (float padding)
 Changes the distance between the separator and the menu items above and below it. More...
 
float getSeparatorVerticalPadding () const
 Returns the distance between the separator and the menu items above and below it. More...
 
void setSeparatorSidePadding (float padding)
 Changes the distance between the separator and the sides of the menu. More...
 
float getSeparatorSidePadding () const
 Returns the distance between the separator and the sides of the menu. More...
 
 WidgetRenderer ()=default
 Default constructor.
 
 WidgetRenderer (const std::shared_ptr< RendererData > &data)
 Construct the renderer from renderer data. More...
 
- Public Member Functions inherited from tgui::WidgetRenderer
 WidgetRenderer ()=default
 Default constructor.
 
 WidgetRenderer (const std::shared_ptr< RendererData > &data)
 Construct the renderer from renderer data. More...
 
virtual ~WidgetRenderer ()=default
 Virtual destructor.
 
void setOpacity (float opacity)
 Changes the opacity of the widget. More...
 
float getOpacity () const
 Returns the opacity of the widget. More...
 
void setOpacityDisabled (float opacity)
 Changes the opacity of the widget when it is disabled. More...
 
float getOpacityDisabled () const
 Returns the opacity of the widget when it is disabled. More...
 
void setFont (Font font)
 Changes the font used for the text in the widget. More...
 
Font getFont () const
 Returns the font associated with the widget (if any) More...
 
void setTextSize (unsigned int size)
 Changes the text size of the widget that is specified by the renderer. More...
 
unsigned int getTextSize () const
 Returns text size of the widget that is specified by the renderer. More...
 
void setTransparentTexture (bool ignoreTransparentParts)
 Sets whether mouse events should be ignored on transparent parts of the texture of the widget in normal state. More...
 
bool getTransparentTexture () const
 Returns whether mouse events should be ignored on transparent parts of the texture of the widget. More...
 
void setProperty (const String &property, ObjectConverter &&value)
 Changes a property of the renderer. More...
 
ObjectConverter getProperty (const String &property) const
 Retrieves the value of a certain property. More...
 
const std::map< String, ObjectConverter > & getPropertyValuePairs () const
 Gets a map with all properties and their values. More...
 
void subscribe (const void *id, const std::function< void(const String &property)> &function)
 Subscribes a callback function to changes in the renderer. More...
 
void unsubscribe (const void *id)
 Subscribes a callback function to changes in the renderer. More...
 
void setData (const std::shared_ptr< RendererData > &data)
 
std::shared_ptr< RendererDatagetData () const
 Returns the renderer data. More...
 
std::shared_ptr< RendererDataclone () const
 Gets a clone of the renderer data. More...
 

Additional Inherited Members

- Protected Attributes inherited from tgui::WidgetRenderer
std::shared_ptr< RendererDatam_data = RendererData::create()
 

Detailed Description

Renderer for the MenuBar widget.

Member Function Documentation

◆ getBackgroundColor()

Color tgui::MenuBarRenderer::getBackgroundColor ( ) const

Returns the background color.

Returns
Background color

◆ getDistanceToSide()

float tgui::MenuBarRenderer::getDistanceToSide ( ) const

Returns the distance between the text and the side of the menu item.

Returns
Distance between the text and the side of the menu item

◆ getSelectedBackgroundColor()

Color tgui::MenuBarRenderer::getSelectedBackgroundColor ( ) const

Returns the background color of the selected item.

Returns
Selected item background color

◆ getSelectedTextColor()

Color tgui::MenuBarRenderer::getSelectedTextColor ( ) const

Returns the color of the text from the selected item.

Returns
Selected text color

◆ getSeparatorColor()

Color tgui::MenuBarRenderer::getSeparatorColor ( ) const

Returns the color of the separators.

Returns
Separator color

◆ getSeparatorSidePadding()

float tgui::MenuBarRenderer::getSeparatorSidePadding ( ) const

Returns the distance between the separator and the sides of the menu.

Returns
Padding next to the separator

◆ getSeparatorThickness()

float tgui::MenuBarRenderer::getSeparatorThickness ( ) const

Returns the height of the separators.

Returns
Separator thickness

◆ getSeparatorVerticalPadding()

float tgui::MenuBarRenderer::getSeparatorVerticalPadding ( ) const

Returns the distance between the separator and the menu items above and below it.

Returns
Padding above and below the separator

◆ getTextColor()

Color tgui::MenuBarRenderer::getTextColor ( ) const

Returns the color of the text.

Returns
Text color

◆ getTextColorDisabled()

Color tgui::MenuBarRenderer::getTextColorDisabled ( ) const

Returns the color of the text when disabled.

Returns
Text color

◆ getTextureBackground()

const Texture & tgui::MenuBarRenderer::getTextureBackground ( ) const

Returns the image that is used to fill the entire menu bar.

Returns
Background texture

◆ getTextureItemBackground()

const Texture & tgui::MenuBarRenderer::getTextureItemBackground ( ) const

Returns the image that is displayed when the menu item is not selected.

Returns
Item background texture

◆ getTextureSelectedItemBackground()

const Texture & tgui::MenuBarRenderer::getTextureSelectedItemBackground ( ) const

Returns the image that is used as background of the selected menu item.

Returns
Selected item background texture

◆ setBackgroundColor()

void tgui::MenuBarRenderer::setBackgroundColor ( Color  backgroundColor)

Changes the background color of the menu bar.

Parameters
backgroundColorThe new background color

◆ setDistanceToSide()

void tgui::MenuBarRenderer::setDistanceToSide ( float  distanceToSide)

Changes the distance between the text and the side of the menu item.

Parameters
distanceToSidedistance between the text and the side of the menu item

◆ setSelectedBackgroundColor()

void tgui::MenuBarRenderer::setSelectedBackgroundColor ( Color  backgroundColor)

Changes the background color of the selected item.

Parameters
backgroundColorThe new selected item background color

◆ setSelectedTextColor()

void tgui::MenuBarRenderer::setSelectedTextColor ( Color  textColor)

Changes the color of the text from the selected item.

Parameters
textColorThe new selected text color

◆ setSeparatorColor()

void tgui::MenuBarRenderer::setSeparatorColor ( Color  separatorColor)

Changes the color of the separators.

Parameters
separatorColorThe new separator color

◆ setSeparatorSidePadding()

void tgui::MenuBarRenderer::setSeparatorSidePadding ( float  padding)

Changes the distance between the separator and the sides of the menu.

Parameters
paddingPadding next to the separator

◆ setSeparatorThickness()

void tgui::MenuBarRenderer::setSeparatorThickness ( float  thickness)

Changes the height of the separators.

Parameters
thicknessThe new separator thickness

◆ setSeparatorVerticalPadding()

void tgui::MenuBarRenderer::setSeparatorVerticalPadding ( float  padding)

Changes the distance between the separator and the menu items above and below it.

Parameters
paddingPadding above and below the separator

◆ setTextColor()

void tgui::MenuBarRenderer::setTextColor ( Color  textColor)

Changes the color of the text.

Parameters
textColorThe new text color

◆ setTextColorDisabled()

void tgui::MenuBarRenderer::setTextColorDisabled ( Color  textColor)

Changes the color of the text when disabled.

Parameters
textColorThe new text color

◆ setTextureBackground()

void tgui::MenuBarRenderer::setTextureBackground ( const Texture texture)

Changes the image that is used to fill the entire menu bar.

Parameters
textureThe background texture

When this image is set, the background color property will be ignored.

◆ setTextureItemBackground()

void tgui::MenuBarRenderer::setTextureItemBackground ( const Texture texture)

Changes the image that is displayed when the menu item is not selected.

Parameters
textureNew item background texture

◆ setTextureSelectedItemBackground()

void tgui::MenuBarRenderer::setTextureSelectedItemBackground ( const Texture texture)

Changes the image that is used as background of the selected menu item.

Parameters
textureNew selected item background texture

◆ WidgetRenderer()

tgui::WidgetRenderer::WidgetRenderer ( const std::shared_ptr< RendererData > &  data)
inline

Construct the renderer from renderer data.

Parameters
dataRenderer data to initialize the renderer with

The documentation for this class was generated from the following file: