Unigine::WidgetSpinBox Class
Header: | #include <UnigineWidgets.h> |
Inherits: | Widget |
This class creates a spin box.
WidgetSpinBox Class
Members
static WidgetSpinBoxPtr create(const Ptr<Gui> & gui, int min = 0, int max = 100, int value = 0)
Constructor. Creates a spinbox with given parameters.Arguments
- const Ptr<Gui> & gui - GUI, to which the spinbox will belong.
- int min - Minimum value.
- int max - Maximum value.
- int value - Initial value.
Ptr<WidgetSpinBox> cast(const Ptr<Widget> & widget)
Casts a WidgetSpinBox out of the Widget instance.Arguments
- const Ptr<Widget> & widget - Pointer to Widget.
Return value
Pointer to WidgetSpinBox.void setMaxExpand(int expand)
Sets the maximum value, up to which the upper limit of the range of the spinbox values can be expanded.Arguments
- int expand - Maximum value, up to which the spinbox upper limit can be raised.
int getMaxExpand()
Returns the current maximum value, up to which the upper limit of the range of the spinbox values can be expanded. The upper limit of the spinbox can be expanded only if the spinbox is attached to an editline with the Gui::ATTACH_MAX_EXPAND flag.Return value
Maximum value, up to which the spinbox upper limit can be raised.void setMaxValue(int value)
Sets a maximum value of the spinbox.Arguments
- int value - Maximum spinbox value.
int getMaxValue()
Returns a maximum value of the spinbox.Return value
Maximum spinbox value.void setMinExpand(int expand)
Sets the minimum value, up to which the lower limit of the range of the spinbox values can be expanded.Arguments
- int expand - Minimum value, up to which the spinbox lower limit can be dropped.
int getMinExpand()
Returns the current minimum value, up to which the lower limit of the range of the spinbox values can be expanded. The lower limit of the spinbox can be expanded only if the spinbox is attached to an editline with the Gui::ATTACH_MIN_EXPAND flag.Return value
Minimum value, up to which the spinbox lower limit can be dropped.void setMinValue(int value)
Sets a minimum value of the spinbox.Arguments
- int value - Minimum spinbox value.
int getMinValue()
Returns a minimum value of the spinbox.Return value
Minimum spinbox value.void setValue(int value)
Updates the current value of the spinbox.Arguments
- int value - New spinbox value.
int getValue()
Returns the current value of the spinbox.Return value
Current spinbox value.int type()
WidgetSpinBox type.Return value
WidgetSpinBox type identifier.Last update: 2018-08-10
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)