1 #ifndef OPENMW_NUMERIC_EDIT_BOX_H
2 #define OPENMW_NUMERIC_EDIT_BOX_H
4 #include <MyGUI_EditBox.h>
A variant of the EditBox that only allows integer inputs.
Definition: numericeditbox.hpp:12
EventHandle_ValueChanged eventValueChanged
Definition: numericeditbox.hpp:26
void shutdownOverride()
Definition: numericeditbox.cpp:17
void onEditTextChange(MyGUI::EditBox *sender)
Definition: numericeditbox.cpp:23
void setMinValue(int minValue)
Definition: numericeditbox.cpp:58
MyGUI::delegates::CMultiDelegate1< int > EventHandle_ValueChanged
Definition: numericeditbox.hpp:25
void onKeyLostFocus(MyGUI::Widget *_new)
Definition: numericeditbox.cpp:68
void setValue(int value)
Definition: numericeditbox.cpp:49
void setMaxValue(int maxValue)
Definition: numericeditbox.cpp:63
int mMaxValue
Definition: numericeditbox.hpp:40
int mValue
Definition: numericeditbox.hpp:37
int mMinValue
Definition: numericeditbox.hpp:39
void initialiseOverride()
Definition: numericeditbox.cpp:8
NumericEditBox()
Definition: numericeditbox.hpp:17