Inherits QWidget.
|
| SliderDoubleCombo (QWidget *parent=nullptr) |
|
void | resetLimits () |
|
void | setValue (double value) |
| Sets the current value.
|
|
void | setValueSlider (double value) |
| Sets the current value.
|
|
Q_REQUIRED_RESULT double | value () const |
| Return the current value.
|
|
void | setMinimum (double min) |
| Sets the hard minimum value selectable via the spinbox.
|
|
Q_REQUIRED_RESULT double | minimum () const |
| Returns the hard minimum value selectable via the spinbox.
|
|
void | setMaximum (double max) |
| Sets the hard maximum value selectable via the spinbox.
|
|
Q_REQUIRED_RESULT double | maximum () const |
| Returns the hard maximum value selectable via the spinbox.
|
|
void | setRange (double min, double max) |
| Sets the hard minimum and maximum values selectable via the spinbox.
|
|
void | setSoftMinimum (double min) |
| Sets the soft minimum value selectable via the slider.
|
|
Q_REQUIRED_RESULT double | softMinimum () const |
| Returns the soft minimum value selectable via the slider.
|
|
void | setSoftMaximum (double max) |
| Sets the soft maximum value selectable via the slider.
|
|
Q_REQUIRED_RESULT double | softMaximum () const |
| Returns the soft maximum value selectable via the slider.
|
|
Q_REQUIRED_RESULT bool | hasSoftMinimum () const |
| Returns true if a soft minimum is set for this control.
|
|
Q_REQUIRED_RESULT bool | hasSoftMaximum () const |
| Returns true if a soft maximum is set for this control.
|
|
void | setSoftRange (double min, double max) |
| Sets the soft minimum and maximum values selectable via the slider.
|
|
void | setNumSteps (int steps) |
| Sets the number of steps, which are used when changing value via the arrow keys.
|
|
Q_REQUIRED_RESULT int | numSteps () const |
| Returns the number of steps.
|
|
void | setDecimals (int decimals) |
| Sets the number of decimals the value is returned with.
|
|
Q_REQUIRED_RESULT int | decimals () const |
| Returns the number of decimals the value is returned with.
|
|
void | setCurveMidpoint (double midpoint) |
|
Q_REQUIRED_RESULT double | curveMidpoint () const |
| Returns the current curve midpoint setting.
|
|
DoubleSpinBox * | spinbox () const |
| Returns the underlying spinbox.
|
|
SliderDouble * | slider () const |
| Returns the underlying slider.
|
|
This class provide a QWidget which contains a spinbox and a slider