OpenTTD
|
Functions for setting GUIs. More...
#include "gfx_type.h"
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, byte 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... | |
Functions for setting GUIs.
Definition in file settings_gui.h.
void DrawArrowButtons | ( | int | x, |
int | y, | ||
Colours | button_colour, | ||
byte | 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 2391 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 2438 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 2419 of file settings_gui.cpp.