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