Functions | |
void | D4D_GaugSetValue (D4D_OBJECT_PTR pThis, D4D_GAUGE_VALUE value) |
The function sets the new value of gauge. More... | |
D4D_GAUGE_VALUE | D4D_GaugGetValue (D4D_OBJECT_PTR pThis) |
The function gets the current value of gauge. More... | |
void | D4D_GaugSetLimits (D4D_OBJECT_PTR pThis, const D4D_GAUGE_LIMITS *pLimits) |
The function sets the new limits values of gauge. More... | |
void | D4D_GaugGetLimits (D4D_OBJECT_PTR pThis, D4D_GAUGE_LIMITS *pLimits) |
The function gets the values of gauge limit structure. More... | |
void | D4D_GaugSetDir (D4D_OBJECT_PTR pThis, D4D_TREND trend) |
The function set the trend/direction of gauge. More... | |
D4D_TREND | D4D_GaugGetDir (D4D_OBJECT_PTR pThis) |
The function gets the trend/direction of gauge object. More... | |
This section specifies the exact usage for each API function.
D4D_TREND D4D_GaugGetDir | ( | D4D_OBJECT_PTR | pThis | ) |
The function gets the trend/direction of gauge object.
pThis | - pointer to gauge object |
Definition at line 348 of file d4d_gauge.c.
void D4D_GaugGetLimits | ( | D4D_OBJECT_PTR | pThis, |
D4D_GAUGE_LIMITS * | pLimits | ||
) |
The function gets the values of gauge limit structure.
pThis | - pointer to gauge object |
pLimits | - the pointer to limit structure where will be stored the data of current using limit structure |
Definition at line 312 of file d4d_gauge.c.
D4D_GAUGE_VALUE D4D_GaugGetValue | ( | D4D_OBJECT_PTR | pThis | ) |
The function gets the current value of gauge.
pThis | - pointer to gauge object |
Definition at line 260 of file d4d_gauge.c.
void D4D_GaugSetDir | ( | D4D_OBJECT_PTR | pThis, |
D4D_TREND | trend | ||
) |
The function set the trend/direction of gauge.
pThis | - pointer to gauge object |
trend | - the new trend of gauge |
Definition at line 325 of file d4d_gauge.c.
void D4D_GaugSetLimits | ( | D4D_OBJECT_PTR | pThis, |
const D4D_GAUGE_LIMITS * | pLimits | ||
) |
The function sets the new limits values of gauge.
pThis | - pointer to gauge object |
pLimits | - pointer to defined gauge limits structure |
Definition at line 274 of file d4d_gauge.c.
void D4D_GaugSetValue | ( | D4D_OBJECT_PTR | pThis, |
D4D_GAUGE_VALUE | value | ||
) |
The function sets the new value of gauge.
pThis | - pointer to gauge object |
value | - input value, MUST fit into the range sets by D4D_GaugSetLimits |
Definition at line 234 of file d4d_gauge.c.