]> git.sesse.net Git - kdenlive/blob - src/doubleparameterwidget.cpp
Allow resetting all parameters of the selected keyframe at once
[kdenlive] / src / doubleparameterwidget.cpp
1 /***************************************************************************
2  *   Copyright (C) 2010 by Till Theato (root@ttill.de)                     *
3  *                                                                         *
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.                                   *
8  *                                                                         *
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.                          *
13  *                                                                         *
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  ***************************************************************************/
19
20
21 #include "doubleparameterwidget.h"
22
23 #include <QHBoxLayout>
24 #include <QLabel>
25 #include <QSlider>
26 #include <QSpinBox>
27 #include <QToolButton>
28
29 #include <KIcon>
30 #include <KLocalizedString>
31
32
33 DoubleParameterWidget::DoubleParameterWidget(const QString &name, int value, int min, int max, int defaultValue, const QString suffix, QWidget *parent) :
34         QWidget(parent),
35         m_default(defaultValue)
36 {
37     QHBoxLayout *layout = new QHBoxLayout(this);
38
39     m_name = new QLabel(name, this);
40     layout->addWidget(m_name);
41
42     m_slider = new QSlider(Qt::Horizontal, this);
43     m_slider->setRange(min, max);
44     //m_slider->setPageStep((max - min) / 10);
45     layout->addWidget(m_slider);
46
47     m_spinBox = new QSpinBox(this);
48     m_spinBox->setRange(min, max);
49     m_spinBox->setKeyboardTracking(false);
50     if (!suffix.isEmpty())
51         m_spinBox->setSuffix(suffix);
52     layout->addWidget(m_spinBox);
53
54     QToolButton *reset = new QToolButton(this);
55     reset->setAutoRaise(true);
56     reset->setIcon(KIcon("edit-undo"));
57     reset->setToolTip(i18n("Reset to default value"));
58     layout->addWidget(reset);
59
60     connect(m_slider,  SIGNAL(valueChanged(int)), this, SLOT(setValue(int)));
61     connect(m_spinBox, SIGNAL(valueChanged(int)), this, SLOT(setValue(int)));
62     connect(reset,     SIGNAL(clicked(bool)),     this, SLOT(slotReset()));
63
64     m_spinBox->setValue(value);
65 }
66
67 void DoubleParameterWidget::setValue(int value)
68 {
69     m_slider->blockSignals(true);
70     m_spinBox->blockSignals(true);
71
72     m_slider->setValue(value);
73     m_spinBox->setValue(value);
74
75     m_slider->blockSignals(false);
76     m_spinBox->blockSignals(false);
77
78     emit valueChanged(value);
79 }
80
81 int DoubleParameterWidget::getValue()
82 {
83     return m_spinBox->value();
84 }
85
86 void DoubleParameterWidget::setName(const QString& name)
87 {
88     m_name->setText(name);
89 }
90
91 void DoubleParameterWidget::slotReset()
92 {
93     setValue(m_default);
94 }
95
96 #include "doubleparameterwidget.moc"