void EZ_SetStatusMeterValue(EZ_Widget *smeter, float value)
This function sets the current value of the first quantity displayed on a status meter.
void EZ_SetStatusMeterRange(EZ_Widget *smeter, float from, float to)
This function sets the total range of a status meter.
void EZ_SetStatusMeterForeground(EZ_Widget *smeter, char *color)
This function sets the foreground color a status meter.
void EZ_SetStatusMeterBackground(EZ_Widget *smeter, char *color)
This function sets the background color of a status meter.
void EZ_SetStatusMeterForegroundN(EZ_Widget *smeter, int idx, char *color)
This function sets the foreground color to display the idx
th
quantity.
void EZ_SetStatusMeterRangeN(EZ_Widget *smeter, int idx, float from, float to)
This function sets the range of the idx
th quantity.
void EZ_SetStatusMeterValueN(EZ_Widget *smeter, int idx, float value)
This function sets the value for the idx
th quantity displayed
on a status meter.
void EZ_StopStatusMeter(EZ_Widget *smeter)
This function stops a status meter. A stoped status meter will no longer update itself.
void EZ_StartStatusMeter(EZ_Widget *smeter)
This function restarts a stoped status meter.