]> git.sesse.net Git - kdenlive/blob - src/effectstackedit.cpp
Fix regression with fade effects
[kdenlive] / src / effectstackedit.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 #include "effectstackedit.h"
19 #include "ui_constval_ui.h"
20 #include "ui_listval_ui.h"
21 #include "ui_boolval_ui.h"
22 #include "ui_colorval_ui.h"
23 #include "ui_positionval_ui.h"
24 #include "ui_wipeval_ui.h"
25 #include "ui_keyframeeditor_ui.h"
26 #include "complexparameter.h"
27 #include "geometryval.h"
28 #include "keyframeedit.h"
29 #include "effectslist.h"
30 #include "kdenlivesettings.h"
31 #include "profilesdialog.h"
32
33 #include <KDebug>
34 #include <KLocale>
35
36 #include <QVBoxLayout>
37 #include <QSlider>
38 #include <QLabel>
39 #include <QPushButton>
40 #include <QCheckBox>
41 #include <QScrollArea>
42
43
44 class Boolval: public EffectStackEdit::UiItem, public Ui::Boolval_UI
45 {
46 };
47
48 class Colorval: public EffectStackEdit::UiItem, public Ui::Colorval_UI
49 {
50 };
51
52 class Constval: public EffectStackEdit::UiItem, public Ui::Constval_UI
53 {
54 };
55
56 class Listval: public EffectStackEdit::UiItem, public Ui::Listval_UI
57 {
58 };
59
60 class Positionval: public EffectStackEdit::UiItem, public Ui::Positionval_UI
61 {
62 };
63
64 class Wipeval: public EffectStackEdit::UiItem, public Ui::Wipeval_UI
65 {
66 };
67
68
69 QMap<QString, QImage> EffectStackEdit::iconCache;
70
71 EffectStackEdit::EffectStackEdit(QWidget *parent) :
72         QWidget(parent),
73         m_in(0),
74         m_out(0),
75         m_frameSize(QPoint())
76 {
77     setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding));
78     QVBoxLayout *vbox1 = new QVBoxLayout(parent);
79     vbox1->setContentsMargins(0, 0, 0, 0);
80     vbox1->setSpacing(0);
81
82     QScrollArea *area = new QScrollArea;
83     QWidget *wid = new QWidget(parent);
84     area->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
85     area->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
86     area->setFrameStyle(QFrame::NoFrame);
87     wid->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum));
88     area->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::MinimumExpanding));
89
90     vbox1->addWidget(area);
91     area->setWidget(wid);
92     area->setWidgetResizable(true);
93     m_vbox = new QVBoxLayout(wid);
94     m_vbox->setContentsMargins(0, 0, 0, 0);
95     m_vbox->setSpacing(0);
96     wid->show();
97
98 }
99
100 EffectStackEdit::~EffectStackEdit()
101 {
102     iconCache.clear();
103 }
104
105 void EffectStackEdit::setFrameSize(QPoint p)
106 {
107     m_frameSize = p;
108     QDomNodeList namenode = m_params.elementsByTagName("parameter");
109     for (int i = 0; i < namenode.count() ; i++) {
110         QDomNode pa = namenode.item(i);
111         QDomNode na = pa.firstChildElement("name");
112         QString type = pa.attributes().namedItem("type").nodeValue();
113         QString paramName = i18n(na.toElement().text().toUtf8().data());
114
115         if (type == "geometry") {
116             Geometryval *geom = ((Geometryval*)m_valueItems[paramName+"geometry"]);
117             geom->setFrameSize(m_frameSize);
118             break;
119         }
120     }
121
122 }
123
124 void EffectStackEdit::updateProjectFormat(MltVideoProfile profile, Timecode t)
125 {
126     m_profile = profile;
127     m_timecode = t;
128 }
129
130 void EffectStackEdit::updateParameter(const QString &name, const QString &value)
131 {
132     m_params.setAttribute(name, value);
133 }
134
135 void EffectStackEdit::transferParamDesc(const QDomElement& d, int in, int out)
136 {
137     kDebug() << "in";
138     m_params = d;
139     m_in = in;
140     m_out = out;
141     clearAllItems();
142     if (m_params.isNull()) return;
143
144     QDomDocument doc;
145     doc.appendChild(doc.importNode(m_params, true));
146     //kDebug() << "IMPORTED TRANS: " << doc.toString();
147     QDomNodeList namenode = m_params.elementsByTagName("parameter");
148     QDomElement e = m_params.toElement();
149     const int minFrame = e.attribute("start").toInt();
150     const int maxFrame = e.attribute("end").toInt();
151
152
153     for (int i = 0; i < namenode.count() ; i++) {
154         kDebug() << "in form";
155         QDomElement pa = namenode.item(i).toElement();
156         QDomNode na = pa.firstChildElement("name");
157         QString type = pa.attribute("type");
158         QString paramName = i18n(na.toElement().text().toUtf8().data());
159         QWidget * toFillin = new QWidget;
160         QString value = pa.attribute("value").isNull() ?
161                         pa.attribute("default") : pa.attribute("value");
162
163         if (type == "geometry") {
164             /*pa.setAttribute("namedesc", "X;Y;Width;Height;Transparency");
165             pa.setAttribute("format", "%d%,%d%:%d%x%d%:%d");
166             pa.setAttribute("min", "-500;-500;0;0;0");
167             pa.setAttribute("max", "500;500;200;200;100");*/
168         } else if (type == "complex") {
169             //pa.setAttribute("namedesc",pa.attribute("name"));
170
171         }
172
173
174         //TODO constant, list, bool, complex , color, geometry, position
175         if (type == "double" || type == "constant") {
176             int min;
177             int max;
178             if (pa.attribute("min").startsWith('%')) {
179                 min = (int) ProfilesDialog::getStringEval(m_profile, pa.attribute("min"));
180             } else min = pa.attribute("min").toInt();
181             if (pa.attribute("max").startsWith('%')) {
182                 max = (int) ProfilesDialog::getStringEval(m_profile, pa.attribute("max"));
183             } else max = pa.attribute("max").toInt();
184             createSliderItem(paramName, (int)(value.toDouble() + 0.5) , min, max);
185             delete toFillin;
186             toFillin = NULL;
187         } else if (type == "list") {
188             Listval *lsval = new Listval;
189             lsval->setupUi(toFillin);
190             QStringList listitems = pa.attribute("paramlist").split(',');
191             QStringList listitemsdisplay = pa.attribute("paramlistdisplay").split(',');
192             if (listitemsdisplay.count() != listitems.count()) listitemsdisplay = listitems;
193             //lsval->list->addItems(listitems);
194             lsval->list->setIconSize(QSize(30, 30));
195             for (int i = 0; i < listitems.count(); i++) {
196                 lsval->list->addItem(listitemsdisplay.at(i), listitems.at(i));
197                 QString entry = listitems.at(i);
198                 if (!entry.isEmpty() && (entry.endsWith(".png") || entry.endsWith(".pgm"))) {
199                     if (!EffectStackEdit::iconCache.contains(entry)) {
200                         QImage pix(entry);
201                         EffectStackEdit::iconCache[entry] = pix.scaled(30, 30);
202                     }
203                     lsval->list->setItemIcon(i, QPixmap::fromImage(iconCache[entry]));
204                 }
205             }
206             if (!value.isEmpty()) lsval->list->setCurrentIndex(listitems.indexOf(value));
207             lsval->title->setTitle(paramName);
208             m_valueItems[paramName] = lsval;
209             connect(lsval->list, SIGNAL(currentIndexChanged(int)) , this, SLOT(collectAllParameters()));
210             m_uiItems.append(lsval);
211         } else if (type == "bool") {
212             Boolval *bval = new Boolval;
213             bval->setupUi(toFillin);
214             bval->checkBox->setCheckState(value == "0" ? Qt::Unchecked : Qt::Checked);
215             bval->checkBox->setText(paramName);
216             m_valueItems[paramName] = bval;
217             connect(bval->checkBox, SIGNAL(stateChanged(int)) , this, SLOT(collectAllParameters()));
218             m_uiItems.append(bval);
219         } else if (type == "complex") {
220             /*QStringList names=nodeAtts.namedItem("name").nodeValue().split(';');
221             QStringList max=nodeAtts.namedItem("max").nodeValue().split(';');
222             QStringList min=nodeAtts.namedItem("min").nodeValue().split(';');
223             QStringList val=value.split(';');
224             kDebug() << "in complex"<<names.size() << " " << max.size() << " " << min.size() << " " << val.size()  ;
225             if ( (names.size() == max.size() ) &&
226                  (names.size()== min.size()) &&
227                  (names.size()== val.size()) )
228             {
229              for (int i=0;i< names.size();i++){
230               createSliderItem(names[i],val[i].toInt(),min[i].toInt(),max[i].toInt());
231              };
232             }*/
233             ComplexParameter *pl = new ComplexParameter;
234             pl->setupParam(d, pa.attribute("name"), 0, 100);
235             m_vbox->addWidget(pl);
236             m_valueItems[paramName+"complex"] = pl;
237             connect(pl, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
238             m_items.append(pl);
239         } else if (type == "geometry") {
240             Geometryval *geo = new Geometryval(m_profile, m_frameSize);
241             geo->setupParam(pa, minFrame, maxFrame);
242             m_vbox->addWidget(geo);
243             m_valueItems[paramName+"geometry"] = geo;
244             connect(geo, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
245             connect(geo, SIGNAL(seekToPos(int)), this, SLOT(slotSeekToPos(int)));
246             m_items.append(geo);
247         } else if (type == "keyframe") {
248             // keyframe editor widget
249             kDebug() << "min: " << m_in << ", MAX: " << m_out;
250             KeyframeEdit *geo = new KeyframeEdit(pa, m_out - m_in, m_timecode);
251             //geo->setupParam(100, pa.attribute("min").toInt(), pa.attribute("max").toInt(), pa.attribute("keyframes"));
252             //connect(geo, SIGNAL(seekToPos(int)), this, SLOT(slotSeekToPos(int)));
253             //geo->setupParam(pa, minFrame, maxFrame);
254             m_vbox->addWidget(geo);
255             m_valueItems[paramName+"keyframe"] = geo;
256             connect(geo, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
257             m_items.append(geo);
258         } else if (type == "color") {
259             Colorval *cval = new Colorval;
260             cval->setupUi(toFillin);
261             bool ok;
262             if (value.startsWith('#')) value = value.replace('#', "0x");
263             cval->kcolorbutton->setColor(value.toUInt(&ok, 16));
264             //kDebug() << "color: " << value << ", " << value.toUInt(&ok, 16);
265             cval->label->setText(paramName);
266             m_valueItems[paramName] = cval;
267             connect(cval->kcolorbutton, SIGNAL(clicked()) , this, SLOT(collectAllParameters()));
268             m_uiItems.append(cval);
269         } else if (type == "position") {
270             Positionval *pval = new Positionval;
271             pval->setupUi(toFillin);
272             int pos = value.toInt();
273             if (d.attribute("id") == "fadein" || d.attribute("id") == "fade_from_black") {
274                 pos = pos - m_in;
275             } else if (d.attribute("id") == "fadeout" || d.attribute("id") == "fade_to_black") {
276                 // fadeout position starts from clip end
277                 pos = m_out - (pos - m_in);
278             }
279             pval->krestrictedline->setText(m_timecode.getTimecodeFromFrames(pos));
280             pval->label->setText(paramName);
281             m_valueItems[paramName + "position"] = pval;
282             connect(pval->krestrictedline, SIGNAL(editingFinished()), this, SLOT(collectAllParameters()));
283             m_uiItems.append(pval);
284         } else if (type == "wipe") {
285             Wipeval *wpval = new Wipeval;
286             wpval->setupUi(toFillin);
287             wipeInfo w = getWipeInfo(value);
288             switch (w.start) {
289             case UP:
290                 wpval->start_up->setChecked(true);
291                 break;
292             case DOWN:
293                 wpval->start_down->setChecked(true);
294                 break;
295             case RIGHT:
296                 wpval->start_right->setChecked(true);
297                 break;
298             case LEFT:
299                 wpval->start_left->setChecked(true);
300                 break;
301             default:
302                 wpval->start_center->setChecked(true);
303                 break;
304             }
305             switch (w.end) {
306             case UP:
307                 wpval->end_up->setChecked(true);
308                 break;
309             case DOWN:
310                 wpval->end_down->setChecked(true);
311                 break;
312             case RIGHT:
313                 wpval->end_right->setChecked(true);
314                 break;
315             case LEFT:
316                 wpval->end_left->setChecked(true);
317                 break;
318             default:
319                 wpval->end_center->setChecked(true);
320                 break;
321             }
322             wpval->start_transp->setValue(w.startTransparency);
323             wpval->end_transp->setValue(w.endTransparency);
324             m_valueItems[paramName] = wpval;
325             connect(wpval->end_up, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
326             connect(wpval->end_down, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
327             connect(wpval->end_left, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
328             connect(wpval->end_right, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
329             connect(wpval->end_center, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
330             connect(wpval->start_up, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
331             connect(wpval->start_down, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
332             connect(wpval->start_left, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
333             connect(wpval->start_right, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
334             connect(wpval->start_center, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
335             connect(wpval->start_transp, SIGNAL(valueChanged(int)), this, SLOT(collectAllParameters()));
336             connect(wpval->end_transp, SIGNAL(valueChanged(int)), this, SLOT(collectAllParameters()));
337             //wpval->title->setTitle(na.toElement().text());
338             m_uiItems.append(wpval);
339         } else {
340             delete toFillin;
341             toFillin = NULL;
342         }
343
344         if (toFillin) {
345             m_items.append(toFillin);
346             m_vbox->addWidget(toFillin);
347         }
348     }
349     m_vbox->addStretch();
350 }
351
352 void EffectStackEdit::slotSeekToPos(int pos)
353 {
354     emit seekTimeline(m_in + pos);
355 }
356
357 wipeInfo EffectStackEdit::getWipeInfo(QString value)
358 {
359     wipeInfo info;
360     QString start = value.section(';', 0, 0);
361     QString end = value.section(';', 1, 1).section('=', 1, 1);
362     if (start.startsWith("-100%,0")) info.start = LEFT;
363     else if (start.startsWith("100%,0")) info.start = RIGHT;
364     else if (start.startsWith("0%,100%")) info.start = DOWN;
365     else if (start.startsWith("0%,-100%")) info.start = UP;
366     else info.start = CENTER;
367     if (start.count(':') == 2) info.startTransparency = start.section(':', -1).toInt();
368     else info.startTransparency = 100;
369
370     if (end.startsWith("-100%,0")) info.end = LEFT;
371     else if (end.startsWith("100%,0")) info.end = RIGHT;
372     else if (end.startsWith("0%,100%")) info.end = DOWN;
373     else if (end.startsWith("0%,-100%")) info.end = UP;
374     else info.end = CENTER;
375     if (end.count(':') == 2) info.endTransparency = end.section(':', -1).toInt();
376     else info.endTransparency = 100;
377     return info;
378 }
379
380 QString EffectStackEdit::getWipeString(wipeInfo info)
381 {
382
383     QString start;
384     QString end;
385     switch (info.start) {
386     case LEFT:
387         start = "-100%,0%:100%x100%";
388         break;
389     case RIGHT:
390         start = "100%,0%:100%x100%";
391         break;
392     case DOWN:
393         start = "0%,100%:100%x100%";
394         break;
395     case UP:
396         start = "0%,-100%:100%x100%";
397         break;
398     default:
399         start = "0%,0%:100%x100%";
400         break;
401     }
402     start.append(':' + QString::number(info.startTransparency));
403
404     switch (info.end) {
405     case LEFT:
406         end = "-100%,0%:100%x100%";
407         break;
408     case RIGHT:
409         end = "100%,0%:100%x100%";
410         break;
411     case DOWN:
412         end = "0%,100%:100%x100%";
413         break;
414     case UP:
415         end = "0%,-100%:100%x100%";
416         break;
417     default:
418         end = "0%,0%:100%x100%";
419         break;
420     }
421     end.append(':' + QString::number(info.endTransparency));
422     return QString(start + ";-1=" + end);
423 }
424
425 void EffectStackEdit::collectAllParameters()
426 {
427     if (m_valueItems.isEmpty()) return;
428     QDomElement oldparam = m_params.cloneNode().toElement();
429     QDomNodeList namenode = m_params.elementsByTagName("parameter");
430
431     for (int i = 0; i < namenode.count() ; i++) {
432         QDomNode pa = namenode.item(i);
433         QDomNode na = pa.firstChildElement("name");
434         QString type = pa.attributes().namedItem("type").nodeValue();
435         QString paramName = i18n(na.toElement().text().toUtf8().data());
436         if (type == "complex") paramName.append("complex");
437         else if (type == "position") paramName.append("position");
438         else if (type == "geometry") paramName.append("geometry");
439         else if (type == "keyframe") paramName.append("keyframe");
440         if (!m_valueItems.contains(paramName)) {
441             kDebug() << "// Param: " << paramName << " NOT FOUND";
442             continue;
443         }
444
445         QString setValue;
446         if (type == "double" || type == "constant") {
447             QSlider* slider = ((Constval*)m_valueItems.value(paramName))->horizontalSlider;
448             setValue = QString::number(slider->value());
449         } else if (type == "list") {
450             KComboBox *box = ((Listval*)m_valueItems.value(paramName))->list;
451             setValue = box->itemData(box->currentIndex()).toString();
452         } else if (type == "bool") {
453             QCheckBox *box = ((Boolval*)m_valueItems.value(paramName))->checkBox;
454             setValue = box->checkState() == Qt::Checked ? "1" : "0" ;
455         } else if (type == "color") {
456             KColorButton *color = ((Colorval*)m_valueItems.value(paramName))->kcolorbutton;
457             setValue = color->color().name();
458         } else if (type == "complex") {
459             ComplexParameter *complex = ((ComplexParameter*)m_valueItems.value(paramName));
460             namenode.item(i) = complex->getParamDesc();
461         } else if (type == "geometry") {
462             Geometryval *geom = ((Geometryval*)m_valueItems.value(paramName));
463             namenode.item(i) = geom->getParamDesc();
464         } else if (type == "position") {
465             KRestrictedLine *line = ((Positionval*)m_valueItems.value(paramName))->krestrictedline;
466             int pos = m_timecode.getFrameCount(line->text(), KdenliveSettings::project_fps());
467             setValue = QString::number(pos);
468             if (m_params.attribute("id") == "fadein" || m_params.attribute("id") == "fade_from_black") {
469                 // Make sure duration is not longer than clip
470                 if (pos > m_out) {
471                     pos = m_out;
472                     line->setText(m_timecode.getTimecodeFromFrames(pos));
473                 }
474                 EffectsList::setParameter(m_params, "in", QString::number(m_in));
475                 EffectsList::setParameter(m_params, "out", QString::number(m_in + pos));
476                 setValue.clear();
477             } else if (m_params.attribute("id") == "fadeout" || m_params.attribute("id") == "fade_to_black") {
478                 // Make sure duration is not longer than clip
479                 if (pos > m_out) {
480                     pos = m_out;
481                     line->setText(m_timecode.getTimecodeFromFrames(pos));
482                 }
483                 EffectsList::setParameter(m_params, "in", QString::number(m_out + m_in - pos));
484                 EffectsList::setParameter(m_params, "out", QString::number(m_out + m_in));
485                 setValue.clear();
486             }
487         } else if (type == "wipe") {
488             Wipeval *wp = (Wipeval*)m_valueItems.value(paramName);
489             wipeInfo info;
490             if (wp->start_left->isChecked()) info.start = LEFT;
491             else if (wp->start_right->isChecked()) info.start = RIGHT;
492             else if (wp->start_up->isChecked()) info.start = UP;
493             else if (wp->start_down->isChecked()) info.start = DOWN;
494             else if (wp->start_center->isChecked()) info.start = CENTER;
495             else info.start = LEFT;
496             info.startTransparency = wp->start_transp->value();
497             if (wp->end_left->isChecked()) info.end = LEFT;
498             else if (wp->end_right->isChecked()) info.end = RIGHT;
499             else if (wp->end_up->isChecked()) info.end = UP;
500             else if (wp->end_down->isChecked()) info.end = DOWN;
501             else if (wp->end_center->isChecked()) info.end = CENTER;
502             else info.end = RIGHT;
503             info.endTransparency = wp->end_transp->value();
504             setValue = getWipeString(info);
505         }
506
507         if (!setValue.isNull()) {
508             pa.attributes().namedItem("value").setNodeValue(setValue);
509         }
510     }
511     emit parameterChanged(oldparam, m_params);
512 }
513
514 void EffectStackEdit::createSliderItem(const QString& name, int val , int min, int max)
515 {
516     QWidget* toFillin = new QWidget;
517     Constval *ctval = new Constval;
518     ctval->setupUi(toFillin);
519     ctval->horizontalSlider->setMinimum(min);
520     ctval->horizontalSlider->setMaximum(max);
521     ctval->spinBox->setMinimum(min);
522     ctval->spinBox->setMaximum(max);
523     ctval->horizontalSlider->setPageStep((int)(max - min) / 10);
524     ctval->horizontalSlider->setValue(val);
525     ctval->label->setText(name);
526     m_valueItems[name] = ctval;
527     m_uiItems.append(ctval);
528     connect(ctval->horizontalSlider, SIGNAL(valueChanged(int)) , this, SLOT(collectAllParameters()));
529     m_items.append(toFillin);
530     m_vbox->addWidget(toFillin);
531 }
532
533 void EffectStackEdit::slotSliderMoved(int)
534 {
535     collectAllParameters();
536 }
537
538 void EffectStackEdit::clearAllItems()
539 {
540     blockSignals(true);
541     m_valueItems.clear();
542
543     while (!m_items.isEmpty()) {
544         QWidget * die = m_items.takeFirst();
545         die->disconnect();
546         delete die;
547     }
548
549     qDeleteAll(m_uiItems);
550     m_uiItems.clear();
551     m_items.clear();
552     QLayoutItem *item = m_vbox->itemAt(0);
553     while (item) {
554         m_vbox->removeItem(item);
555         delete item;
556         item = m_vbox->itemAt(0);
557     }
558     blockSignals(false);
559 }