eGUI alias D4D  Release 3.0
Reference Manual
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
D4D SLIDER API Types Specification
Collaboration diagram for D4D SLIDER API Types Specification:

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...
 

Detailed Description

This section specifies the exact type for each typedef definition.


Data Structure Documentation

struct D4D_SLIDER_LIMITS
Collaboration diagram for D4D_SLIDER_LIMITS:
Collaboration graph

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...
 

Field Documentation

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 Documentation

typedef void(* D4D_SLDR_ON_CHANGE)(D4D_OBJECT *pThis)

Type definition of slider on change callback function.

Parameters
pThis- pointer to slider instance that call the function
Returns
none
Note
This is slider call back function used to notify user application about On Change slider event.

Definition at line 166 of file d4d_slider.h.

Type definition of slider value type - this is standard type used for slider data input.

Definition at line 148 of file d4d_slider.h.