]> git.sesse.net Git - kdenlive/blob - src/doubleparameterwidget.cpp
Commit my changes to Till's slider widget for effect stack
[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 #include "dragvalue.h"
23
24 #include <QGridLayout>
25 #include <QLabel>
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 &comment, int id, const QString suffix, QWidget *parent) :
34         QWidget(parent),
35         m_commentLabel(NULL)
36 {
37     setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Maximum);
38     QGridLayout *layout = new QGridLayout(this);
39     layout->setContentsMargins(0, 0, 0, 0);
40     layout->setSpacing(0);
41     
42     m_dragVal = new DragValue(name, defaultValue, id, suffix, this);
43     m_dragVal->setRange(min, max);
44     m_dragVal->setPrecision(0);
45     layout->addWidget(m_dragVal, 0, 1);
46
47     if (!comment.isEmpty()) {
48         m_commentLabel = new QLabel(comment, this);
49         m_commentLabel->setWordWrap(true);
50         m_commentLabel->setTextFormat(Qt::RichText);
51         m_commentLabel->setAlignment(Qt::AlignLeft | Qt::AlignTop);
52         m_commentLabel->setFrameShape(QFrame::StyledPanel);
53         m_commentLabel->setFrameShadow(QFrame::Raised);
54         m_commentLabel->setHidden(true);
55         layout->addWidget(m_commentLabel, 1, 0, 1, -1);
56     }
57     connect(m_dragVal, SIGNAL(valueChanged(int, bool)), this, SLOT(slotSetValue(int, bool)));
58     connect(m_dragVal, SIGNAL(inTimeline(int)), this, SIGNAL(setInTimeline(int)));
59     m_dragVal->setValue(value);
60 }
61
62 int DoubleParameterWidget::spinSize()
63 {
64     return m_dragVal->spinSize();
65 }
66
67 void DoubleParameterWidget::setSpinSize(int width)
68 {
69     m_dragVal->setSpinSize(width);
70 }
71
72 void DoubleParameterWidget::setValue(int value)
73 {
74     m_dragVal->blockSignals(true);
75     m_dragVal->setValue(value);
76     m_dragVal->blockSignals(false);
77     //emit valueChanged(value);
78 }
79
80 void DoubleParameterWidget::slotSetValue(int value, bool final)
81 {
82     if (final) {
83         emit valueChanged(value);
84     }
85 }
86
87 int DoubleParameterWidget::getValue()
88 {
89     return m_dragVal->value();
90 }
91
92 void DoubleParameterWidget::slotReset()
93 {
94     m_dragVal->slotReset();
95 }
96
97 void DoubleParameterWidget::setInTimelineProperty(bool intimeline)
98 {
99     m_dragVal->setInTimelineProperty(intimeline);
100 }
101
102 void DoubleParameterWidget::slotShowComment( bool show)
103 {
104     if (m_commentLabel) {
105         m_commentLabel->setVisible(show);
106         if (show)
107             layout()->setContentsMargins(0, 0, 0, 15);
108         else
109             layout()->setContentsMargins(0, 0, 0, 0);
110     }
111 }
112
113 #include "doubleparameterwidget.moc"