21 VIntSliderEdit(
int min = 0,
int max = 10,
int value = 3,
bool rangeChangable =
false);
A wrapper for a QLineEdit that handles user input of type int, and provides Vapor's standard setters,...
A wrapper for a VSlider and a VIntLineEdit, that provides synchronization between the two widgets,...
void SetMinimum(int min)
Set the minimum allowable value for the VSlider and VIntLineEdit.
void SetValue(int value)
Set the current value displayed by the slider and line edit.
virtual void ShowContextMenu(const QPoint &pos)
Show the context menu options for the entire widget, triggered on right-click.
void SetMaximum(int max)
Set the maximum allowable value for the VSlider and VIntLineEdit.
int GetValue() const
Get the value associated with the VSlider and VIntLineEdit.
virtual void SetSciNotation(bool sciNotation)
Set whether the VIntLineEdit is being displayed with scientific notation.
virtual int GetNumDigits() const
Get the number of digits displayed by the VIntLineEdit.
void MaximumChanged(int max)
VIntSliderEditMenu * _menu
void ValueChangedIntermediate(int value)
int GetMaximum() const
Get the maximum allowable value for the VSlider and VIntLineEdit.
void DynamicUpdateChanged(bool enabled)
void MinimumChanged(int min)
int GetMinimum() const
Get the minimum allowable value for the VSlider and VIntLineEdit.
virtual bool GetSciNotation() const
Get whether the VIntLineEdit is being displayed with scientific notation.
void _sliderChanged(int value)
void _sliderChangedIntermediate(int value)
void AllowUserRange(bool allowed=true)
virtual void _makeContextMenu()
void AllowDynamicUpdate() const
Allow the toggling of dynamic updating widgets.
virtual void SetDynamicUpdate(bool enabled)
Set the dynamic update menu item's toggle state.
VIntSliderEdit(int min=0, int max=10, int value=3, bool rangeChangable=false)
virtual void SetNumDigits(int numDigits)
Set the number of digits displayed by the VIntLineEdit.
void ValueChanged(int value)
An interface class that needs to be reimplemented to support the synchronization of a VSlider and a n...