1 /**************************************************************************
2 * Copyright (C) 2010 by Till Theato (root@ttill.de) *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *
18 ***************************************************************************/
21 #include "doubleparameterwidget.h"
22 #include "dragvalue.h"
24 #include <QGridLayout>
27 #include <QToolButton>
31 #include <KLocalizedString>
34 DoubleParameterWidget::DoubleParameterWidget(const QString &name, double value, double min, double max, double defaultValue, const QString &comment, int id, const QString &suffix, int decimals, QWidget *parent) :
37 setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Maximum);
38 QGridLayout *layout = new QGridLayout(this);
39 layout->setContentsMargins(0, 0, 0, 0);
40 layout->setSpacing(0);
42 m_dragVal = new DragValue(name, defaultValue, decimals, min, max, id, suffix, this);
43 layout->addWidget(m_dragVal, 0, 1);
45 if (!comment.isEmpty()) {
48 m_dragVal->setValue(value, false);
49 connect(m_dragVal, SIGNAL(valueChanged(double,bool)), this, SLOT(slotSetValue(double,bool)));
50 connect(m_dragVal, SIGNAL(inTimeline(int)), this, SIGNAL(setInTimeline(int)));
53 DoubleParameterWidget::~DoubleParameterWidget()
58 int DoubleParameterWidget::spinSize()
60 return m_dragVal->spinSize();
63 void DoubleParameterWidget::setSpinSize(int width)
65 m_dragVal->setSpinSize(width);
68 void DoubleParameterWidget::setValue(double value)
70 m_dragVal->blockSignals(true);
71 m_dragVal->setValue(value);
72 m_dragVal->blockSignals(false);
75 void DoubleParameterWidget::slotSetValue(double value, bool final)
78 emit valueChanged(value);
82 double DoubleParameterWidget::getValue()
84 return m_dragVal->value();
87 void DoubleParameterWidget::slotReset()
89 m_dragVal->slotReset();
92 void DoubleParameterWidget::setInTimelineProperty(bool intimeline)
94 m_dragVal->setInTimelineProperty(intimeline);
97 void DoubleParameterWidget::slotShowComment( bool show)
101 #include "doubleparameterwidget.moc"