Functions | |
void | D4D_SldrSetValue (D4D_OBJECT_PTR pThis, D4D_SLIDER_VALUE value) |
Function Sets the slider value. More... | |
D4D_SLIDER_VALUE | D4D_SldrGetValue (D4D_OBJECT_PTR pThis) |
Function Gets the slider value. More... | |
void | D4D_SldrSetBarColor (D4D_OBJECT_PTR pThis, D4D_COLOR color) |
Function Sets the slider bar color. More... | |
D4D_COLOR | D4D_SldrGetBarColor (D4D_OBJECT_PTR pThis) |
void | D4D_SldrChangeValue (D4D_OBJECT_PTR pThis, D4D_SLIDER_VALUE incr) |
Function change the slider value by signed increment. More... | |
void | D4D_SldrSetLimits (D4D_OBJECT_PTR pThis, const D4D_SLIDER_LIMITS *pLimits) |
Function set the new limits of slider object. More... | |
void | D4D_SldrGetLimits (D4D_OBJECT_PTR pThis, D4D_SLIDER_LIMITS *pLimits) |
Function get the current limits of slider object. More... | |
This section specifies the exact usage for each API function.
void D4D_SldrChangeValue | ( | D4D_OBJECT_PTR | pThis, |
D4D_SLIDER_VALUE | incr | ||
) |
Function change the slider value by signed increment.
pThis | - pointer to the slider object |
incr | - signed increment value |
Definition at line 569 of file d4d_slider.c.
D4D_COLOR D4D_SldrGetBarColor | ( | D4D_OBJECT_PTR | pThis | ) |
Definition at line 555 of file d4d_slider.c.
void D4D_SldrGetLimits | ( | D4D_OBJECT_PTR | pThis, |
D4D_SLIDER_LIMITS * | pLimits | ||
) |
Function get the current limits of slider object.
pThis | - pointer to the slider object |
pLimits | - pointer to limits structure where will be copied current values what slider is using |
Definition at line 606 of file d4d_slider.c.
D4D_SLIDER_VALUE D4D_SldrGetValue | ( | D4D_OBJECT_PTR | pThis | ) |
Function Gets the slider value.
pThis | - pointer to the slider object |
Definition at line 525 of file d4d_slider.c.
void D4D_SldrSetBarColor | ( | D4D_OBJECT_PTR | pThis, |
D4D_COLOR | color | ||
) |
Function Sets the slider bar color.
pThis | - pointer to the slider object |
color | - new slider bar color |
Definition at line 538 of file d4d_slider.c.
void D4D_SldrSetLimits | ( | D4D_OBJECT_PTR | pThis, |
const D4D_SLIDER_LIMITS * | pLimits | ||
) |
Function set the new limits of slider object.
pThis | - pointer to the slider object |
pLimits | - pointer to new limits structure |
Definition at line 586 of file d4d_slider.c.
void D4D_SldrSetValue | ( | D4D_OBJECT_PTR | pThis, |
D4D_SLIDER_VALUE | value | ||
) |
Function Sets the slider value.
pThis | - pointer to the slider object |
value | - new value of slider |
Definition at line 494 of file d4d_slider.c.