|
Freeciv-3.3
|
Go to the source code of this file.
Data Structures | |
| struct | checkbox |
Functions | |
| struct widget * | create_textcheckbox (struct gui_layer *pdest, bool state, utf8_str *pstr, Uint32 flags) |
| struct widget * | create_checkbox (struct gui_layer *pdest, bool state, Uint32 flags) |
| void | toggle_checkbox (struct widget *cbox) |
| bool | get_checkbox_state (struct widget *cbox) |
| int | set_new_checkbox_theme (struct widget *cbox, SDL_Surface *true_surf, SDL_Surface *false_surf) |
Create a new checkbox widget.
Definition at line 115 of file widget_checkbox.c.
| struct widget * create_textcheckbox | ( | struct gui_layer * | pdest, |
| bool | state, | ||
| utf8_str * | pstr, | ||
| Uint32 | flags | ||
| ) |
Create a new checkbox-with-text widget.
Definition at line 149 of file widget_checkbox.c.
Check state of the checkbox.
Definition at line 239 of file widget_checkbox.c.
| int set_new_checkbox_theme | ( | struct widget * | cbox, |
| SDL_Surface * | true_surf, | ||
| SDL_Surface * | false_surf | ||
| ) |
Set theme surfaces for a checkbox.
Definition at line 195 of file widget_checkbox.c.
Change the state of the checkbox.
Definition at line 225 of file widget_checkbox.c.