]> git.sesse.net Git - kdenlive/blob - src/effectstackview.cpp
Fix crash on clip deletion, fix issues with placeholder clips
[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 "kdenlivesettings.h"
25
26 #include <KDebug>
27 #include <KLocale>
28 #include <KMessageBox>
29 #include <KStandardDirs>
30
31 #include <QMenu>
32 #include <QTextStream>
33 #include <QFile>
34 #include <QInputDialog>
35
36
37 EffectStackView::EffectStackView(QWidget *parent) :
38         QWidget(parent)
39 {
40     m_ui.setupUi(this);
41     QVBoxLayout *vbox1 = new QVBoxLayout(m_ui.frame);
42     m_effectedit = new EffectStackEdit(m_ui.frame);
43     vbox1->setContentsMargins(0, 0, 0, 0);
44     vbox1->setSpacing(0);
45     vbox1->addWidget(m_effectedit);
46     m_ui.frame->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum));
47     //m_ui.effectlist->horizontalHeader()->setVisible(false);
48     //m_ui.effectlist->verticalHeader()->setVisible(false);
49     m_clipref = NULL;
50
51     m_ui.buttonNew->setIcon(KIcon("document-new"));
52     m_ui.buttonNew->setToolTip(i18n("Add new effect"));
53     m_ui.buttonUp->setIcon(KIcon("go-up"));
54     m_ui.buttonUp->setToolTip(i18n("Move effect up"));
55     m_ui.buttonDown->setIcon(KIcon("go-down"));
56     m_ui.buttonDown->setToolTip(i18n("Move effect down"));
57     m_ui.buttonDel->setIcon(KIcon("edit-delete"));
58     m_ui.buttonDel->setToolTip(i18n("Delete effect"));
59     m_ui.buttonSave->setIcon(KIcon("document-save"));
60     m_ui.buttonSave->setToolTip(i18n("Save effect"));
61     m_ui.buttonReset->setIcon(KIcon("view-refresh"));
62     m_ui.buttonReset->setToolTip(i18n("Reset effect"));
63
64
65     m_ui.effectlist->setDragDropMode(QAbstractItemView::NoDragDrop);//use internal if drop is recognised right
66
67     connect(m_ui.effectlist, SIGNAL(itemSelectionChanged()), this , SLOT(slotItemSelectionChanged()));
68     connect(m_ui.effectlist, SIGNAL(itemChanged(QListWidgetItem *)), this , SLOT(slotItemChanged(QListWidgetItem *)));
69     connect(m_ui.buttonUp, SIGNAL(clicked()), this, SLOT(slotItemUp()));
70     connect(m_ui.buttonDown, SIGNAL(clicked()), this, SLOT(slotItemDown()));
71     connect(m_ui.buttonDel, SIGNAL(clicked()), this, SLOT(slotItemDel()));
72     connect(m_ui.buttonSave, SIGNAL(clicked()), this, SLOT(slotSaveEffect()));
73     connect(m_ui.buttonReset, SIGNAL(clicked()), this, SLOT(slotResetEffect()));
74     connect(m_effectedit, SIGNAL(parameterChanged(const QDomElement, const QDomElement)), this , SLOT(slotUpdateEffectParams(const QDomElement, const QDomElement)));
75     m_effectLists["audio"] = &MainWindow::audioEffects;
76     m_effectLists["video"] = &MainWindow::videoEffects;
77     m_effectLists["custom"] = &MainWindow::customEffects;
78     m_ui.splitter->setStretchFactor(1, 10);
79     m_ui.splitter->setStretchFactor(0, 1);
80     setEnabled(false);
81 }
82
83 EffectStackView::~EffectStackView()
84 {
85     m_effectLists.clear();
86     delete m_effectedit;
87 }
88
89 void EffectStackView::setMenu(QMenu *menu)
90 {
91     m_ui.buttonNew->setMenu(menu);
92 }
93
94 void EffectStackView::updateProjectFormat(MltVideoProfile profile, Timecode t)
95 {
96     m_effectedit->updateProjectFormat(profile, t);
97 }
98
99 void EffectStackView::slotSaveEffect()
100 {
101     QString name = QInputDialog::getText(this, i18n("Save Effect"), i18n("Name for saved effect: "));
102     if (name.isEmpty()) return;
103     QString path = KStandardDirs::locateLocal("appdata", "effects/", true);
104     path = path + name + ".xml";
105     if (QFile::exists(path)) if (KMessageBox::questionYesNo(this, i18n("File already exists.\nDo you want to overwrite it?")) == KMessageBox::No) return;
106
107     int i = m_ui.effectlist->currentRow();
108     QDomDocument doc;
109     QDomElement effect = m_clipref->effectAt(i).cloneNode().toElement();
110     doc.appendChild(doc.importNode(effect, true));
111     effect = doc.firstChild().toElement();
112     effect.removeAttribute("kdenlive_ix");
113     effect.setAttribute("id", name);
114     effect.setAttribute("type", "custom");
115     QDomElement effectname = effect.firstChildElement("name");
116     effect.removeChild(effectname);
117     effectname = doc.createElement("name");
118     QDomText nametext = doc.createTextNode(name);
119     effectname.appendChild(nametext);
120     effect.insertBefore(effectname, QDomNode());
121     QDomElement effectprops = effect.firstChildElement("properties");
122     effectprops.setAttribute("id", name);
123     effectprops.setAttribute("type", "custom");
124
125
126     QFile file(path);
127     if (file.open(QFile::WriteOnly | QFile::Truncate)) {
128         QTextStream out(&file);
129         out << doc.toString();
130     }
131     file.close();
132     emit reloadEffects();
133 }
134
135 void EffectStackView::slotUpdateEffectParams(const QDomElement old, const QDomElement e)
136 {
137     if (m_clipref)
138         emit updateClipEffect(m_clipref, old, e, m_ui.effectlist->currentRow());
139 }
140
141 void EffectStackView::slotClipItemSelected(ClipItem* c, int ix)
142 {
143     if (c && !c->isEnabled()) return;
144     if (c && c == m_clipref) {
145         if (ix == -1) ix = m_ui.effectlist->currentRow();
146     } else {
147         m_clipref = c;
148         if (c) {
149             ix = c->selectedEffectIndex();
150             QString size = c->baseClip()->getProperty("frame_size");
151             double factor = c->baseClip()->getProperty("aspect_ratio").toDouble();
152             QPoint p((int)(size.section('x', 0, 0).toInt() * factor + 0.5), size.section('x', 1, 1).toInt());
153             m_effectedit->setFrameSize(p);
154             m_effectedit->setFrameSize(p);
155         } else ix = 0;
156     }
157     if (m_clipref == NULL) {
158         m_ui.effectlist->blockSignals(true);
159         m_ui.effectlist->clear();
160         m_effectedit->transferParamDesc(QDomElement(), 0, 0);
161         m_ui.effectlist->blockSignals(false);
162         setEnabled(false);
163         return;
164     }
165     setEnabled(true);
166     setupListView(ix);
167 }
168
169 void EffectStackView::slotItemChanged(QListWidgetItem *item)
170 {
171     bool disable = true;
172     if (item->checkState() == Qt::Checked) disable = false;
173     m_ui.frame->setEnabled(!disable);
174     m_ui.buttonReset->setEnabled(!disable);
175     int activeRow = m_ui.effectlist->currentRow();
176     if (activeRow >= 0) {
177         m_effectedit->updateParameter("disabled", QString::number((int) disable));
178         emit changeEffectState(m_clipref, activeRow, disable);
179     }
180 }
181
182
183 void EffectStackView::setupListView(int ix)
184 {
185     m_ui.effectlist->blockSignals(true);
186     m_ui.effectlist->clear();
187
188     // Issue 238: Add icons for effect type in effectstack.
189     KIcon videoIcon("kdenlive-show-video");
190     KIcon audioIcon("kdenlive-show-audio");
191     KIcon customIcon("kdenlive-custom-effect");
192     QListWidgetItem* item;
193
194     for (int i = 0; i < m_clipref->effectsCount(); i++) {
195         const QDomElement d = m_clipref->effectAt(i);
196         if (d.isNull()) {
197             kDebug() << " . . . . WARNING, NULL EFFECT IN STACK!!!!!!!!!";
198             continue;
199         }
200
201         /*QDomDocument doc;
202         doc.appendChild(doc.importNode(d, true));
203         kDebug() << "IMPORTED STK: " << doc.toString();*/
204
205         QDomNode namenode = d.elementsByTagName("name").item(0);
206         if (!namenode.isNull()) {
207             // Issue 238: Add icons for effect type in effectstack.
208             // Logic more or less copied from initeffects.cpp
209             QString type = d.attribute("type", QString());
210             if ("audio" == type) {
211                 item = new QListWidgetItem(audioIcon, i18n(namenode.toElement().text().toUtf8().data()), m_ui.effectlist);
212             } else if ("custom" == type) {
213                 item = new QListWidgetItem(customIcon, i18n(namenode.toElement().text().toUtf8().data()), m_ui.effectlist);
214             } else {
215                 item = new QListWidgetItem(videoIcon, i18n(namenode.toElement().text().toUtf8().data()), m_ui.effectlist);
216             }
217             item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsUserCheckable | Qt::ItemIsEnabled);
218             if (d.attribute("disabled") == "1") item->setCheckState(Qt::Unchecked);
219             else item->setCheckState(Qt::Checked);
220         }
221     }
222     if (m_ui.effectlist->count() == 0) {
223         m_ui.buttonDel->setEnabled(false);
224         m_ui.buttonSave->setEnabled(false);
225         m_ui.buttonReset->setEnabled(false);
226         m_ui.buttonUp->setEnabled(false);
227         m_ui.buttonDown->setEnabled(false);
228     } else {
229         if (ix < 0) ix = 0;
230         if (ix > m_ui.effectlist->count() - 1) ix = m_ui.effectlist->count() - 1;
231         m_ui.effectlist->setCurrentRow(ix);
232     }
233     m_ui.effectlist->blockSignals(false);
234     if (m_ui.effectlist->count() == 0) m_effectedit->transferParamDesc(QDomElement(), 0, 0);
235     else slotItemSelectionChanged(false);
236 }
237
238 void EffectStackView::slotItemSelectionChanged(bool update)
239 {
240     bool hasItem = m_ui.effectlist->currentItem();
241     int activeRow = m_ui.effectlist->currentRow();
242     bool isChecked = false;
243     if (hasItem && m_ui.effectlist->currentItem()->checkState() == Qt::Checked) isChecked = true;
244     if (hasItem && m_ui.effectlist->currentItem()->isSelected()) {
245         m_effectedit->transferParamDesc(m_clipref->effectAt(activeRow), m_clipref->cropStart().frames(KdenliveSettings::project_fps()), m_clipref->cropDuration().frames(KdenliveSettings::project_fps()));//minx max frame
246     }
247     if (m_clipref && update) m_clipref->setSelectedEffect(activeRow);
248     m_ui.buttonDel->setEnabled(hasItem);
249     m_ui.buttonSave->setEnabled(hasItem);
250     m_ui.buttonReset->setEnabled(hasItem && isChecked);
251     m_ui.buttonUp->setEnabled(activeRow > 0);
252     m_ui.buttonDown->setEnabled((activeRow < m_ui.effectlist->count() - 1) && hasItem);
253     m_ui.frame->setEnabled(isChecked);
254 }
255
256 void EffectStackView::slotItemUp()
257 {
258     int activeRow = m_ui.effectlist->currentRow();
259     if (activeRow <= 0) return;
260     emit changeEffectPosition(m_clipref, activeRow + 1, activeRow);
261 }
262
263 void EffectStackView::slotItemDown()
264 {
265     int activeRow = m_ui.effectlist->currentRow();
266     if (activeRow >= m_ui.effectlist->count() - 1) return;
267     emit changeEffectPosition(m_clipref, activeRow + 1, activeRow + 2);
268 }
269
270 void EffectStackView::slotItemDel()
271 {
272     int activeRow = m_ui.effectlist->currentRow();
273     if (activeRow >= 0) {
274         emit removeEffect(m_clipref, m_clipref->effectAt(activeRow));
275     }
276 }
277
278 void EffectStackView::slotResetEffect()
279 {
280     int activeRow = m_ui.effectlist->currentRow();
281     if (activeRow < 0) return;
282     QDomElement old = m_clipref->effectAt(activeRow).cloneNode().toElement();
283     QDomElement dom;
284     QString effectName = m_ui.effectlist->currentItem()->text();
285     foreach(const QString &type, m_effectLists.keys()) {
286         EffectsList *list = m_effectLists[type];
287         if (list->effectNames().contains(effectName)) {
288             dom = list->getEffectByName(effectName).cloneNode().toElement();
289             break;
290         }
291     }
292     if (!dom.isNull()) {
293         dom.setAttribute("kdenlive_ix", old.attribute("kdenlive_ix"));
294         m_clipref->initEffect(dom);
295         m_effectedit->transferParamDesc(dom, m_clipref->cropStart().frames(KdenliveSettings::project_fps()), m_clipref->cropDuration().frames(KdenliveSettings::project_fps()));//minx max frame
296         emit updateClipEffect(m_clipref, old, dom, activeRow);
297     }
298 }
299
300
301 void EffectStackView::raiseWindow(QWidget* dock)
302 {
303     if (m_clipref && dock)
304         dock->raise();
305 }
306
307 void EffectStackView::clear()
308 {
309     m_ui.effectlist->blockSignals(true);
310     m_ui.effectlist->clear();
311     m_ui.buttonDel->setEnabled(false);
312     m_ui.buttonSave->setEnabled(false);
313     m_ui.buttonReset->setEnabled(false);
314     m_ui.buttonUp->setEnabled(false);
315     m_ui.buttonDown->setEnabled(false);
316     m_effectedit->transferParamDesc(QDomElement(), 0, 0);
317     m_ui.effectlist->blockSignals(false);
318 }
319
320 #include "effectstackview.moc"