Data Structures | |
struct | D4D_SLIDER_LIMITS |
Type definition of slider limits structure. More... | |
Typedefs | |
typedef sByte | D4D_SLIDER_VALUE |
Type definition of slider value type - this is standard type used for slider data input. More... | |
typedef void(* | D4D_SLDR_ON_CHANGE )(D4D_OBJECT *pThis) |
Type definition of slider on change callback function. More... | |
This section specifies the exact type for each typedef definition.
struct D4D_SLIDER_LIMITS |
Data Fields | |
D4D_SLIDER_VALUE | valueMin |
minimal value - <-128..valueMax> More... | |
D4D_SLIDER_VALUE | valueMax |
maximal value - <valueMin..127> More... | |
D4D_SLIDER_VALUE | step |
step value of slider change More... | |
D4D_SLIDER_VALUE | valueOrg |
bar origin value (should be valueMin <= org <= valueMax) More... | |
D4D_SLIDER_VALUE step |
step value of slider change
Definition at line 155 of file d4d_slider.h.
D4D_SLIDER_VALUE valueMax |
maximal value - <valueMin..127>
Definition at line 154 of file d4d_slider.h.
D4D_SLIDER_VALUE valueMin |
minimal value - <-128..valueMax>
Definition at line 153 of file d4d_slider.h.
D4D_SLIDER_VALUE valueOrg |
bar origin value (should be valueMin <= org <= valueMax)
Definition at line 156 of file d4d_slider.h.
typedef void(* D4D_SLDR_ON_CHANGE)(D4D_OBJECT *pThis) |
Type definition of slider on change callback function.
pThis | - pointer to slider instance that call the function |
Definition at line 166 of file d4d_slider.h.
typedef sByte D4D_SLIDER_VALUE |
Type definition of slider value type - this is standard type used for slider data input.
Definition at line 148 of file d4d_slider.h.