OpenTTD Source
20241108-master-g80f628063a
|
Functions for setting GUIs. More...
Go to the source code of this file.
Macros | |
#define | SETTING_BUTTON_WIDTH ((int)NWidgetScrollbar::GetHorizontalDimension().width * 2) |
Width of setting buttons. | |
#define | SETTING_BUTTON_HEIGHT ((int)NWidgetScrollbar::GetHorizontalDimension().height) |
Height of setting buttons. | |
Functions | |
void | DrawArrowButtons (int x, int y, Colours button_colour, uint8_t state, bool clickable_left, bool clickable_right) |
Draw [<][>] boxes. More... | |
void | DrawDropDownButton (int x, int y, Colours button_colour, bool state, bool clickable) |
Draw a dropdown button. More... | |
void | DrawBoolButton (int x, int y, bool state, bool clickable) |
Draw a toggle button. More... | |
template<class T > | |
DropDownList | BuildSetDropDownList (int *selected_index) |
void | ChangeMusicSet (int index) |
Change the configured music set and reset playback. More... | |
Functions for setting GUIs.
Definition in file settings_gui.h.
void ChangeMusicSet | ( | int | index | ) |
Change the configured music set and reset playback.
index | Index of music set to switch to |
Definition at line 463 of file music_gui.cpp.
References _music, BaseMedia< MusicSet >::GetIndexOfUsedSet(), and BaseMedia< MusicSet >::GetSet().
void DrawArrowButtons | ( | int | x, |
int | y, | ||
Colours | button_colour, | ||
uint8_t | state, | ||
bool | clickable_left, | ||
bool | clickable_right | ||
) |
Draw [<][>] boxes.
x | the x position to draw |
y | the y position to draw |
button_colour | the colour of the button |
state | 0 = none clicked, 1 = first clicked, 2 = second clicked |
clickable_left | is the left button clickable? |
clickable_right | is the right button clickable? |
Definition at line 2927 of file settings_gui.cpp.
void DrawBoolButton | ( | int | x, |
int | y, | ||
bool | state, | ||
bool | clickable | ||
) |
Draw a toggle button.
x | the x position to draw |
y | the y position to draw |
state | true = lowered |
clickable | is the button clickable? |
Definition at line 2979 of file settings_gui.cpp.
void DrawDropDownButton | ( | int | x, |
int | y, | ||
Colours | button_colour, | ||
bool | state, | ||
bool | clickable | ||
) |
Draw a dropdown button.
x | the x position to draw |
y | the y position to draw |
button_colour | the colour of the button |
state | true = lowered |
clickable | is the button clickable? |
Definition at line 2958 of file settings_gui.cpp.