#include <guienvironment.h>
Public Types | |
| enum | GUI_CONTROL_TYPE { GUI_TYPE_TEXTCONTROL, GUI_TYPE_CHECKBOX, GUI_TYPE_SLIDER, GUI_TYPE_SPINCONTROL, GUI_TYPE_COMBOBOX, GUI_TYPE_BUTTON } |
| GUI control type. More... | |
Public Member Functions | |
| GUIParamInfo () | |
| Constructor. | |
| GUIParamInfo (const Parameter::ParameterIdentificator &_paramID, GUI_CONTROL_TYPE _type) | |
| Constructor. | |
| GUIParamInfo (const GUIParamInfo &guiPI) | |
| Copy constructor. | |
Public Attributes | |
| Parameter::ParameterIdentificator | paramID |
| Parameter identificator. | |
| enum VRUT::GUIEnvironment::GUIParamInfo::GUI_CONTROL_TYPE | type |
| double | minval |
| Min value (if applicable). | |
| double | maxval |
| Max value (if applicable). | |
| double | step |
| Step value (if applicable). | |
| wxArrayString | values |
| List of selectable values (if applicable). | |
Definition at line 125 of file guienvironment.h.
GUI control type.
Definition at line 130 of file guienvironment.h.
00131 { 00132 GUI_TYPE_TEXTCONTROL, 00133 GUI_TYPE_CHECKBOX, 00134 GUI_TYPE_SLIDER, 00135 GUI_TYPE_SPINCONTROL, 00136 //TODO: implemented in wxWidgets 2.9.0 00137 // GUI_TYPE_SPINCONTROL_DOUBLE, ///<Spin control for floating point values 00138 GUI_TYPE_COMBOBOX, 00139 GUI_TYPE_BUTTON 00140 } type;
| VRUT::GUIEnvironment::GUIParamInfo::GUIParamInfo | ( | ) | [inline] |
| VRUT::GUIEnvironment::GUIParamInfo::GUIParamInfo | ( | const Parameter::ParameterIdentificator & | _paramID, | |
| GUI_CONTROL_TYPE | _type | |||
| ) | [inline] |
| VRUT::GUIEnvironment::GUIParamInfo::GUIParamInfo | ( | const GUIParamInfo & | guiPI | ) | [inline] |
| wxArrayString VRUT::GUIEnvironment::GUIParamInfo::values |
1.5.5