Progress bar control struct. More...

Data Fields | |
| struct win_window * | container |
| Container window of progress bar. | |
| uint8_t | maximum |
| Maximum value of progress bar. | |
| uint8_t | value |
| Value of progress bar. | |
| uint8_t | position |
| End position of progress bar. | |
| uint8_t | option |
| Configuration of orientation and behavior. | |
| gfx_color_t | fill_color |
| Color for progress bar fill. | |
| gfx_color_t | background_color |
| Color for progress bar background. | |
Progress bar control struct.
For internal use only.
Contains a pointer to the progress bar's containing window, and non-window information necessary for its operation. Structs of this type are created with wtk_progress_bar_create().
Definition at line 61 of file wtk_progress_bar.c.
Color for progress bar background.
Definition at line 75 of file wtk_progress_bar.c.
Referenced by wtk_progress_bar_create(), wtk_progress_bar_handler(), and wtk_progress_bar_set_colors().
Container window of progress bar.
Definition at line 63 of file wtk_progress_bar.c.
Referenced by wtk_progress_bar_as_child(), wtk_progress_bar_create(), wtk_progress_bar_handler(), and wtk_progress_bar_set_value().
Color for progress bar fill.
Definition at line 73 of file wtk_progress_bar.c.
Referenced by wtk_progress_bar_create(), wtk_progress_bar_handler(), and wtk_progress_bar_set_colors().
Maximum value of progress bar.
Definition at line 65 of file wtk_progress_bar.c.
Referenced by wtk_progress_bar_create(), and wtk_progress_bar_set_value().
Configuration of orientation and behavior.
Definition at line 71 of file wtk_progress_bar.c.
Referenced by wtk_progress_bar_create(), wtk_progress_bar_handler(), wtk_progress_bar_set_colors(), and wtk_progress_bar_set_value().
End position of progress bar.
Definition at line 69 of file wtk_progress_bar.c.
Referenced by wtk_progress_bar_create(), wtk_progress_bar_handler(), and wtk_progress_bar_set_value().
Value of progress bar.
Definition at line 67 of file wtk_progress_bar.c.
Referenced by wtk_progress_bar_create(), wtk_progress_bar_get_value(), and wtk_progress_bar_set_value().
1.6.3