/*========================================================================= Library: CTK Copyright (c) Kitware Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.txt Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =========================================================================*/ #ifndef __ctkRangeWidget_h #define __ctkRangeWidget_h // Qt includes #include // CTK includes #include #include "ctkWidgetsExport.h" class ctkDoubleRangeSlider; class ctkDoubleSpinBox; class ctkRangeWidgetPrivate; class ctkValueProxy; /// \ingroup Widgets /// /// ctkRangeWidget is a wrapper around a ctkDoubleRangeSlider and 2 QSpinBoxes /// \image html http://www.commontk.org/images/1/14/CtkRangeWidget.png /// \sa ctkSliderSpinBoxWidget, ctkDoubleRangeSlider, QSpinBox class CTK_WIDGETS_EXPORT ctkRangeWidget : public QWidget { Q_OBJECT Q_PROPERTY(int decimals READ decimals WRITE setDecimals) Q_PROPERTY(double singleStep READ singleStep WRITE setSingleStep) Q_PROPERTY(double minimum READ minimum WRITE setMinimum) Q_PROPERTY(double maximum READ maximum WRITE setMaximum) Q_PROPERTY(double minimumValue READ minimumValue WRITE setMinimumValue) Q_PROPERTY(double maximumValue READ maximumValue WRITE setMaximumValue) Q_PROPERTY(QString prefix READ prefix WRITE setPrefix) Q_PROPERTY(QString suffix READ suffix WRITE setSuffix) Q_PROPERTY(double tickInterval READ tickInterval WRITE setTickInterval) Q_PROPERTY(bool autoSpinBoxWidth READ isAutoSpinBoxWidth WRITE setAutoSpinBoxWidth) Q_PROPERTY(Qt::Alignment spinBoxTextAlignment READ spinBoxTextAlignment WRITE setSpinBoxTextAlignment) Q_PROPERTY(Qt::Alignment spinBoxAlignment READ spinBoxAlignment WRITE setSpinBoxAlignment) Q_PROPERTY(bool tracking READ hasTracking WRITE setTracking) Q_PROPERTY(bool symmetricMoves READ symmetricMoves WRITE setSymmetricMoves) Q_PROPERTY(double customSpinBoxesLimitsMin READ customSpinBoxesLimitsMin) Q_PROPERTY(double customSpinBoxesLimitsMax READ customSpinBoxesLimitsMax) public: /// Superclass typedef typedef QWidget Superclass; /// Constructor /// If \li parent is null, ctkRangeWidget will be a top-leve widget /// \note The \li parent can be set later using QWidget::setParent() explicit ctkRangeWidget(QWidget* parent = 0); /// Destructor virtual ~ctkRangeWidget(); /// /// 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. virtual double minimum()const; virtual void setMinimum(double minimum); /// /// 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. virtual double maximum()const; virtual void setMaximum(double maximum); /// Description /// Utility function that set the min/max in once Q_INVOKABLE virtual void setRange(double min, double max); virtual void range(double minimumAndMaximum[2])const; /// /// This property holds the slider and spinbox minimum value. /// ctkRangeWidget forces the value to be within the /// legal range: minimum <= minimumValue <= maximumValue <= maximum. virtual double minimumValue()const; /// /// This property holds the slider and spinbox maximum value. /// ctkRangeWidget forces the value to be within the /// legal range: minimum <= minimumValue <= maximumValue <= maximum. virtual double maximumValue()const; /// /// Utility function that returns both values at the same time /// Returns minimumValue and maximumValue virtual void values(double &minValue, double &maxValue)const; /// /// 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. virtual double singleStep()const; virtual void setSingleStep(double step); /// /// This property holds the precision of the spin box, in decimals. virtual int decimals()const; /// /// 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 virtual QString prefix()const; virtual void setPrefix(const QString& prefix); /// /// 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 virtual QString suffix()const; virtual void setSuffix(const QString& suffix); /// /// 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. virtual double tickInterval()const; virtual void setTickInterval(double ti); /// /// 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 virtual void setSpinBoxAlignment(Qt::Alignment alignment); virtual Qt::Alignment spinBoxAlignment()const; /// /// 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 virtual void setSpinBoxTextAlignment(Qt::Alignment alignment); virtual Qt::Alignment spinBoxTextAlignment()const; /// /// 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. virtual void setTracking(bool enable); virtual bool hasTracking()const; /// /// 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 // ctkRangeWidget siblings. virtual bool isAutoSpinBoxWidth()const; virtual void setAutoSpinBoxWidth(bool autoWidth); /// /// When symmetricMoves is true, moving a handle will move the other handle /// symmetrically, otherwise the handles are independent. False by default virtual bool symmetricMoves()const; virtual void setSymmetricMoves(bool symmetry); /// /// This property sets custom limits for spin boxes. virtual void setCustomSpinBoxesLimits(double min, double max); virtual double customSpinBoxesLimitsMin()const; virtual double customSpinBoxesLimitsMax()const; /// Return the slider of the range widget. /// \sa minimumSpinBox(), maximumSpinBox() virtual ctkDoubleRangeSlider* slider()const; /// Return the minimum spinbox. /// \sa maximumSpinBox(), slider() virtual ctkDoubleSpinBox* minimumSpinBox()const; /// Return the maximum spinbox. /// \sa minimumSpinBox(), slider() virtual ctkDoubleSpinBox* maximumSpinBox()const; /// Set/Get the value proxy of the slider and spinboxes. /// \sa setValueProxy(), valueProxy() virtual void setValueProxy(ctkValueProxy* proxy); virtual ctkValueProxy* valueProxy() const; public Q_SLOTS: /// /// Reset the slider and spinbox to zero (value and position) virtual void reset(); virtual void setMinimumValue(double value); virtual void setMaximumValue(double value); /// /// Utility function that set the min and max values at once virtual void setValues(double minValue, double maxValue); /// Sets how many decimals the spinbox will use for displaying and /// interpreting doubles. virtual void setDecimals(int decimals); Q_SIGNALS: /// Use with care: /// sliderMoved is emitted only when the user moves the slider //void sliderMoved(double position); 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); protected Q_SLOTS: virtual void startChanging(); virtual void stopChanging(); virtual void changeValues(double newMinValue, double newMaxValue); virtual void changeMinimumValue(double value); virtual void changeMaximumValue(double value); /// A spinbox value has been modified, update the slider. virtual void setSliderValues(); virtual void setMinimumToMaximumSpinBox(double minimum); virtual void setMaximumToMinimumSpinBox(double maximum); virtual void onSliderRangeChanged(double min, double max); virtual void onValueProxyAboutToBeModified(); virtual void onValueProxyModified(); protected: virtual bool eventFilter(QObject *obj, QEvent *event); /// can be used to change the slider by a custom one virtual void setSlider(ctkDoubleRangeSlider* slider); protected: QScopedPointer d_ptr; private: Q_DECLARE_PRIVATE(ctkRangeWidget); Q_DISABLE_COPY(ctkRangeWidget); }; #endif