|
Odamex
Setting the Standard in Multiplayer Doom
|
Functions | |
| txt_spincontrol_t * | TXT_NewSpinControl (int *value, int min, int max) |
| Create a new spin control widget tracking an integer value. | |
| txt_spincontrol_t * | TXT_NewFloatSpinControl (float *value, float min, float max) |
| Create a new spin control widget tracking a float value. | |
Variables | |
| txt_widget_class_t | txt_spincontrol_class |
| txt_spincontrol_t* TXT_NewFloatSpinControl | ( | float * | value, |
| float | min, | ||
| float | max | ||
| ) |
Create a new spin control widget tracking a float value.
| value | Pointer to the variable containing the value displayed in the widget. |
| min | Minimum value that may be set. |
| max | Maximum value that may be set. |
| txt_spincontrol_t* TXT_NewSpinControl | ( | int * | value, |
| int | min, | ||
| int | max | ||
| ) |
Create a new spin control widget tracking an integer value.
| value | Pointer to the variable containing the value displayed in the widget. |
| min | Minimum value that may be set. |
| max | Maximum value that may be set. |
{
TXT_SpinControlSizeCalc,
TXT_SpinControlDrawer,
TXT_SpinControlKeyPress,
TXT_SpinControlDestructor,
TXT_SpinControlMousePress,
NULL,
}