]> git.sesse.net Git - kdenlive/blob - src/effectstackview.cpp
d6d79719ef1b861a68cf06ffac50fda5ac03c4c5
[kdenlive] / src / effectstackview.cpp
1 /***************************************************************************
2                           effecstackview.cpp  -  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 "effectstackview.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 "monitorscene.h"
27 #include "kdenlivesettings.h"
28
29 #include <KDebug>
30 #include <KLocale>
31 #include <KMessageBox>
32 #include <KStandardDirs>
33 #include <KFileDialog>
34
35 #include <QMenu>
36 #include <QTextStream>
37 #include <QFile>
38 #include <QInputDialog>
39
40
41 EffectStackView::EffectStackView(Monitor *monitor, QWidget *parent) :
42         QWidget(parent),
43         m_monitor(monitor),
44         m_clipref(NULL),
45         m_trackMode(false),
46         m_trackindex(-1)
47 {
48     m_ui.setupUi(this);
49     QVBoxLayout *vbox1 = new QVBoxLayout(m_ui.frame);
50     m_effectedit = new EffectStackEdit(monitor, m_ui.frame);
51     vbox1->setContentsMargins(0, 0, 0, 0);
52     vbox1->setSpacing(0);
53     vbox1->addWidget(m_effectedit);
54     m_ui.frame->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum));
55     //m_ui.region_url->fileDialog()->setFilter(ProjectList::getExtensions());
56     //m_ui.effectlist->horizontalHeader()->setVisible(false);
57     //m_ui.effectlist->verticalHeader()->setVisible(false);
58
59     m_ui.buttonNew->setIcon(KIcon("document-new"));
60     m_ui.buttonNew->setToolTip(i18n("Add new effect"));
61     m_ui.buttonUp->setIcon(KIcon("go-up"));
62     m_ui.buttonUp->setToolTip(i18n("Move effect up"));
63     m_ui.buttonDown->setIcon(KIcon("go-down"));
64     m_ui.buttonDown->setToolTip(i18n("Move effect down"));
65     m_ui.buttonDel->setIcon(KIcon("edit-delete"));
66     m_ui.buttonDel->setToolTip(i18n("Delete effect"));
67     m_ui.buttonSave->setIcon(KIcon("document-save"));
68     m_ui.buttonSave->setToolTip(i18n("Save effect"));
69     m_ui.buttonReset->setIcon(KIcon("view-refresh"));
70     m_ui.buttonReset->setToolTip(i18n("Reset effect"));
71     m_ui.checkAll->setToolTip(i18n("Enable/Disable all effects"));
72
73
74     m_ui.effectlist->setDragDropMode(QAbstractItemView::NoDragDrop); //use internal if drop is recognised right
75
76     //connect(m_ui.region_url, SIGNAL(urlSelected(const KUrl &)), this , SLOT(slotRegionChanged()));
77     //connect(m_ui.region_url, SIGNAL(returnPressed()), this , SLOT(slotRegionChanged()));
78     connect(m_ui.effectlist, SIGNAL(itemSelectionChanged()), this , SLOT(slotItemSelectionChanged()));
79     connect(m_ui.effectlist, SIGNAL(itemChanged(QListWidgetItem *)), this , SLOT(slotItemChanged(QListWidgetItem *)));
80     connect(m_ui.buttonUp, SIGNAL(clicked()), this, SLOT(slotItemUp()));
81     connect(m_ui.buttonDown, SIGNAL(clicked()), this, SLOT(slotItemDown()));
82     connect(m_ui.buttonDel, SIGNAL(clicked()), this, SLOT(slotItemDel()));
83     connect(m_ui.buttonSave, SIGNAL(clicked()), this, SLOT(slotSaveEffect()));
84     connect(m_ui.buttonReset, SIGNAL(clicked()), this, SLOT(slotResetEffect()));
85     connect(m_ui.checkAll, SIGNAL(stateChanged(int)), this, SLOT(slotCheckAll(int)));
86     connect(m_effectedit, SIGNAL(parameterChanged(const QDomElement, const QDomElement)), this , SLOT(slotUpdateEffectParams(const QDomElement, const QDomElement)));
87     connect(m_effectedit, SIGNAL(seekTimeline(int)), this , SLOT(slotSeekTimeline(int)));
88     connect(m_effectedit, SIGNAL(displayMessage(const QString&, int)), this, SIGNAL(displayMessage(const QString&, int)));
89     connect(m_effectedit, SIGNAL(checkMonitorPosition(int)), this, SLOT(slotCheckMonitorPosition(int)));
90     connect(monitor, SIGNAL(renderPosition(int)), this, SLOT(slotRenderPos(int)));
91     m_effectLists["audio"] = &MainWindow::audioEffects;
92     m_effectLists["video"] = &MainWindow::videoEffects;
93     m_effectLists["custom"] = &MainWindow::customEffects;
94     m_ui.splitter->setStretchFactor(1, 10);
95     m_ui.splitter->setStretchFactor(0, 1);
96     setEnabled(false);
97 }
98
99 EffectStackView::~EffectStackView()
100 {
101     m_effectLists.clear();
102     delete m_effectedit;
103 }
104
105 void EffectStackView::updateTimecodeFormat()
106 {
107     m_effectedit->updateTimecodeFormat();
108 }
109
110 void EffectStackView::setMenu(QMenu *menu)
111 {
112     m_ui.buttonNew->setMenu(menu);
113 }
114
115 void EffectStackView::updateProjectFormat(MltVideoProfile profile, Timecode t)
116 {
117     m_effectedit->updateProjectFormat(profile, t);
118 }
119
120 void EffectStackView::slotSaveEffect()
121 {
122     QString name = QInputDialog::getText(this, i18n("Save Effect"), i18n("Name for saved effect: "));
123     if (name.isEmpty()) return;
124     QString path = KStandardDirs::locateLocal("appdata", "effects/", true);
125     path = path + name + ".xml";
126     if (QFile::exists(path)) if (KMessageBox::questionYesNo(this, i18n("File %1 already exists.\nDo you want to overwrite it?", path)) == KMessageBox::No) return;
127
128     int i = m_ui.effectlist->currentRow();
129     QDomDocument doc;
130     QDomElement effect = m_currentEffectList.at(i).cloneNode().toElement();
131     doc.appendChild(doc.importNode(effect, true));
132     effect = doc.firstChild().toElement();
133     effect.removeAttribute("kdenlive_ix");
134     effect.setAttribute("id", name);
135     effect.setAttribute("type", "custom");
136     QDomElement effectname = effect.firstChildElement("name");
137     effect.removeChild(effectname);
138     effectname = doc.createElement("name");
139     QDomText nametext = doc.createTextNode(name);
140     effectname.appendChild(nametext);
141     effect.insertBefore(effectname, QDomNode());
142     QDomElement effectprops = effect.firstChildElement("properties");
143     effectprops.setAttribute("id", name);
144     effectprops.setAttribute("type", "custom");
145
146     QFile file(path);
147     if (file.open(QFile::WriteOnly | QFile::Truncate)) {
148         QTextStream out(&file);
149         out << doc.toString();
150     }
151     file.close();
152     emit reloadEffects();
153 }
154
155 void EffectStackView::slotUpdateEffectParams(const QDomElement old, const QDomElement e)
156 {
157     if (m_trackMode)
158         emit updateEffect(NULL, m_trackindex, old, e, m_ui.effectlist->currentRow());
159     else if (m_clipref)
160         emit updateEffect(m_clipref, -1, old, e, m_ui.effectlist->currentRow());
161 }
162
163 void EffectStackView::slotClipItemSelected(ClipItem* c, int ix)
164 {
165     if (c && !c->isEnabled()) return;
166     if (c && c == m_clipref) {
167         if (ix == -1) ix = m_ui.effectlist->currentRow();
168         //if (ix == -1 || ix == m_ui.effectlist->currentRow()) return;
169     } else {
170         m_clipref = c;
171         if (c) {
172             QString cname = m_clipref->clipName();
173             if (cname.length() > 20) {
174                 m_ui.checkAll->setToolTip(i18n("Effects for %1").arg(cname));
175                 cname.truncate(17);
176                 m_ui.checkAll->setText(i18n("Effects for %1").arg(cname) + "...");
177             } else {
178                 m_ui.checkAll->setToolTip(QString());
179                 m_ui.checkAll->setText(i18n("Effects for %1").arg(cname));
180             }
181             ix = c->selectedEffectIndex();
182             QString size = c->baseClip()->getProperty("frame_size");
183             double factor = c->baseClip()->getProperty("aspect_ratio").toDouble();
184             QPoint p((int)(size.section('x', 0, 0).toInt() * factor + 0.5), size.section('x', 1, 1).toInt());
185             m_effectedit->setFrameSize(p);
186             m_effectedit->setFrameSize(p);
187         } else ix = 0;
188     }
189     if (m_clipref == NULL) {
190         m_ui.effectlist->blockSignals(true);
191         m_ui.effectlist->clear();
192         m_effectedit->transferParamDesc(QDomElement(), 0, 0, 0);
193         //m_ui.region_url->clear();
194         m_ui.effectlist->blockSignals(false);
195         m_ui.checkAll->setToolTip(QString());
196         m_ui.checkAll->setText(QString());
197         setEnabled(false);
198         return;
199     }
200     setEnabled(true);
201     m_trackMode = false;
202     m_currentEffectList = m_clipref->effectList();
203     setupListView(ix);
204 }
205
206 void EffectStackView::slotTrackItemSelected(int ix, const TrackInfo info)
207 {
208     m_clipref = NULL;
209     m_trackMode = true;
210     m_currentEffectList = info.effectsList;
211     kDebug() << "// TRACK; " << ix << ", EFFECTS: " << m_currentEffectList.count();
212     setEnabled(true);
213     m_ui.checkAll->setToolTip(QString());
214     m_ui.checkAll->setText(i18n("Effects for track %1").arg(info.trackName.isEmpty() ? QString::number(ix) : info.trackName));
215     m_trackindex = ix;
216     setupListView(0);
217 }
218
219 void EffectStackView::slotItemChanged(QListWidgetItem *item)
220 {
221     bool disable = true;
222     if (item->checkState() == Qt::Checked) disable = false;
223     m_ui.frame_layout->setEnabled(!disable);
224     m_ui.buttonReset->setEnabled(!disable);
225     int activeRow = m_ui.effectlist->currentRow();
226     if (activeRow >= 0) {
227         m_effectedit->updateParameter("disable", QString::number((int) disable));
228         if (m_trackMode)
229             emit changeEffectState(NULL, m_trackindex, activeRow, disable);
230         else
231             emit changeEffectState(m_clipref, -1, activeRow, disable);
232     }
233     slotUpdateCheckAllButton();
234 }
235
236
237 void EffectStackView::setupListView(int ix)
238 {
239     m_ui.effectlist->blockSignals(true);
240     m_ui.effectlist->clear();
241
242     // Issue 238: Add icons for effect type in effectstack.
243     KIcon videoIcon("kdenlive-show-video");
244     KIcon audioIcon("kdenlive-show-audio");
245     KIcon customIcon("kdenlive-custom-effect");
246     QListWidgetItem* item;
247
248     for (int i = 0; i < m_currentEffectList.count(); i++) {
249         const QDomElement d = m_currentEffectList.at(i).cloneNode().toElement();
250         if (d.isNull()) {
251             kDebug() << " . . . . WARNING, NULL EFFECT IN STACK!!!!!!!!!";
252             continue;
253         }
254
255         /*QDomDocument doc;
256         doc.appendChild(doc.importNode(d, true));
257         kDebug() << "IMPORTED STK: " << doc.toString();*/
258
259         QDomNode namenode = d.elementsByTagName("name").item(0);
260         if (!namenode.isNull()) {
261             // Issue 238: Add icons for effect type in effectstack.
262             // Logic more or less copied from initeffects.cpp
263             QString type = d.attribute("type", QString());
264             if ("audio" == type) {
265                 item = new QListWidgetItem(audioIcon, i18n(namenode.toElement().text().toUtf8().data()), m_ui.effectlist);
266             } else if ("custom" == type) {
267                 item = new QListWidgetItem(customIcon, i18n(namenode.toElement().text().toUtf8().data()), m_ui.effectlist);
268             } else {
269                 item = new QListWidgetItem(videoIcon, i18n(namenode.toElement().text().toUtf8().data()), m_ui.effectlist);
270             }
271             item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsUserCheckable | Qt::ItemIsEnabled);
272             if (d.attribute("disable") == "1")
273                 item->setCheckState(Qt::Unchecked);
274             else
275                 item->setCheckState(Qt::Checked);
276         }
277     }
278     if (m_ui.effectlist->count() == 0) {
279         m_ui.buttonDel->setEnabled(false);
280         m_ui.buttonSave->setEnabled(false);
281         m_ui.buttonReset->setEnabled(false);
282         m_ui.buttonUp->setEnabled(false);
283         m_ui.buttonDown->setEnabled(false);
284         m_ui.checkAll->setEnabled(false);
285     } else {
286         if (ix < 0) ix = 0;
287         if (ix > m_ui.effectlist->count() - 1) ix = m_ui.effectlist->count() - 1;
288         m_ui.effectlist->setCurrentRow(ix);
289         m_ui.checkAll->setEnabled(true);
290     }
291     m_ui.effectlist->blockSignals(false);
292     if (m_ui.effectlist->count() == 0) {
293         m_effectedit->transferParamDesc(QDomElement(), 0, 0, 0);
294         //m_ui.region_url->clear();
295     } else slotItemSelectionChanged(false);
296     slotUpdateCheckAllButton();
297 }
298
299 void EffectStackView::slotItemSelectionChanged(bool update)
300 {
301     bool hasItem = m_ui.effectlist->currentItem();
302     int activeRow = m_ui.effectlist->currentRow();
303     bool isChecked = false;
304     if (hasItem && m_ui.effectlist->currentItem()->checkState() == Qt::Checked) isChecked = true;
305     if (hasItem && m_ui.effectlist->currentItem()->isSelected()) {
306         QDomElement eff = m_currentEffectList.at(activeRow);
307         if (m_trackMode) {
308             // showing track effects
309             m_effectedit->transferParamDesc(eff, 0, 0, -1);
310         } else m_effectedit->transferParamDesc(eff,
311                                                    0,
312                                                    m_clipref->cropStart().frames(KdenliveSettings::project_fps()),
313                                                    (m_clipref->cropStart() + m_clipref->cropDuration()).frames(KdenliveSettings::project_fps()) - 1); //minx max frame
314         //m_ui.region_url->setUrl(KUrl(eff.attribute("region")));
315     }
316     if (!m_trackMode && m_clipref && update) m_clipref->setSelectedEffect(activeRow);
317     m_ui.buttonDel->setEnabled(hasItem);
318     m_ui.buttonSave->setEnabled(hasItem);
319     m_ui.buttonReset->setEnabled(hasItem && isChecked);
320     m_ui.buttonUp->setEnabled(activeRow > 0);
321     m_ui.buttonDown->setEnabled((activeRow < m_ui.effectlist->count() - 1) && hasItem);
322     m_ui.frame_layout->setEnabled(isChecked);
323 }
324
325 void EffectStackView::slotItemUp()
326 {
327     int activeRow = m_ui.effectlist->currentRow();
328     if (activeRow <= 0) return;
329     if (m_trackMode) emit changeEffectPosition(NULL, m_trackindex, activeRow + 1, activeRow);
330     else emit changeEffectPosition(m_clipref, -1, activeRow + 1, activeRow);
331 }
332
333 void EffectStackView::slotItemDown()
334 {
335     int activeRow = m_ui.effectlist->currentRow();
336     if (activeRow >= m_ui.effectlist->count() - 1) return;
337     if (m_trackMode) emit changeEffectPosition(NULL, m_trackindex, activeRow + 1, activeRow + 2);
338     else emit changeEffectPosition(m_clipref, -1, activeRow + 1, activeRow + 2);
339 }
340
341 void EffectStackView::slotItemDel()
342 {
343     int activeRow = m_ui.effectlist->currentRow();
344     if (activeRow >= 0) {
345         if (m_trackMode) emit removeEffect(NULL, m_trackindex, m_currentEffectList.at(activeRow).cloneNode().toElement());
346         else emit removeEffect(m_clipref, -1, m_clipref->effectAt(activeRow));
347         slotUpdateCheckAllButton();
348     }
349 }
350
351 void EffectStackView::slotResetEffect()
352 {
353     int activeRow = m_ui.effectlist->currentRow();
354     if (activeRow < 0) return;
355     QDomElement old = m_currentEffectList.at(activeRow).cloneNode().toElement();
356     QDomElement dom;
357     QString effectName = m_ui.effectlist->currentItem()->text();
358     foreach(const QString &type, m_effectLists.keys()) {
359         EffectsList *list = m_effectLists[type];
360         if (list->effectNames().contains(effectName)) {
361             dom = list->getEffectByName(effectName).cloneNode().toElement();
362             break;
363         }
364     }
365     if (!dom.isNull()) {
366         dom.setAttribute("kdenlive_ix", old.attribute("kdenlive_ix"));
367         if (m_trackMode) {
368             EffectsList::setParameter(dom, "in", QString::number(0));
369             EffectsList::setParameter(dom, "out", QString::number(0));
370             m_effectedit->transferParamDesc(dom, 0, 0, 0);//minx max frame
371             emit updateEffect(NULL, m_trackindex, old, dom, activeRow);
372         } else {
373             m_clipref->initEffect(dom);
374             m_effectedit->transferParamDesc(dom, 0, m_clipref->cropStart().frames(KdenliveSettings::project_fps()), (m_clipref->cropStart() + m_clipref->cropDuration()).frames(KdenliveSettings::project_fps()));//minx max frame
375             //m_ui.region_url->setUrl(KUrl(dom.attribute("region")));
376             emit updateEffect(m_clipref, -1, old, dom, activeRow);
377         }
378     }
379 }
380
381
382 void EffectStackView::raiseWindow(QWidget* dock)
383 {
384     if ((m_clipref || m_trackMode) && dock)
385         dock->raise();
386 }
387
388 void EffectStackView::clear()
389 {
390     m_ui.effectlist->blockSignals(true);
391     m_ui.effectlist->clear();
392     m_ui.buttonDel->setEnabled(false);
393     m_ui.buttonSave->setEnabled(false);
394     m_ui.buttonReset->setEnabled(false);
395     m_ui.buttonUp->setEnabled(false);
396     m_ui.buttonDown->setEnabled(false);
397     m_ui.checkAll->setEnabled(false);
398     m_effectedit->transferParamDesc(QDomElement(), 0, 0, 0);
399     //m_ui.region_url->clear();
400     m_ui.effectlist->blockSignals(false);
401 }
402
403
404 void EffectStackView::slotSeekTimeline(int pos)
405 {
406     if (!m_trackMode && m_clipref)
407         emit seekTimeline(m_clipref->startPos().frames(KdenliveSettings::project_fps()) + pos);
408 }
409
410 void EffectStackView::slotUpdateCheckAllButton()
411 {
412     bool hasEnabled = false;
413     bool hasDisabled = false;
414     for (int i = 0; i < m_ui.effectlist->count(); ++i) {
415         if (m_ui.effectlist->item(i)->checkState() == Qt::Checked)
416             hasEnabled = true;
417         else
418             hasDisabled = true;
419     }
420
421     m_ui.checkAll->blockSignals(true);
422     if (hasEnabled && hasDisabled)
423         m_ui.checkAll->setCheckState(Qt::PartiallyChecked);
424     else if (hasEnabled)
425         m_ui.checkAll->setCheckState(Qt::Checked);
426     else
427         m_ui.checkAll->setCheckState(Qt::Unchecked);
428     m_ui.checkAll->blockSignals(false);
429 }
430
431 void EffectStackView::slotCheckAll(int state)
432 {
433     if (state == 1) {
434         state = 2;
435         m_ui.checkAll->blockSignals(true);
436         m_ui.checkAll->setCheckState(Qt::Checked);
437         m_ui.checkAll->blockSignals(false);
438     }
439
440     bool disabled = (state != 2);
441     m_effectedit->updateParameter("disable", QString::number((int) disabled));
442     for (int i = 0; i < m_ui.effectlist->count(); ++i) {
443         if (m_ui.effectlist->item(i)->checkState() != (Qt::CheckState)state) {
444             m_ui.effectlist->item(i)->setCheckState((Qt::CheckState)state);
445             if (m_trackMode)
446                 emit changeEffectState(NULL, m_trackindex, i, disabled);
447             else
448                 emit changeEffectState(m_clipref, -1, i, disabled);
449         }
450     }
451 }
452
453 /*void EffectStackView::slotRegionChanged()
454 {
455     if (!m_trackMode) emit updateClipRegion(m_clipref, m_ui.effectlist->currentRow(), m_ui.region_url->text());
456 }*/
457
458 void EffectStackView::slotCheckMonitorPosition(int renderPos)
459 {
460     if (m_trackMode || (renderPos >= m_clipref->startPos().frames(KdenliveSettings::project_fps()) && renderPos <= m_clipref->endPos().frames(KdenliveSettings::project_fps()))) {
461         if (!m_monitor->getEffectScene()->views().at(0)->isVisible())
462             m_monitor->slotEffectScene(true);
463     } else {
464         m_monitor->slotEffectScene(false);
465     }
466 }
467
468 void EffectStackView::slotRenderPos(int pos)
469 {
470     if (m_clipref && m_effectedit && !m_trackMode)
471         m_effectedit->slotSyncEffectsPos(pos - m_clipref->startPos().frames(KdenliveSettings::project_fps()));
472 }
473
474 int EffectStackView::isTrackMode(bool *ok) const
475 {
476     *ok = m_trackMode;
477     return m_trackindex;
478 }
479
480 #include "effectstackview.moc"