TGUI
1.6.1
|
Public Member Functions | |
void | setBorders (const Borders &borders) |
Changes the size of the borders. | |
Borders | getBorders () const |
Returns the size of the borders. | |
void | setPadding (const Padding &padding) |
Changes the padding of the combo box. | |
Padding | getPadding () const |
Returns the size of the padding. | |
void | setTextStyle (TextStyles style) |
Changes the text style. | |
TextStyles | getTextStyle () const |
Returns text style. | |
void | setDefaultTextStyle (TextStyles style) |
Changes the text style of the default text (the text drawn when no item is selected) | |
TextStyles | getDefaultTextStyle () const |
Returns the text style of the default text (the text drawn when no item is selected) | |
void | setBackgroundColor (Color backgroundColor) |
Changes the background color of the combo box. | |
Color | getBackgroundColor () const |
Returns the background color. | |
void | setBackgroundColorDisabled (Color backgroundColor) |
Changes the background color of the combo box when the combo box is disabled. | |
Color | getBackgroundColorDisabled () const |
Returns the background color when the combo box is disabled. | |
void | setTextColor (Color textColor) |
Changes the color of the text. | |
Color | getTextColor () const |
Returns the color of the text. | |
void | setTextColorDisabled (Color textColor) |
Changes the color of the text when the combo box is disabled. | |
Color | getTextColorDisabled () const |
Returns the color of the text when the combo box is disabled. | |
void | setDefaultTextColor (Color defaultTextColor) |
Sets the color of the default text that can optionally be displayed when no item is selected. | |
Color | getDefaultTextColor () const |
Returns the color of the default text that can optionally be displayed when no item is selected. | |
void | setArrowBackgroundColor (Color color) |
Changes the color behind the arrow. | |
Color | getArrowBackgroundColor () const |
Returns the color behind the arrow. | |
void | setArrowBackgroundColorHover (Color color) |
Changes the color behind the arrow in hover state (when the mouse is on top of it) | |
Color | getArrowBackgroundColorHover () const |
Returns the color behind the arrow in hover state (when the mouse is on top of it) | |
void | setArrowBackgroundColorDisabled (Color color) |
Changes the color behind the arrow when the combo box is disabled. | |
Color | getArrowBackgroundColorDisabled () const |
Returns the color behind the arrow when the combo box is disabled. | |
void | setArrowColor (Color color) |
Changes the color of the arrow. | |
Color | getArrowColor () const |
Returns the color of the arrow. | |
void | setArrowColorHover (Color color) |
Changes the color of the arrow in hover state (when the mouse is on top of it) | |
Color | getArrowColorHover () const |
Returns the color of the arrow in hover state (when the mouse is on top of it) | |
void | setArrowColorDisabled (Color color) |
Changes the color of the arrow when the combo box is disabled. | |
Color | getArrowColorDisabled () const |
Returns the color of the arrow when the combo box is disabled. | |
void | setBorderColor (Color borderColor) |
Changes the color of the borders. | |
Color | getBorderColor () const |
Returns the color of the borders. | |
void | setTextureBackground (const Texture &texture) |
Changes the background image of the combo box. | |
const Texture & | getTextureBackground () const |
Returns the background image of the combo box. | |
void | setTextureBackgroundDisabled (const Texture &texture) |
Changes the background image of the combo box when the combo box is disabled. | |
const Texture & | getTextureBackgroundDisabled () const |
Returns the background image of the combo box when the combo box is disabled. | |
void | setTextureArrow (const Texture &texture) |
Changes the image of the arrow. | |
const Texture & | getTextureArrow () const |
Returns the image of the arrow. | |
void | setTextureArrowHover (const Texture &texture) |
Changes the image of the arrow that is displayed when the mouse is on top of it. | |
const Texture & | getTextureArrowHover () const |
Returns the image of the arrow that is displayed when the mouse is on top of it. | |
void | setTextureArrowDisabled (const Texture &texture) |
Changes the image of the arrow that is displayed when the combo box is disabled. | |
const Texture & | getTextureArrowDisabled () const |
Returns the image of the arrow that is displayed when the combo box is disabled. | |
void | setListBox (std::shared_ptr< RendererData > rendererData) |
Sets the renderer data of the list box. | |
std::shared_ptr< RendererData > | getListBox () const |
Returns the renderer data of the list box. | |
WidgetRenderer ()=default | |
Default constructor. | |
WidgetRenderer (const WidgetRenderer &) | |
Copy constructor. | |
WidgetRenderer (WidgetRenderer &&)=default | |
Default move constructor. | |
WidgetRenderer (const std::shared_ptr< RendererData > &data) | |
Construct the renderer from renderer data. | |
Public Member Functions inherited from tgui::WidgetRenderer | |
WidgetRenderer ()=default | |
Default constructor. | |
WidgetRenderer (const WidgetRenderer &) | |
Copy constructor. | |
WidgetRenderer (WidgetRenderer &&)=default | |
Default move constructor. | |
WidgetRenderer & | operator= (const WidgetRenderer &) |
Copy assignment operator. | |
WidgetRenderer & | operator= (WidgetRenderer &&)=default |
Default move assignment operator. | |
WidgetRenderer (const std::shared_ptr< RendererData > &data) | |
Construct the renderer from renderer data. | |
virtual | ~WidgetRenderer ()=default |
Virtual destructor. | |
void | setOpacity (float opacity) |
Changes the opacity of the widget. | |
float | getOpacity () const |
Returns the opacity of the widget. | |
void | setOpacityDisabled (float opacity) |
Changes the opacity of the widget when it is disabled. | |
float | getOpacityDisabled () const |
Returns the opacity of the widget when it is disabled. | |
void | setFont (const Font &font) |
Changes the font used for the text in the widget. | |
Font | getFont () const |
Returns the font associated with the widget (if any) | |
void | setTextSize (unsigned int size) |
Changes the text size of the widget that is specified by the renderer. | |
unsigned int | getTextSize () const |
Returns text size of the widget that is specified by the renderer. | |
void | setTransparentTexture (bool ignoreTransparentParts) |
Sets whether mouse events should be ignored on transparent parts of the texture of the widget in normal state. | |
bool | getTransparentTexture () const |
Returns whether mouse events should be ignored on transparent parts of the texture of the widget. | |
void | setProperty (const String &property, ObjectConverter &&value) |
Changes a property of the renderer. | |
ObjectConverter | getProperty (const String &property) const |
Retrieves the value of a certain property. | |
const std::map< String, ObjectConverter > & | getPropertyValuePairs () const |
Gets a map with all properties and their values. | |
void | subscribe (Widget *widget) |
Subscribes a callback function to changes in the renderer. | |
void | unsubscribe (Widget *widget) |
Subscribes a callback function to changes in the renderer. | |
void | setData (std::shared_ptr< RendererData > data) |
std::shared_ptr< RendererData > | getData () const |
Returns the renderer data. | |
std::shared_ptr< RendererData > | clone () const |
Gets a clone of the renderer data. | |
Additional Inherited Members | |
Protected Attributes inherited from tgui::WidgetRenderer | |
std::shared_ptr< RendererData > | m_data = RendererData::create() |
|
nodiscard |
Returns the color behind the arrow.
|
nodiscard |
Returns the color behind the arrow when the combo box is disabled.
|
nodiscard |
Returns the color behind the arrow in hover state (when the mouse is on top of it)
|
nodiscard |
Returns the color of the arrow.
|
nodiscard |
Returns the color of the arrow when the combo box is disabled.
|
nodiscard |
Returns the color of the arrow in hover state (when the mouse is on top of it)
|
nodiscard |
Returns the background color.
|
nodiscard |
Returns the background color when the combo box is disabled.
|
nodiscard |
Returns the color of the borders.
|
nodiscard |
Returns the size of the borders.
|
nodiscard |
Returns the color of the default text that can optionally be displayed when no item is selected.
|
nodiscard |
Returns the text style of the default text (the text drawn when no item is selected)
|
nodiscard |
Returns the renderer data of the list box.
|
nodiscard |
Returns the size of the padding.
|
nodiscard |
Returns the color of the text.
|
nodiscard |
Returns the color of the text when the combo box is disabled.
|
nodiscard |
Returns text style.
|
nodiscard |
Returns the image of the arrow.
|
nodiscard |
Returns the image of the arrow that is displayed when the combo box is disabled.
|
nodiscard |
Returns the image of the arrow that is displayed when the mouse is on top of it.
|
nodiscard |
Returns the background image of the combo box.
|
nodiscard |
Returns the background image of the combo box when the combo box is disabled.
void tgui::ComboBoxRenderer::setArrowBackgroundColor | ( | Color | color | ) |
Changes the color behind the arrow.
color | The new arrow background color |
This color will be ignored when a up and down arrow image were loaded.
void tgui::ComboBoxRenderer::setArrowBackgroundColorDisabled | ( | Color | color | ) |
Changes the color behind the arrow when the combo box is disabled.
color | The new disabled arrow background color |
This color will be ignored when a up and down arrow image were loaded.
void tgui::ComboBoxRenderer::setArrowBackgroundColorHover | ( | Color | color | ) |
Changes the color behind the arrow in hover state (when the mouse is on top of it)
color | The new hover arrow background color |
void tgui::ComboBoxRenderer::setArrowColor | ( | Color | color | ) |
Changes the color of the arrow.
color | The new arrow color |
This color will be ignored when a up and down arrow image were loaded.
void tgui::ComboBoxRenderer::setArrowColorDisabled | ( | Color | color | ) |
Changes the color of the arrow when the combo box is disabled.
color | The new disabled hover arrow color |
void tgui::ComboBoxRenderer::setArrowColorHover | ( | Color | color | ) |
Changes the color of the arrow in hover state (when the mouse is on top of it)
color | The new hover arrow color |
void tgui::ComboBoxRenderer::setBackgroundColor | ( | Color | backgroundColor | ) |
Changes the background color of the combo box.
backgroundColor | The new background color |
void tgui::ComboBoxRenderer::setBackgroundColorDisabled | ( | Color | backgroundColor | ) |
Changes the background color of the combo box when the combo box is disabled.
backgroundColor | The new disabled background color |
void tgui::ComboBoxRenderer::setBorderColor | ( | Color | borderColor | ) |
Changes the color of the borders.
borderColor | The new border color |
void tgui::ComboBoxRenderer::setBorders | ( | const Borders & | borders | ) |
Changes the size of the borders.
borders | Size of the borders |
void tgui::ComboBoxRenderer::setDefaultTextColor | ( | Color | defaultTextColor | ) |
Sets the color of the default text that can optionally be displayed when no item is selected.
defaultTextColor | The new default text color |
void tgui::ComboBoxRenderer::setDefaultTextStyle | ( | TextStyles | style | ) |
Changes the text style of the default text (the text drawn when no item is selected)
style | The new default text style |
void tgui::ComboBoxRenderer::setListBox | ( | std::shared_ptr< RendererData > | rendererData | ) |
Sets the renderer data of the list box.
rendererData | Data about how the list box should look |
void tgui::ComboBoxRenderer::setPadding | ( | const Padding & | padding | ) |
Changes the padding of the combo box.
padding | The padding width and height |
void tgui::ComboBoxRenderer::setTextColor | ( | Color | textColor | ) |
Changes the color of the text.
textColor | The new text color |
void tgui::ComboBoxRenderer::setTextColorDisabled | ( | Color | textColor | ) |
Changes the color of the text when the combo box is disabled.
textColor | The new disabled text color |
void tgui::ComboBoxRenderer::setTextStyle | ( | TextStyles | style | ) |
Changes the text style.
style | New text style |
void tgui::ComboBoxRenderer::setTextureArrow | ( | const Texture & | texture | ) |
Changes the image of the arrow.
texture | The new arrow texture |
When this image is set, the arrow color properties will be ignored.
void tgui::ComboBoxRenderer::setTextureArrowDisabled | ( | const Texture & | texture | ) |
Changes the image of the arrow that is displayed when the combo box is disabled.
texture | The new disabled arrow texture |
void tgui::ComboBoxRenderer::setTextureArrowHover | ( | const Texture & | texture | ) |
Changes the image of the arrow that is displayed when the mouse is on top of it.
texture | The new hover arrow texture |
void tgui::ComboBoxRenderer::setTextureBackground | ( | const Texture & | texture | ) |
Changes the background image of the combo box.
texture | The background texture |
When this image is set, the background color property will be ignored.
void tgui::ComboBoxRenderer::setTextureBackgroundDisabled | ( | const Texture & | texture | ) |
Changes the background image of the combo box when the combo box is disabled.
texture | The disabled background texture |
|
inline |
Construct the renderer from renderer data.
data | Renderer data to initialize the renderer with |