#include <doubleRangeWidget.h>
|
typedef QWidget | Superclass |
| Superclass typedef.
|
|
|
virtual void | reset () |
| Reset the slider and spinbox to zero (value and position)
|
|
virtual void | setMinimumValue (double value) |
|
virtual void | setMaximumValue (double value) |
|
virtual void | setValues (double minValue, double maxValue) |
| Utility function that set the min and max values at once.
|
|
virtual void | setDecimals (int decimals) |
|
|
void | minimumValueChanged (double value) |
|
void | minimumValueIsChanging (double value) |
|
void | maximumValueChanged (double value) |
|
void | maximumValueIsChanging (double value) |
|
void | valuesChanged (double minValue, double maxValue) |
|
void | rangeChanged (double min, double max) |
|
|
| DoubleRangeWidget (QWidget *parent=0) |
|
virtual | ~DoubleRangeWidget () |
| Destructor.
|
|
virtual double | minimum () const |
|
virtual void | setMinimum (double minimum) |
|
virtual double | maximum () const |
|
virtual void | setMaximum (double maximum) |
|
virtual void | setRange (double min, double max) |
|
virtual void | range (double minimumAndMaximum[2]) const |
|
virtual double | minimumValue () const |
|
virtual double | maximumValue () const |
|
virtual void | values (double &minValue, double &maxValue) const |
|
virtual double | singleStep () const |
|
virtual void | setSingleStep (double step) |
|
virtual int | decimals () const |
| This property holds the precision of the spin box, in decimals.
|
|
virtual QString | prefix () const |
|
virtual void | setPrefix (const QString &prefix) |
|
virtual QString | suffix () const |
|
virtual void | setSuffix (const QString &suffix) |
|
virtual double | tickInterval () const |
|
virtual void | setTickInterval (double ti) |
|
virtual void | setSpinBoxAlignment (Qt::Alignment alignment) |
|
virtual Qt::Alignment | spinBoxAlignment () const |
|
virtual void | setSpinBoxTextAlignment (Qt::Alignment alignment) |
|
virtual Qt::Alignment | spinBoxTextAlignment () const |
|
virtual void | setTracking (bool enable) |
|
virtual bool | hasTracking () const |
|
virtual bool | isAutoSpinBoxWidth () const |
|
virtual void | setAutoSpinBoxWidth (bool autoWidth) |
|
virtual bool | symmetricMoves () const |
|
virtual void | setSymmetricMoves (bool symmetry) |
|
virtual DoubleRangeSlider * | slider () const |
|
virtual DoubleSpinBox * | minimumSpinBox () const |
|
virtual DoubleSpinBox * | maximumSpinBox () const |
|
virtual void | setValueProxy (ValueProxy *proxy) |
|
virtual ValueProxy * | valueProxy () const |
|
|
virtual void | startChanging () |
|
virtual void | stopChanging () |
|
virtual void | changeValues (double newMinValue, double newMaxValue) |
|
virtual void | changeMinimumValue (double value) |
|
virtual void | changeMaximumValue (double value) |
|
virtual void | setSliderValues () |
| A spinbox value has been modified, update the slider.
|
|
virtual void | setMinimumToMaximumSpinBox (double minimum) |
|
virtual void | setMaximumToMinimumSpinBox (double maximum) |
|
virtual void | onSliderRangeChanged (double min, double max) |
|
virtual void | onValueProxyAboutToBeModified () |
|
virtual void | onValueProxyModified () |
|
|
virtual bool | eventFilter (QObject *obj, QEvent *event) |
|
virtual void | setSlider (DoubleRangeSlider *slider) |
| can be used to change the slider by a custom one
|
|
|
int | decimals |
|
double | singleStep |
|
double | minimum |
|
double | maximum |
|
double | minimumValue |
|
double | maximumValue |
|
QString | prefix |
|
QString | suffix |
|
double | tickInterval |
|
bool | autoSpinBoxWidth |
|
Qt::Alignment | spinBoxTextAlignment |
|
Qt::Alignment | spinBoxAlignment |
|
bool | tracking |
|
bool | symmetricMoves |
|
DoubleRangeWidget is a wrapper around a DoubleRangeSlider and 2 QSpinBoxes
- See also
- ctkSliderSpinBoxWidget, DoubleRangeSlider, QSpinBox
◆ DoubleRangeWidget()
DoubleRangeWidget::DoubleRangeWidget |
( |
QWidget * | parent = 0 | ) |
|
|
explicit |
Constructor If
- parent is null, DoubleRangeWidget will be a top-leve widget
- Note
- The
- parent can be set later using QWidget::setParent()
◆ isAutoSpinBoxWidth()
bool DoubleRangeWidget::isAutoSpinBoxWidth |
( |
| ) |
const |
|
virtual |
Set/Get the auto spinbox width When the autoSpinBoxWidth property is on, the width of the SpinBox is set to the same width of the largest QSpinBox of its
◆ maximum()
double DoubleRangeWidget::maximum |
( |
| ) |
const |
|
virtual |
This property holds the sliders and spinbox minimum value. FIXME: Test following specs. When setting this property, the maximum is adjusted if necessary to ensure that the range remains valid. Also the slider's current value is adjusted to be within the new range.
◆ maximumSpinBox()
◆ maximumValue()
double DoubleRangeWidget::maximumValue |
( |
| ) |
const |
|
virtual |
This property holds the slider and spinbox maximum value. RangeWidget forces the value to be within the legal range: minimum <= minimumValue <= maximumValue <= maximum.
◆ minimum()
double DoubleRangeWidget::minimum |
( |
| ) |
const |
|
virtual |
This property holds the sliders and spinbox minimum value. FIXME: Test following specs. When setting this property, the maximum is adjusted if necessary to ensure that the range remains valid. Also the slider's current value is adjusted to be within the new range.
◆ minimumSpinBox()
◆ minimumValue()
double DoubleRangeWidget::minimumValue |
( |
| ) |
const |
|
virtual |
This property holds the slider and spinbox minimum value. RangeWidget forces the value to be within the legal range: minimum <= minimumValue <= maximumValue <= maximum.
◆ minimumValueChanged
void DoubleRangeWidget::minimumValueChanged |
( |
double | value | ) |
|
|
signal |
Use with care: sliderMoved is emitted only when the user moves the slider
◆ prefix()
QString DoubleRangeWidget::prefix |
( |
| ) |
const |
|
virtual |
This property holds the spin box's prefix. The prefix is prepended to the start of the displayed value. Typical use is to display a unit of measurement or a currency symbol
◆ setDecimals
void DoubleRangeWidget::setDecimals |
( |
int | decimals | ) |
|
|
virtualslot |
Sets how many decimals the spinbox will use for displaying and interpreting doubles.
◆ setRange()
void DoubleRangeWidget::setRange |
( |
double | min, |
|
|
double | max ) |
|
virtual |
Description Utility function that set the min/max in once
◆ setSpinBoxAlignment()
void DoubleRangeWidget::setSpinBoxAlignment |
( |
Qt::Alignment | alignment | ) |
|
|
virtual |
This property holds the alignment of the spin boxes. Possible Values are Qt::AlignTop, Qt::AlignBottom, and Qt::AlignVCenter. By default, the alignment is Qt::AlignVCenter
◆ setSpinBoxTextAlignment()
void DoubleRangeWidget::setSpinBoxTextAlignment |
( |
Qt::Alignment | alignment | ) |
|
|
virtual |
This property holds the alignment of the text inside the spin boxes. Possible Values are Qt::AlignLeft, Qt::AlignRight, and Qt::AlignHCenter. By default, the alignment is Qt::AlignLeft
◆ setTracking()
void DoubleRangeWidget::setTracking |
( |
bool | enable | ) |
|
|
virtual |
This property holds whether slider tracking is enabled. If tracking is enabled (the default), the widget emits the valueChanged() signal while the slider or spinbox is being dragged. If tracking is disabled, the widget emits the valueChanged() signal only when the user releases the slider or spinbox.
◆ setValueProxy()
void DoubleRangeWidget::setValueProxy |
( |
ValueProxy * | proxy | ) |
|
|
virtual |
Set/Get the value proxy of the slider and spinboxes.
- See also
- setValueProxy(), valueProxy()
◆ singleStep()
double DoubleRangeWidget::singleStep |
( |
| ) |
const |
|
virtual |
This property holds the single step. The smaller of two natural steps that the slider provides and typically corresponds to the user pressing an arrow key.
◆ slider()
◆ suffix()
QString DoubleRangeWidget::suffix |
( |
| ) |
const |
|
virtual |
This property holds the spin box's suffix. The suffix is appended to the end of the displayed value. Typical use is to display a unit of measurement or a currency symbol
◆ symmetricMoves()
bool DoubleRangeWidget::symmetricMoves |
( |
| ) |
const |
|
virtual |
When symmetricMoves is true, moving a handle will move the other handle symmetrically, otherwise the handles are independent. False by default
◆ tickInterval()
double DoubleRangeWidget::tickInterval |
( |
| ) |
const |
|
virtual |
This property holds the interval between tickmarks. This is a value interval, not a pixel interval. If it is 0, the slider will choose between lineStep() and pageStep(). The default value is 0.
◆ values()
void DoubleRangeWidget::values |
( |
double & | minValue, |
|
|
double & | maxValue ) const |
|
virtual |
Utility function that returns both values at the same time Returns minimumValue and maximumValue
The documentation for this class was generated from the following files:
- C:/Workspace/itom_development_VS2019_Qt5.15.2_x64/itomProject/itom/itomWidgets/doubleRangeWidget.h
- C:/Workspace/itom_development_VS2019_Qt5.15.2_x64/itomProject/itom/itomWidgets/doubleRangeWidget.cpp