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