]> git.sesse.net Git - kdenlive/blob - src/effectstack/effectstackview2.cpp
Fix newly introduced effect types
[kdenlive] / src / effectstack / effectstackview2.cpp
1 /***************************************************************************
2                           effecstackview.cpp2  -  description
3                              -------------------
4     begin                : Feb 15 2008
5     copyright            : (C) 2008 by Marco Gittler
6     email                : g.marco@freenet.de
7  ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17
18
19 #include "effectstackview2.h"
20 #include "effectslist.h"
21 #include "clipitem.h"
22 #include "mainwindow.h"
23 #include "docclipbase.h"
24 #include "projectlist.h"
25 #include "kthumb.h"
26 #include "monitoreditwidget.h"
27 #include "monitorscene.h"
28 #include "kdenlivesettings.h"
29
30 #include <KDebug>
31 #include <KLocale>
32 #include <KMessageBox>
33 #include <KStandardDirs>
34 #include <KFileDialog>
35 #include <KColorScheme>
36
37 #include <QMenu>
38 #include <QTextStream>
39 #include <QFile>
40 #include <QInputDialog>
41
42
43 EffectStackView2::EffectStackView2(Monitor *monitor, QWidget *parent) :
44         QWidget(parent),
45         m_clipref(NULL),
46         m_trackindex(-1)
47 {
48     m_effectMetaInfo.trackMode = false;
49     m_effectMetaInfo.monitor = monitor;
50
51     m_ui.setupUi(this);
52     setFont(KGlobalSettings::smallestReadableFont());
53     m_ui.checkAll->setToolTip(i18n("Enable/Disable all effects"));
54     m_ui.buttonShowComments->setIcon(KIcon("help-about"));
55     m_ui.buttonShowComments->setToolTip(i18n("Show additional information for the parameters"));
56
57
58     setEnabled(false);
59
60     QPalette p = palette();
61     KColorScheme scheme(p.currentColorGroup(), KColorScheme::View, KSharedConfig::openConfig(KdenliveSettings::colortheme()));
62     QColor dark_bg = scheme.shade(KColorScheme::DarkShade);
63     QColor selected_bg = scheme.decoration(KColorScheme::FocusColor).color();
64     QColor hover_bg = scheme.decoration(KColorScheme::HoverColor).color();
65     QColor light_bg = scheme.shade(KColorScheme::LightShade);
66     
67     QString stylesheet(QString("QProgressBar:horizontal {border: 1px solid %1;border-radius:0px;border-top-left-radius: 4px;border-bottom-left-radius: 4px;border-right: 0px;background:%4;padding: 0px;text-align:left center}\
68                                 QProgressBar:horizontal#dragOnly {background: %1} QProgressBar:horizontal:hover#dragOnly {background: %3} QProgressBar:horizontal:hover {border: 1px solid %3;border-right: 0px;}\
69                                 QProgressBar::chunk:horizontal {background: %1;} QProgressBar::chunk:horizontal:hover {background: %3;}\
70                                 QProgressBar:horizontal[inTimeline=\"true\"] { border: 1px solid %2;border-right: 0px;background: %4;padding: 0px;text-align:left center } QProgressBar::chunk:horizontal[inTimeline=\"true\"] {background: %2;}\
71                                 QAbstractSpinBox#dragBox {border: 1px solid %1;border-top-right-radius: 4px;border-bottom-right-radius: 4px;padding-right:0px;} QAbstractSpinBox::down-button#dragBox {width:0px;padding:0px;}\
72                                 QAbstractSpinBox::up-button#dragBox {width:0px;padding:0px;} QAbstractSpinBox[inTimeline=\"true\"]#dragBox { border: 1px solid %2;} QAbstractSpinBox:hover#dragBox {border: 1px solid %3;} ")
73                                 .arg(dark_bg.name()).arg(selected_bg.name()).arg(hover_bg.name()).arg(light_bg.name()));
74     setStyleSheet(stylesheet);
75 }
76
77 EffectStackView2::~EffectStackView2()
78 {
79 }
80
81
82 void EffectStackView2::slotRenderPos(int pos)
83 {
84     if (m_effects.isEmpty()) return;
85     if (!m_effectMetaInfo.trackMode && m_clipref) pos = pos - m_clipref->startPos().frames(KdenliveSettings::project_fps());
86
87     for (int i = 0; i< m_effects.count(); i++)
88         m_effects.at(i)->slotSyncEffectsPos(pos);
89 }
90
91 void EffectStackView2::setMenu(QMenu *menu)
92 {
93     //m_ui.buttonNew->setMenu(menu);
94 }
95
96 void EffectStackView2::slotClipItemSelected(ClipItem* c, int ix)
97 {
98     if (c && !c->isEnabled()) return;
99     if (c && c == m_clipref) {
100         
101     } else {
102         m_clipref = c;
103         if (c) {
104             QString cname = m_clipref->clipName();
105             if (cname.length() > 30) {
106                 m_ui.checkAll->setToolTip(i18n("Effects for %1").arg(cname));
107                 cname.truncate(27);
108                 m_ui.checkAll->setText(i18n("Effects for %1").arg(cname) + "...");
109             } else {
110                 m_ui.checkAll->setToolTip(QString());
111                 m_ui.checkAll->setText(i18n("Effects for %1").arg(cname));
112             }
113             ix = c->selectedEffectIndex();
114             QString size = c->baseClip()->getProperty("frame_size");
115             double factor = c->baseClip()->getProperty("aspect_ratio").toDouble();
116             m_effectMetaInfo.frameSize = QPoint((int)(size.section('x', 0, 0).toInt() * factor + 0.5), size.section('x', 1, 1).toInt());
117         } else {
118             ix = 0;
119         }
120     }
121     if (m_clipref == NULL) {
122         //TODO: clear list, reset paramdesc and info
123         //ItemInfo info;
124         //m_effectedit->transferParamDesc(QDomElement(), info);
125         m_effects.clear();
126         QWidget *view = m_ui.container->takeWidget();
127         if (view) {
128             if (view->layout()) clearLayout(view->layout());
129             delete view;
130         }
131         m_ui.checkAll->setToolTip(QString());
132         m_ui.checkAll->setText(QString());
133         setEnabled(false);
134         return;
135     }
136     setEnabled(true);
137     m_effectMetaInfo.trackMode = false;
138     m_currentEffectList = m_clipref->effectList();
139     setupListView(ix);
140 }
141
142 void EffectStackView2::slotTrackItemSelected(int ix, const TrackInfo info)
143 {
144     m_clipref = NULL;
145     m_effectMetaInfo.trackMode = true;
146     m_currentEffectList = info.effectsList;
147     m_trackInfo = info;
148     setEnabled(true);
149     m_ui.checkAll->setToolTip(QString());
150     m_ui.checkAll->setText(i18n("Effects for track %1").arg(info.trackName.isEmpty() ? QString::number(ix) : info.trackName));
151     m_trackindex = ix;
152     setupListView(0);
153 }
154
155 void EffectStackView2::clearLayout(QLayout *layout)
156 {
157     QLayoutItem *item;
158     while((item = layout->takeAt(0))) {
159         if (item->layout()) {
160             clearLayout(item->layout());
161             delete item->layout();
162         }
163         if (item->widget()) {
164             delete item->widget();
165         }
166         delete item;
167     }
168 }
169
170 void EffectStackView2::setupListView(int ix)
171 {
172     //TODO: clear list
173
174     kDebug()<<"++++++++++++++++++++++++++++++++   setup: "<<children().count();
175
176     blockSignals(true);
177     disconnect(m_effectMetaInfo.monitor, SIGNAL(renderPosition(int)), this, SLOT(slotRenderPos(int)));
178     m_effects.clear();
179     QWidget *view = m_ui.container->takeWidget();
180     if (view) {
181         if (view->layout()) clearLayout(view->layout());
182         delete view;
183     }
184     blockSignals(false);
185     view = new QWidget(m_ui.container);
186     m_ui.container->setWidget(view);
187
188     QVBoxLayout *vbox1 = new QVBoxLayout(view);
189     vbox1->setContentsMargins(0, 0, 0, 0);
190     vbox1->setSpacing(0);
191
192     for (int i = 0; i < m_currentEffectList.count(); i++) {
193         QDomElement d = m_currentEffectList.at(i).cloneNode().toElement();
194         if (d.isNull()) {
195             kDebug() << " . . . . WARNING, NULL EFFECT IN STACK!!!!!!!!!";
196             continue;
197         }
198
199         /*QDomDocument doc;
200         doc.appendChild(doc.importNode(d, true));
201         kDebug() << "IMPORTED STK: " << doc.toString();*/
202
203         CollapsibleEffect *currentEffect = new CollapsibleEffect(d, m_currentEffectList.at(i), m_clipref->info(), i, &m_effectMetaInfo, i == m_currentEffectList.count() - 1, view);
204         m_effects.append(currentEffect);
205         vbox1->addWidget(currentEffect);
206         connect(currentEffect, SIGNAL(parameterChanged(const QDomElement, const QDomElement, int)), this , SLOT(slotUpdateEffectParams(const QDomElement, const QDomElement, int)));
207         connect(currentEffect, SIGNAL(startFilterJob(QString,QString,QString,QString,QString,QString)), this , SLOT(slotStartFilterJob(QString,QString,QString,QString,QString,QString)));
208         connect(currentEffect, SIGNAL(deleteEffect(const QDomElement, int)), this , SLOT(slotDeleteEffect(const QDomElement, int)));
209         connect(currentEffect, SIGNAL(changeEffectPosition(int,bool)), this , SLOT(slotMoveEffect(int , bool)));
210         connect(currentEffect, SIGNAL(effectStateChanged(bool, int)), this, SLOT(slotUpdateEffectState(bool, int)));
211         connect(currentEffect, SIGNAL(activateEffect(int)), this, SLOT(slotSetCurrentEffect(int)));
212         connect(currentEffect, SIGNAL(checkMonitorPosition(int)), this, SLOT(slotCheckMonitorPosition(int)));
213         connect(currentEffect, SIGNAL(seekTimeline(int)), this , SLOT(slotSeekTimeline(int)));
214             //ui.title->setPixmap(icon.pixmap(QSize(12, 12)));
215     }
216     vbox1->addStretch(10);
217     connect(m_effectMetaInfo.monitor, SIGNAL(renderPosition(int)), this, SLOT(slotRenderPos(int)));
218 }
219
220
221 void EffectStackView2::slotUpdateEffectState(bool disable, int index)
222 {
223     if (m_effectMetaInfo.trackMode)
224         emit changeEffectState(NULL, m_trackindex, index, disable);
225     else
226         emit changeEffectState(m_clipref, -1, index, disable);
227 }
228
229
230 void EffectStackView2::raiseWindow(QWidget* dock)
231 {
232     if ((m_clipref || m_effectMetaInfo.trackMode) && dock)
233         dock->raise();
234 }
235
236
237 void EffectStackView2::slotSeekTimeline(int pos)
238 {
239     if (m_effectMetaInfo.trackMode) {
240         emit seekTimeline(pos);
241     } else if (m_clipref) {
242         emit seekTimeline(m_clipref->startPos().frames(KdenliveSettings::project_fps()) + pos);
243     }
244 }
245
246
247 /*void EffectStackView2::slotRegionChanged()
248 {
249     if (!m_trackMode) emit updateClipRegion(m_clipref, m_ui.effectlist->currentRow(), m_ui.region_url->text());
250 }*/
251
252 void EffectStackView2::slotCheckMonitorPosition(int renderPos)
253 {
254     if (m_effectMetaInfo.trackMode || (m_clipref && renderPos >= m_clipref->startPos().frames(KdenliveSettings::project_fps()) && renderPos <= m_clipref->endPos().frames(KdenliveSettings::project_fps()))) {
255         if (!m_effectMetaInfo.monitor->getEffectEdit()->getScene()->views().at(0)->isVisible())
256             m_effectMetaInfo.monitor->slotEffectScene(true);
257     } else {
258         m_effectMetaInfo.monitor->slotEffectScene(false);
259     }
260 }
261
262 int EffectStackView2::isTrackMode(bool *ok) const
263 {
264     *ok = m_effectMetaInfo.trackMode;
265     return m_trackindex;
266 }
267
268 void EffectStackView2::clear()
269 {
270 }
271
272 void EffectStackView2::updateProjectFormat(MltVideoProfile profile, Timecode t)
273 {
274     m_effectMetaInfo.profile = profile;
275     m_effectMetaInfo.timecode = t;
276 }
277
278 void EffectStackView2::slotItemDel()
279 {
280
281 }
282
283 void EffectStackView2::updateTimecodeFormat()
284 {
285     for (int i = 0; i< m_effects.count(); i++)
286         m_effects.at(i)->updateTimecodeFormat();
287 }
288
289 void EffectStackView2::slotUpdateEffectParams(const QDomElement old, const QDomElement e, int ix)
290 {
291     if (m_effectMetaInfo.trackMode)
292         emit updateEffect(NULL, m_trackindex, old, e, ix);
293     else if (m_clipref) {
294         emit updateEffect(m_clipref, -1, old, e, ix);
295         // Make sure the changed effect is currently displayed
296         slotSetCurrentEffect(ix);
297     }
298 }
299
300 void EffectStackView2::slotSetCurrentEffect(int ix)
301 {
302     if (ix != m_clipref->selectedEffectIndex())
303         m_clipref->setSelectedEffect(ix);
304     for (int i = 0; i < m_effects.count(); i++) {
305         m_effects.at(i)->setActive(i == ix);
306     }
307 }
308
309 void EffectStackView2::slotDeleteEffect(const QDomElement effect, int index)
310 {
311     
312     if (m_effectMetaInfo.trackMode)
313         emit removeEffect(NULL, m_trackindex, effect);
314     else
315         emit removeEffect(m_clipref, -1, effect);
316 }
317
318 void EffectStackView2::slotMoveEffect(int index, bool up)
319 {
320     if (up && index <= 0) return;
321     if (!up && index >= m_currentEffectList.count() - 1) return;
322     int startPos;
323     int endPos;
324     if (up) {
325         startPos =  index + 1;
326         endPos = index;
327     }
328     else {
329         startPos =  index + 1;
330         endPos =  index + 2;
331     }
332     if (m_effectMetaInfo.trackMode) emit changeEffectPosition(NULL, m_trackindex, startPos, endPos);
333     else emit changeEffectPosition(m_clipref, -1, startPos, endPos);
334 }
335
336 void EffectStackView2::slotStartFilterJob(const QString&filterName, const QString&filterParams, const QString&finalFilterName, const QString&consumer, const QString&consumerParams, const QString&properties)
337 {
338     if (!m_clipref) return;
339     emit startFilterJob(m_clipref->info(), m_clipref->clipProducer(), filterName, filterParams, finalFilterName, consumer, consumerParams, properties);
340 }
341
342 #include "effectstackview2.moc"