123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422 |
- /*=========================================================================
- Library: CTK
-
- Copyright (c) 2010 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.commontk.org/LICENSE
- 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 "ctkSliderSpinBoxWidget.h"
- #include "ui_ctkSliderSpinBoxWidget.h"
- //-----------------------------------------------------------------------------
- namespace
- {
- bool equal(double v1, double v2)
- {
- return qAbs(v1 - v2) < 0.0001;
- }
- }
- //-----------------------------------------------------------------------------
- class ctkSliderSpinBoxWidgetPrivate: public ctkPrivate<ctkSliderSpinBoxWidget>,
- public Ui_ctkSliderSpinBoxWidget
- {
- public:
- ctkSliderSpinBoxWidgetPrivate();
- void updateSpinBoxWidth();
- int synchronizedSpinBoxWidth()const;
- void synchronizeSiblingSpinBox(int newWidth);
- bool Tracking;
- bool Changing;
- double ValueBeforeChange;
- bool AutoSpinBoxWidth;
- };
- // --------------------------------------------------------------------------
- ctkSliderSpinBoxWidgetPrivate::ctkSliderSpinBoxWidgetPrivate()
- {
- this->Tracking = true;
- this->Changing = false;
- this->ValueBeforeChange = 0.;
- this->AutoSpinBoxWidth = true;
- }
- // --------------------------------------------------------------------------
- void ctkSliderSpinBoxWidgetPrivate::updateSpinBoxWidth()
- {
- int spinBoxWidth = this->synchronizedSpinBoxWidth();
- if (this->AutoSpinBoxWidth)
- {
- this->SpinBox->setMinimumWidth(spinBoxWidth);
- }
- else
- {
- this->SpinBox->setMinimumWidth(0);
- }
- this->synchronizeSiblingSpinBox(spinBoxWidth);
- }
- // --------------------------------------------------------------------------
- int ctkSliderSpinBoxWidgetPrivate::synchronizedSpinBoxWidth()const
- {
- CTK_P(const ctkSliderSpinBoxWidget);
- int maxWidth = this->SpinBox->sizeHint().width();
- if (!p->parent())
- {
- return maxWidth;
- }
- QList<ctkSliderSpinBoxWidget*> siblings =
- p->parent()->findChildren<ctkSliderSpinBoxWidget*>();
- foreach(ctkSliderSpinBoxWidget* sibling, siblings)
- {
- maxWidth = qMax(maxWidth, sibling->ctk_d()->SpinBox->sizeHint().width());
- }
- return maxWidth;
- }
- // --------------------------------------------------------------------------
- void ctkSliderSpinBoxWidgetPrivate::synchronizeSiblingSpinBox(int width)
- {
- CTK_P(const ctkSliderSpinBoxWidget);
- QList<ctkSliderSpinBoxWidget*> siblings =
- p->parent()->findChildren<ctkSliderSpinBoxWidget*>();
- foreach(ctkSliderSpinBoxWidget* sibling, siblings)
- {
- if (sibling != p && sibling->isAutoSpinBoxWidth())
- {
- sibling->ctk_d()->SpinBox->setMinimumWidth(width);
- }
- }
- }
- // --------------------------------------------------------------------------
- ctkSliderSpinBoxWidget::ctkSliderSpinBoxWidget(QWidget* _parent) : Superclass(_parent)
- {
- CTK_INIT_PRIVATE(ctkSliderSpinBoxWidget);
- CTK_D(ctkSliderSpinBoxWidget);
-
- d->setupUi(this);
- d->Slider->setMaximum(d->SpinBox->maximum());
- d->Slider->setMinimum(d->SpinBox->minimum());
- this->connect(d->Slider, SIGNAL(valueChanged(double)), d->SpinBox, SLOT(setValue(double)));
- 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);
- }
- // --------------------------------------------------------------------------
- double ctkSliderSpinBoxWidget::minimum()const
- {
- CTK_D(const ctkSliderSpinBoxWidget);
- Q_ASSERT(equal(d->SpinBox->minimum(),d->Slider->minimum()));
- return d->Slider->minimum();
- }
- // --------------------------------------------------------------------------
- double ctkSliderSpinBoxWidget::maximum()const
- {
- CTK_D(const ctkSliderSpinBoxWidget);
- Q_ASSERT(equal(d->SpinBox->maximum(),d->Slider->maximum()));
- return d->Slider->maximum();
- }
- // --------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::setMinimum(double min)
- {
- CTK_D(ctkSliderSpinBoxWidget);
- d->SpinBox->setMinimum(min);
- // SpinBox can truncate min (depending on decimals).
- // use Spinbox's min to set Slider's min
- d->Slider->setMinimum(d->SpinBox->minimum());
- Q_ASSERT(equal(d->SpinBox->minimum(),d->Slider->minimum()));
- d->updateSpinBoxWidth();
- }
- // --------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::setMaximum(double max)
- {
- CTK_D(ctkSliderSpinBoxWidget);
- d->SpinBox->setMaximum(max);
- // SpinBox can truncate max (depending on decimals).
- // use Spinbox's max to set Slider's max
- d->Slider->setMaximum(d->SpinBox->maximum());
- Q_ASSERT(equal(d->SpinBox->maximum(), d->Slider->maximum()));
- d->updateSpinBoxWidth();
- }
- // --------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::setRange(double min, double max)
- {
- CTK_D(ctkSliderSpinBoxWidget);
-
- d->SpinBox->setRange(min, max);
- // 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(equal(d->SpinBox->minimum(), d->Slider->minimum()));
- Q_ASSERT(equal(d->SpinBox->maximum(), d->Slider->maximum()));
- d->updateSpinBoxWidth();
- }
- /*
- // --------------------------------------------------------------------------
- double ctkSliderSpinBoxWidget::sliderPosition()const
- {
- return ctk_d()->Slider->sliderPosition();
- }
- // --------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::setSliderPosition(double position)
- {
- ctk_d()->Slider->setSliderPosition(position);
- }
- */
- /*
- // --------------------------------------------------------------------------
- double ctkSliderSpinBoxWidget::previousSliderPosition()
- {
- return ctk_d()->Slider->previousSliderPosition();
- }
- */
- // --------------------------------------------------------------------------
- double ctkSliderSpinBoxWidget::value()const
- {
- CTK_D(const ctkSliderSpinBoxWidget);
- Q_ASSERT(equal(d->Slider->value(), d->SpinBox->value()));
- return d->Changing ? d->ValueBeforeChange : d->Slider->value();
- }
- // --------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::setValue(double _value)
- {
- CTK_D(ctkSliderSpinBoxWidget);
- // 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());
- Q_ASSERT(equal(d->Slider->value(), d->SpinBox->value()));
- // restore the prop
- d->Changing = isChanging;
- }
- // --------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::startChanging()
- {
- CTK_D(ctkSliderSpinBoxWidget);
- if (d->Tracking)
- {
- return;
- }
- d->Changing = true;
- d->ValueBeforeChange = this->value();
- }
- // --------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::stopChanging()
- {
- CTK_D(ctkSliderSpinBoxWidget);
- if (d->Tracking)
- {
- return;
- }
- d->Changing = false;
- if (qAbs(this->value() - d->ValueBeforeChange) > (this->singleStep() * 0.000000001))
- {
- emit this->valueChanged(this->value());
- }
- }
- // --------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::changeValue(double newValue)
- {
- CTK_D(ctkSliderSpinBoxWidget);
- //if (d->Tracking)
- {
- emit this->valueIsChanging(newValue);
- }
- if (!d->Changing)
- {
- emit this->valueChanged(newValue);
- }
- }
- // --------------------------------------------------------------------------
- bool ctkSliderSpinBoxWidget::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 ctkSliderSpinBoxWidget::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 ctkSliderSpinBoxWidget::singleStep()const
- {
- CTK_D(const ctkSliderSpinBoxWidget);
- Q_ASSERT(equal(d->Slider->singleStep(), d->SpinBox->singleStep()));
- return d->Slider->singleStep();
- }
- // --------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::setSingleStep(double step)
- {
- CTK_D(ctkSliderSpinBoxWidget);
- d->SpinBox->setSingleStep(step);
- d->Slider->setSingleStep(d->SpinBox->singleStep());
- Q_ASSERT(equal(d->Slider->singleStep(), d->SpinBox->singleStep()));
- }
- // --------------------------------------------------------------------------
- int ctkSliderSpinBoxWidget::decimals()const
- {
- CTK_D(const ctkSliderSpinBoxWidget);
- return d->SpinBox->decimals();
- }
- // --------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::setDecimals(int newDecimals)
- {
- CTK_D(ctkSliderSpinBoxWidget);
- 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->setMinimum(d->SpinBox->minimum());
- d->Slider->setMaximum(d->SpinBox->maximum());
- }
- // --------------------------------------------------------------------------
- QString ctkSliderSpinBoxWidget::prefix()const
- {
- CTK_D(const ctkSliderSpinBoxWidget);
- return d->SpinBox->prefix();
- }
- // --------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::setPrefix(const QString& newPrefix)
- {
- CTK_D(ctkSliderSpinBoxWidget);
- d->SpinBox->setPrefix(newPrefix);
- }
- // --------------------------------------------------------------------------
- QString ctkSliderSpinBoxWidget::suffix()const
- {
- CTK_D(const ctkSliderSpinBoxWidget);
- return d->SpinBox->suffix();
- }
- // --------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::setSuffix(const QString& newSuffix)
- {
- CTK_D(ctkSliderSpinBoxWidget);
- d->SpinBox->setSuffix(newSuffix);
- }
- // --------------------------------------------------------------------------
- double ctkSliderSpinBoxWidget::tickInterval()const
- {
- CTK_D(const ctkSliderSpinBoxWidget);
- return d->Slider->tickInterval();
- }
- // --------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::setTickInterval(double ti)
- {
- CTK_D(ctkSliderSpinBoxWidget);
- d->Slider->setTickInterval(ti);
- }
- // -------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::reset()
- {
- this->setValue(0.);
- }
- // -------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::setSpinBoxAlignment(Qt::Alignment alignment)
- {
- return ctk_d()->SpinBox->setAlignment(alignment);
- }
- // -------------------------------------------------------------------------
- Qt::Alignment ctkSliderSpinBoxWidget::spinBoxAlignment()const
- {
- return ctk_d()->SpinBox->alignment();
- }
- // -------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::setTracking(bool enable)
- {
- CTK_D(ctkSliderSpinBoxWidget);
- d->Tracking = enable;
- }
- // -------------------------------------------------------------------------
- bool ctkSliderSpinBoxWidget::hasTracking()const
- {
- CTK_D(const ctkSliderSpinBoxWidget);
- return d->Tracking;
- }
- // -------------------------------------------------------------------------
- bool ctkSliderSpinBoxWidget::isAutoSpinBoxWidth()const
- {
- CTK_D(const ctkSliderSpinBoxWidget);
- return d->AutoSpinBoxWidth;
- }
- // -------------------------------------------------------------------------
- void ctkSliderSpinBoxWidget::setAutoSpinBoxWidth(bool autoWidth)
- {
- CTK_D(ctkSliderSpinBoxWidget);
- d->AutoSpinBoxWidth = autoWidth;
- d->updateSpinBoxWidth();
- }
|