Slider control struct. More...

Data Fields | |
| struct win_window * | container |
| Container window of slider. | |
| struct win_point | root_pos |
| Slider position in relation to root window. | |
| enum wtk_slider_state | state |
| State of slider. | |
| uint8_t | maximum |
| Maximum value of slider. | |
| uint8_t | value |
| Value of slider. | |
| uint8_t | position |
| Position of slider knob. | |
| uint8_t | option |
| Configuration of orientation and behavior. | |
| win_command_t | command |
| Command to send. Must be non-zero if used. | |
Slider control struct.
For internal use only.
Contains a pointer to the slider's containing window, and non-window information necessary for its operation. Structs of this type are created with wtk_slider_create().
Definition at line 72 of file wtk_slider.c.
Command to send. Must be non-zero if used.
Definition at line 88 of file wtk_slider.c.
Referenced by wtk_slider_create(), and wtk_slider_handler().
| struct win_window* wtk_slider::container |
Container window of slider.
Definition at line 74 of file wtk_slider.c.
Referenced by wtk_slider_as_child(), wtk_slider_create(), wtk_slider_handler(), and wtk_slider_set_value().
Maximum value of slider.
Definition at line 80 of file wtk_slider.c.
Referenced by wtk_slider_create(), wtk_slider_get_value(), wtk_slider_handler(), and wtk_slider_set_value().
Configuration of orientation and behavior.
Definition at line 86 of file wtk_slider.c.
Referenced by wtk_slider_create(), wtk_slider_get_value(), wtk_slider_handler(), and wtk_slider_set_value().
Position of slider knob.
Definition at line 84 of file wtk_slider.c.
Referenced by wtk_slider_create(), wtk_slider_handler(), and wtk_slider_set_value().
| struct win_point wtk_slider::root_pos |
Slider position in relation to root window.
Definition at line 76 of file wtk_slider.c.
Referenced by wtk_slider_create(), and wtk_slider_handler().
State of slider.
Definition at line 78 of file wtk_slider.c.
Referenced by wtk_slider_create(), wtk_slider_handler(), and wtk_slider_is_moving().
Value of slider.
Definition at line 82 of file wtk_slider.c.
Referenced by wtk_slider_create(), wtk_slider_get_value(), wtk_slider_handler(), and wtk_slider_set_value().
1.6.3