123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504 |
- /*=========================================================================
- 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.
- =========================================================================*/
- // Qt includes
- #include <QDebug>
- #include <QMouseEvent>
- // CTK includes
- #include "ctkSliderWidget.h"
- #include "ui_ctkSliderWidget.h"
- // STD includes
- #include <cmath>
- //-----------------------------------------------------------------------------
- class ctkSliderWidgetPrivate: public Ui_ctkSliderWidget
- {
- Q_DECLARE_PUBLIC(ctkSliderWidget);
- protected:
- ctkSliderWidget* const q_ptr;
- public:
- ctkSliderWidgetPrivate(ctkSliderWidget& object);
- void updateSpinBoxWidth();
- int synchronizedSpinBoxWidth()const;
- void synchronizeSiblingSpinBox(int newWidth);
- bool equal(double spinBoxValue, double sliderValue)const
- {
- return qAbs(sliderValue - spinBoxValue) < std::pow(10., -this->SpinBox->decimals());
- }
- bool Tracking;
- bool Changing;
- double ValueBeforeChange;
- bool AutoSpinBoxWidth;
- };
- // --------------------------------------------------------------------------
- ctkSliderWidgetPrivate::ctkSliderWidgetPrivate(ctkSliderWidget& object)
- :q_ptr(&object)
- {
- this->Tracking = true;
- this->Changing = false;
- this->ValueBeforeChange = 0.;
- this->AutoSpinBoxWidth = true;
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidgetPrivate::updateSpinBoxWidth()
- {
- int spinBoxWidth = this->synchronizedSpinBoxWidth();
- if (this->AutoSpinBoxWidth)
- {
- this->SpinBox->setMinimumWidth(spinBoxWidth);
- }
- else
- {
- this->SpinBox->setMinimumWidth(0);
- }
- this->synchronizeSiblingSpinBox(spinBoxWidth);
- }
- // --------------------------------------------------------------------------
- int ctkSliderWidgetPrivate::synchronizedSpinBoxWidth()const
- {
- Q_Q(const ctkSliderWidget);
- int maxWidth = this->SpinBox->sizeHint().width();
- if (!q->parent())
- {
- return maxWidth;
- }
- QList<ctkSliderWidget*> siblings =
- q->parent()->findChildren<ctkSliderWidget*>();
- foreach(ctkSliderWidget* sibling, siblings)
- {
- maxWidth = qMax(maxWidth, sibling->d_func()->SpinBox->sizeHint().width());
- }
- return maxWidth;
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidgetPrivate::synchronizeSiblingSpinBox(int width)
- {
- Q_Q(const ctkSliderWidget);
- QList<ctkSliderWidget*> siblings =
- q->parent()->findChildren<ctkSliderWidget*>();
- foreach(ctkSliderWidget* sibling, siblings)
- {
- if (sibling != q && sibling->isAutoSpinBoxWidth())
- {
- sibling->d_func()->SpinBox->setMinimumWidth(width);
- }
- }
- }
- // --------------------------------------------------------------------------
- ctkSliderWidget::ctkSliderWidget(QWidget* _parent) : Superclass(_parent)
- , d_ptr(new ctkSliderWidgetPrivate(*this))
- {
- Q_D(ctkSliderWidget);
-
- d->setupUi(this);
- d->Slider->setMaximum(d->SpinBox->maximum());
- d->Slider->setMinimum(d->SpinBox->minimum());
- this->connect(d->SpinBox, SIGNAL(valueChanged(double)), d->Slider, SLOT(setValue(double)));
- //this->connect(d->Slider, SIGNAL(valueChanged(double)), SIGNAL(valueChanged(double)));
- this->connect(d->Slider, SIGNAL(sliderPressed()), this, SLOT(startChanging()));
- this->connect(d->Slider, SIGNAL(sliderReleased()), this, SLOT(stopChanging()));
- this->connect(d->Slider, SIGNAL(valueChanged(double)), this, SLOT(changeValue(double)));
- d->SpinBox->installEventFilter(this);
- }
- // --------------------------------------------------------------------------
- ctkSliderWidget::~ctkSliderWidget()
- {
- }
- // --------------------------------------------------------------------------
- double ctkSliderWidget::minimum()const
- {
- Q_D(const ctkSliderWidget);
- Q_ASSERT(d->equal(d->SpinBox->minimum(),d->Slider->minimum()));
- return d->Slider->minimum();
- }
- // --------------------------------------------------------------------------
- double ctkSliderWidget::maximum()const
- {
- Q_D(const ctkSliderWidget);
- Q_ASSERT(d->equal(d->SpinBox->maximum(),d->Slider->maximum()));
- return d->Slider->maximum();
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidget::setMinimum(double min)
- {
- Q_D(ctkSliderWidget);
- bool wasBlocked = d->SpinBox->blockSignals(true);
- d->SpinBox->setMinimum(min);
- d->SpinBox->blockSignals(wasBlocked);
- // SpinBox can truncate min (depending on decimals).
- // use Spinbox's min to set Slider's min
- d->Slider->setMinimum(d->SpinBox->minimum());
- Q_ASSERT(d->equal(d->SpinBox->minimum(),d->Slider->minimum()));
- Q_ASSERT(d->equal(d->SpinBox->value(),d->Slider->value()));
- Q_ASSERT(d->equal(d->SpinBox->maximum(),d->Slider->maximum()));
- d->updateSpinBoxWidth();
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidget::setMaximum(double max)
- {
- Q_D(ctkSliderWidget);
- bool wasBlocked = d->SpinBox->blockSignals(true);
- d->SpinBox->setMaximum(max);
- d->SpinBox->blockSignals(wasBlocked);
- // SpinBox can truncate max (depending on decimals).
- // use Spinbox's max to set Slider's max
- d->Slider->setMaximum(d->SpinBox->maximum());
- Q_ASSERT(d->equal(d->SpinBox->minimum(),d->Slider->minimum()));
- Q_ASSERT(d->equal(d->SpinBox->value(),d->Slider->value()));
- Q_ASSERT(d->equal(d->SpinBox->maximum(),d->Slider->maximum()));
- d->updateSpinBoxWidth();
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidget::setRange(double min, double max)
- {
- Q_D(ctkSliderWidget);
-
- bool wasBlocked = d->SpinBox->blockSignals(true);
- d->SpinBox->setRange(min, max);
- d->SpinBox->blockSignals(wasBlocked);
-
- // SpinBox can truncate the range (depending on decimals).
- // use Spinbox's range to set Slider's range
- d->Slider->setRange(d->SpinBox->minimum(), d->SpinBox->maximum());
- Q_ASSERT(d->equal(d->SpinBox->minimum(),d->Slider->minimum()));
- Q_ASSERT(d->equal(d->SpinBox->value(),d->Slider->value()));
- Q_ASSERT(d->equal(d->SpinBox->maximum(),d->Slider->maximum()));
- d->updateSpinBoxWidth();
- }
- /*
- // --------------------------------------------------------------------------
- double ctkSliderWidget::sliderPosition()const
- {
- return d->Slider->sliderPosition();
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidget::setSliderPosition(double position)
- {
- d->Slider->setSliderPosition(position);
- }
- */
- /*
- // --------------------------------------------------------------------------
- double ctkSliderWidget::previousSliderPosition()
- {
- return d->Slider->previousSliderPosition();
- }
- */
- // --------------------------------------------------------------------------
- double ctkSliderWidget::value()const
- {
- Q_D(const ctkSliderWidget);
- Q_ASSERT(d->equal(d->SpinBox->value(), d->Slider->value()));
- return d->Changing ? d->ValueBeforeChange : d->Slider->value();
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidget::setValue(double _value)
- {
- Q_D(ctkSliderWidget);
- // disable the tracking temporally to emit the
- // signal valueChanged if changeValue() is called
- bool isChanging = d->Changing;
- d->Changing = false;
- d->SpinBox->setValue(_value);
- // Why do we need to set the value to the slider ?
- //d->Slider->setValue(d->SpinBox->value());
- //double spinBoxValue = d->SpinBox->value();
- Q_ASSERT(d->equal(d->SpinBox->minimum(),d->Slider->minimum()));
- Q_ASSERT(d->equal(d->SpinBox->value(),d->Slider->value()));
- Q_ASSERT(d->equal(d->SpinBox->maximum(),d->Slider->maximum()));
- // restore the prop
- d->Changing = isChanging;
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidget::startChanging()
- {
- Q_D(ctkSliderWidget);
- if (d->Tracking)
- {
- return;
- }
- d->Changing = true;
- d->ValueBeforeChange = this->value();
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidget::stopChanging()
- {
- Q_D(ctkSliderWidget);
- if (d->Tracking)
- {
- return;
- }
- d->Changing = false;
- if (qAbs(this->value() - d->ValueBeforeChange) > (this->singleStep() * 0.000000001))
- {
- emit this->valueChanged(this->value());
- }
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidget::changeValue(double newValue)
- {
- Q_D(ctkSliderWidget);
-
- bool wasBlocked = d->SpinBox->blockSignals(true);
- d->SpinBox->setValue(newValue);
- d->SpinBox->blockSignals(wasBlocked);
- Q_ASSERT(d->equal(d->SpinBox->value(), d->Slider->value()));
-
- if (!d->Tracking)
- {
- emit this->valueIsChanging(newValue);
- }
- if (!d->Changing)
- {
- emit this->valueChanged(newValue);
- }
- }
- // --------------------------------------------------------------------------
- bool ctkSliderWidget::eventFilter(QObject *obj, QEvent *event)
- {
- if (event->type() == QEvent::MouseButtonPress)
- {
- QMouseEvent *mouseEvent = static_cast<QMouseEvent *>(event);
- if (mouseEvent->button() & Qt::LeftButton)
- {
- this->startChanging();
- }
- }
- else if (event->type() == QEvent::MouseButtonRelease)
- {
- QMouseEvent *mouseEvent = static_cast<QMouseEvent *>(event);
- if (mouseEvent->button() & Qt::LeftButton)
- {
- // here we might prevent ctkSliderWidget::stopChanging
- // from sending a valueChanged() event as the spinbox might
- // send a valueChanged() after eventFilter() is done.
- this->stopChanging();
- }
- }
- // standard event processing
- return this->Superclass::eventFilter(obj, event);
- }
- // --------------------------------------------------------------------------
- double ctkSliderWidget::singleStep()const
- {
- Q_D(const ctkSliderWidget);
- Q_ASSERT(d->equal(d->SpinBox->singleStep(), d->Slider->singleStep()));
- return d->Slider->singleStep();
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidget::setSingleStep(double step)
- {
- Q_D(ctkSliderWidget);
- d->SpinBox->setSingleStep(step);
- d->Slider->setSingleStep(d->SpinBox->singleStep());
- Q_ASSERT(d->equal(d->SpinBox->minimum(),d->Slider->minimum()));
- Q_ASSERT(d->equal(d->SpinBox->value(),d->Slider->value()));
- Q_ASSERT(d->equal(d->SpinBox->maximum(),d->Slider->maximum()));
- }
- // --------------------------------------------------------------------------
- double ctkSliderWidget::pageStep()const
- {
- Q_D(const ctkSliderWidget);
- return d->Slider->pageStep();
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidget::setPageStep(double step)
- {
- Q_D(ctkSliderWidget);
- d->Slider->setPageStep(step);
- }
- // --------------------------------------------------------------------------
- int ctkSliderWidget::decimals()const
- {
- Q_D(const ctkSliderWidget);
- return d->SpinBox->decimals();
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidget::setDecimals(int newDecimals)
- {
- Q_D(ctkSliderWidget);
- d->SpinBox->setDecimals(newDecimals);
- // The number of decimals can change the range values
- // i.e. 50.55 with 2 decimals -> 51 with 0 decimals
- // As the SpinBox range change doesn't fire signals,
- // we have to do the synchronization manually here
- d->Slider->setRange(d->SpinBox->minimum(), d->SpinBox->maximum());
- Q_ASSERT(d->equal(d->SpinBox->minimum(),d->Slider->minimum()));
- Q_ASSERT(d->equal(d->SpinBox->value(),d->Slider->value()));
- Q_ASSERT(d->equal(d->SpinBox->maximum(),d->Slider->maximum()));
- }
- // --------------------------------------------------------------------------
- QString ctkSliderWidget::prefix()const
- {
- Q_D(const ctkSliderWidget);
- return d->SpinBox->prefix();
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidget::setPrefix(const QString& newPrefix)
- {
- Q_D(ctkSliderWidget);
- d->SpinBox->setPrefix(newPrefix);
- #if QT_VERSION < 0x040800
- /// Setting the prefix doesn't recompute the sizehint, do it manually here:
- /// See: http://bugreports.qt.nokia.com/browse/QTBUG-9530
- d->SpinBox->setRange(d->SpinBox->minimum(), d->SpinBox->maximum());
- #endif
- d->updateSpinBoxWidth();
- }
- // --------------------------------------------------------------------------
- QString ctkSliderWidget::suffix()const
- {
- Q_D(const ctkSliderWidget);
- return d->SpinBox->suffix();
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidget::setSuffix(const QString& newSuffix)
- {
- Q_D(ctkSliderWidget);
- d->SpinBox->setSuffix(newSuffix);
- #if QT_VERSION < 0x040800
- /// Setting the suffix doesn't recompute the sizehint, do it manually here:
- /// See: http://bugreports.qt.nokia.com/browse/QTBUG-9530
- d->SpinBox->setRange(d->SpinBox->minimum(), d->SpinBox->maximum());
- #endif
- d->updateSpinBoxWidth();
- }
- // --------------------------------------------------------------------------
- double ctkSliderWidget::tickInterval()const
- {
- Q_D(const ctkSliderWidget);
- return d->Slider->tickInterval();
- }
- // --------------------------------------------------------------------------
- void ctkSliderWidget::setTickInterval(double ti)
- {
- Q_D(ctkSliderWidget);
- d->Slider->setTickInterval(ti);
- }
- // -------------------------------------------------------------------------
- void ctkSliderWidget::reset()
- {
- this->setValue(0.);
- }
- // -------------------------------------------------------------------------
- void ctkSliderWidget::setSpinBoxAlignment(Qt::Alignment alignment)
- {
- Q_D(ctkSliderWidget);
- return d->SpinBox->setAlignment(alignment);
- }
- // -------------------------------------------------------------------------
- Qt::Alignment ctkSliderWidget::spinBoxAlignment()const
- {
- Q_D(const ctkSliderWidget);
- return d->SpinBox->alignment();
- }
- // -------------------------------------------------------------------------
- void ctkSliderWidget::setTracking(bool enable)
- {
- Q_D(ctkSliderWidget);
- d->Tracking = enable;
- }
- // -------------------------------------------------------------------------
- bool ctkSliderWidget::hasTracking()const
- {
- Q_D(const ctkSliderWidget);
- return d->Tracking;
- }
- // -------------------------------------------------------------------------
- bool ctkSliderWidget::isAutoSpinBoxWidth()const
- {
- Q_D(const ctkSliderWidget);
- return d->AutoSpinBoxWidth;
- }
- // -------------------------------------------------------------------------
- void ctkSliderWidget::setAutoSpinBoxWidth(bool autoWidth)
- {
- Q_D(ctkSliderWidget);
- d->AutoSpinBoxWidth = autoWidth;
- d->updateSpinBoxWidth();
- }
- // -------------------------------------------------------------------------
- bool ctkSliderWidget::isSpinBoxVisible()const
- {
- Q_D(const ctkSliderWidget);
- return d->SpinBox->isVisibleTo(const_cast<ctkSliderWidget*>(this));
- }
- // -------------------------------------------------------------------------
- void ctkSliderWidget::setSpinBoxVisible(bool visible)
- {
- Q_D(ctkSliderWidget);
- d->SpinBox->setVisible(visible);
- }
- // --------------------------------------------------------------------------
- QDoubleSpinBox* ctkSliderWidget::spinBox()
- {
- Q_D(ctkSliderWidget);
- return d->SpinBox;
- }
|