| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 | /*=========================================================================  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 <QApplication>#include <QDoubleSpinBox>#include <QLineEdit>#include <QString>#include <QStyle>#include <QStyleOptionSlider>#include <QTimer>// CTK includes#include "ctkDoubleSlider.h"#include "ctkDoubleSpinBox.h"#include "ctkSliderWidget.h"#include "ctkTest.h"// ----------------------------------------------------------------------------class ctkSliderWidgetTester: public QObject{  Q_OBJECTprivate slots:  void testUI();  void testSetMinimum();  void testSetMinimum_data();  void testSetMaximum();  void testSetMaximum_data();  void testDecimalsByValue();  /// This test makes sure the number of decimals increased with Ctrl+'+' does  /// not break the synchronization between the value of the slider and the  /// value of the spinbox.  void testDecimalsByShortcuts();};// ----------------------------------------------------------------------------void ctkSliderWidgetTester::testUI(){  ctkSliderWidget slider;  slider.setMinimum(-100.);  slider.setMaximum(100.);  slider.setValue(26.2110001);  slider.setPrefix("A: ");  slider.show();  QTest::qWaitForWindowShown(&slider);  QObject::connect(&slider, SIGNAL(valueChanged(double)),                   &slider, SLOT(setValue(double)), Qt::QueuedConnection);  //qApp->exec();}// ----------------------------------------------------------------------------void ctkSliderWidgetTester::testSetMinimum(){  ctkSliderWidget slider;  QFETCH(double, minimum);  slider.setMinimum(minimum);  QFETCH(double, expectedMinimum);  QFETCH(double, expectedValue);  QCOMPARE(slider.minimum(), expectedMinimum);  QCOMPARE(slider.value(), expectedValue);}// ----------------------------------------------------------------------------void ctkSliderWidgetTester::testSetMinimum_data(){  QTest::addColumn<double>("minimum");  QTest::addColumn<double>("expectedMinimum");  QTest::addColumn<double>("expectedValue");  QTest::newRow("0. -> 0.]") << 0. << 0. << 0.;  QTest::newRow("10.0123 -> 10.0123]") << 10.0123 << 10.0123 << 10.0123;  QTest::newRow("-10.0123 -> -10.0123]") << -10.0123 << -10.0123 << 0.;  QTest::newRow("200.0123 -> 200.0123]") << 200.0123 << 200.0123 << 200.0123;}// ----------------------------------------------------------------------------void ctkSliderWidgetTester::testSetMaximum(){  ctkSliderWidget slider;  QFETCH(double, maximum);  slider.setMaximum(maximum);  QFETCH(double, expectedMaximum);  QFETCH(double, expectedValue);  QCOMPARE(slider.maximum(), expectedMaximum);  QCOMPARE(slider.value(), expectedValue);}// ----------------------------------------------------------------------------void ctkSliderWidgetTester::testSetMaximum_data(){  QTest::addColumn<double>("maximum");  QTest::addColumn<double>("expectedMaximum");  QTest::addColumn<double>("expectedValue");  QTest::newRow("0. -> 0.") << 0. << 0. << 0.;  QTest::newRow("10.0123 -> 0.") << 10.0123 << 10.0123 << 0.;  QTest::newRow("-10.0123 -> -10.0123") << -10.0123 << -10.0123 << -10.0123;  QTest::newRow("200.0123 -> 0.") << 200.0123 << 200.0123 << 0.;}// ----------------------------------------------------------------------------void ctkSliderWidgetTester::testDecimalsByValue(){  ctkSliderWidget slider;  slider.spinBox()->setDecimalsOption(    ctkDoubleSpinBox::DecimalsByValue | ctkDoubleSpinBox::DecimalsByShortcuts );  slider.setValue(-12.4);  //slider.show();  //QTest::qWaitForWindowShown(&slider);  //qApp->exec();  //QSignalSpy spy(&slider, SIGNAL(decimalsChanged(int)));  slider.setSingleStep(1.3);  slider.setRange(-87.2949, 81.7045);  slider.setValue(-15);  slider.slider()->triggerAction(QAbstractSlider::SliderSingleStepSub);  slider.setSingleStep(1.3);}// ----------------------------------------------------------------------------void ctkSliderWidgetTester::testDecimalsByShortcuts(){  ctkSliderWidget slider;  slider.spinBox()->setDecimalsOption(ctkDoubleSpinBox::DecimalsByShortcuts);  slider.setSingleStep(1.299995422363281);  slider.setPageStep(1.299995422363281);  slider.setRange(-100., 100.);  slider.setValue( -2.145195007324205 );  slider.show();  QTest::qWaitForWindowShown(&slider);  //qApp->exec();  //QSignalSpy spy(&slider, SIGNAL(decimalsChanged(int)));  slider.slider()->triggerAction(QAbstractSlider::SliderSingleStepAdd);  slider.slider()->triggerAction(QAbstractSlider::SliderSingleStepAdd);  slider.slider()->triggerAction(QAbstractSlider::SliderSingleStepAdd);  QTest::keyClick(slider.spinBox(), Qt::Key_Plus, Qt::ControlModifier);  QTest::keyClick(slider.spinBox(), Qt::Key_Plus, Qt::ControlModifier);  QTest::keyClick(slider.spinBox(), Qt::Key_Plus, Qt::ControlModifier);  QCOMPARE(slider.decimals(), 5);}// ----------------------------------------------------------------------------CTK_TEST_MAIN(ctkSliderWidgetTest)#include "moc_ctkSliderWidgetTest.cpp"
 |