]> git.sesse.net Git - kdenlive/blob - src/effectstackedit.cpp
Add proper support for 'float' parameter type in effect's drag widget (required for...
[kdenlive] / src / effectstackedit.cpp
1 /***************************************************************************
2                           effecstackedit.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_listval_ui.h"
20 #include "ui_boolval_ui.h"
21 #include "ui_wipeval_ui.h"
22 #include "ui_urlval_ui.h"
23 #include "complexparameter.h"
24 #include "geometryval.h"
25 #include "positionedit.h"
26 #include "projectlist.h"
27 #include "effectslist.h"
28 #include "kdenlivesettings.h"
29 #include "profilesdialog.h"
30 #include "kis_curve_widget.h"
31 #include "kis_cubic_curve.h"
32 #include "choosecolorwidget.h"
33 #include "geometrywidget.h"
34 #include "colortools.h"
35 #include "doubleparameterwidget.h"
36 #include "cornerswidget.h"
37 #include "beziercurve/beziersplinewidget.h"
38 #ifdef QJSON
39 #include "rotoscoping/rotowidget.h"
40 #endif
41
42 #include <KDebug>
43 #include <KLocale>
44 #include <KFileDialog>
45 #include <KColorScheme>
46
47 #include <QVBoxLayout>
48 #include <QLabel>
49 #include <QPushButton>
50 #include <QCheckBox>
51 #include <QScrollArea>
52
53 // For QDomNode debugging (output into files); leaving here as sample code.
54 //#define DEBUG_ESE
55
56
57 class Boolval: public QWidget, public Ui::Boolval_UI
58 {
59 };
60
61 class Listval: public QWidget, public Ui::Listval_UI
62 {
63 };
64
65 class Wipeval: public QWidget, public Ui::Wipeval_UI
66 {
67 };
68
69 class Urlval: public QWidget, public Ui::Urlval_UI
70 {
71 };
72
73 QMap<QString, QImage> EffectStackEdit::iconCache;
74
75 EffectStackEdit::EffectStackEdit(Monitor *monitor, QWidget *parent) :
76     QScrollArea(parent),
77     m_in(0),
78     m_out(0),
79     m_frameSize(QPoint()),
80     m_keyframeEditor(NULL),
81     m_monitor(monitor),
82     m_geometryWidget(NULL)
83 {
84     m_baseWidget = new QWidget(this);
85     setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
86     setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
87     setFrameStyle(QFrame::NoFrame);
88     setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::MinimumExpanding));
89     
90     QPalette p = palette();
91     KColorScheme scheme(p.currentColorGroup(), KColorScheme::View, KSharedConfig::openConfig(KdenliveSettings::colortheme()));
92     QColor dark_bg = scheme.shade(KColorScheme::DarkShade);
93     QColor selected_bg = scheme.decoration(KColorScheme::FocusColor).color();
94     QColor hover_bg = scheme.decoration(KColorScheme::HoverColor).color();    
95     QColor light_bg = scheme.shade(KColorScheme::LightShade);
96     
97     QString stylesheet(QString("QProgressBar:horizontal {border: 1px solid %1;border-radius:0px;border-top-left-radius: 4px;border-bottom-left-radius: 4px;border-right: 0px;background:%4;padding: 0px;text-align:left center}\
98                                 QProgressBar:horizontal#dragOnly {background: %1} QProgressBar:horizontal:hover#dragOnly {background: %3} QProgressBar:horizontal:hover {border: 1px solid %3;border-right: 0px;}\
99                                 QProgressBar::chunk:horizontal {background: %1;} QProgressBar::chunk:horizontal:hover {background: %3;}\
100                                 QProgressBar:horizontal[inTimeline=\"true\"] { border: 1px solid %2;border-right: 0px;background: %4;padding: 0px;text-align:left center } QProgressBar::chunk:horizontal[inTimeline=\"true\"] {background: %2;}\
101                                 QAbstractSpinBox#dragBox {border: 1px solid %1;border-top-right-radius: 4px;border-bottom-right-radius: 4px;padding-right:0px;} QAbstractSpinBox::down-button#dragBox {width:0px;padding:0px;}\
102                                 QAbstractSpinBox::up-button#dragBox {width:0px;padding:0px;} QAbstractSpinBox[inTimeline=\"true\"]#dragBox { border: 1px solid %2;} QAbstractSpinBox:hover#dragBox {border: 1px solid %3;} ")
103                                 .arg(dark_bg.name()).arg(selected_bg.name()).arg(hover_bg.name()).arg(light_bg.name()));
104     setStyleSheet(stylesheet);
105     
106     setWidget(m_baseWidget);
107     setWidgetResizable(true);
108     m_vbox = new QVBoxLayout(m_baseWidget);
109     m_vbox->setContentsMargins(0, 0, 0, 0);
110     m_vbox->setSpacing(2);
111 }
112
113 EffectStackEdit::~EffectStackEdit()
114 {
115     iconCache.clear();
116     delete m_baseWidget;
117 }
118
119 void EffectStackEdit::setFrameSize(QPoint p)
120 {
121     m_frameSize = p;
122     QDomNodeList namenode = m_params.elementsByTagName("parameter");
123     for (int i = 0; i < namenode.count() ; i++) {
124         QDomNode pa = namenode.item(i);
125         QDomNode na = pa.firstChildElement("name");
126         QString type = pa.attributes().namedItem("type").nodeValue();
127         QString paramName = i18n(na.toElement().text().toUtf8().data());
128
129         if (type == "geometry") {
130             if (!KdenliveSettings::on_monitor_effects()) {
131                 Geometryval *geom = ((Geometryval*)m_valueItems[paramName+"geometry"]);
132                 geom->setFrameSize(m_frameSize);
133                 break;
134             }
135             else {
136                 if (m_geometryWidget) m_geometryWidget->setFrameSize(m_frameSize);
137                 break;
138             }
139         }
140     }
141 }
142
143 void EffectStackEdit::updateTimecodeFormat()
144 {
145     if (m_keyframeEditor)
146         m_keyframeEditor->updateTimecodeFormat();
147
148     QDomNodeList namenode = m_params.elementsByTagName("parameter");
149     for (int i = 0; i < namenode.count() ; i++) {
150         QDomNode pa = namenode.item(i);
151         QDomNode na = pa.firstChildElement("name");
152         QString type = pa.attributes().namedItem("type").nodeValue();
153         QString paramName = i18n(na.toElement().text().toUtf8().data());
154
155         if (type == "geometry") {
156             if (KdenliveSettings::on_monitor_effects()) {
157                 if (m_geometryWidget) m_geometryWidget->updateTimecodeFormat();
158             } else {
159                 Geometryval *geom = ((Geometryval*)m_valueItems[paramName+"geometry"]);
160                 geom->updateTimecodeFormat();
161             }
162             break;
163         } else if (type == "position") {
164             PositionEdit *posi = ((PositionEdit*)m_valueItems[paramName+"position"]);
165             posi->updateTimecodeFormat();
166             break;
167         } else if (type == "roto-spline") {
168             RotoWidget *widget = static_cast<RotoWidget *>(m_valueItems[paramName]);
169             widget->updateTimecodeFormat();
170         }
171     }
172 }
173
174 void EffectStackEdit::meetDependency(const QString& name, QString type, QString value)
175 {
176     if (type == "curve") {
177         KisCurveWidget *curve = (KisCurveWidget*)m_valueItems[name];
178         if (curve) {
179             int color = value.toInt();
180             curve->setPixmap(QPixmap::fromImage(ColorTools::rgbCurvePlane(curve->size(), (ColorTools::ColorsRGB)(color == 3 ? 4 : color), 0.8)));
181         }
182     } else if (type == "bezier_spline") {
183         BezierSplineWidget *widget = (BezierSplineWidget*)m_valueItems[name];
184         if (widget) {
185             widget->setMode((BezierSplineWidget::CurveModes)((int)(value.toDouble() * 10)));
186         }
187     }
188 }
189
190 void EffectStackEdit::updateProjectFormat(MltVideoProfile profile, Timecode t)
191 {
192     m_profile = profile;
193     m_timecode = t;
194 }
195
196 void EffectStackEdit::updateParameter(const QString &name, const QString &value)
197 {
198     m_params.setAttribute(name, value);
199
200     if (name == "disable") {
201         // if effect is disabled, disable parameters widget
202         bool enabled = value.toInt() == 0 || !KdenliveSettings::disable_effect_parameters();
203         setEnabled(enabled);
204         emit effectStateChanged(enabled);
205     }
206 }
207
208 void EffectStackEdit::transferParamDesc(const QDomElement d, ItemInfo info, bool isEffect)
209 {
210     clearAllItems();
211     if (m_keyframeEditor) delete m_keyframeEditor;
212     m_keyframeEditor = NULL;
213     m_params = d;
214     m_in = isEffect ? info.cropStart.frames(KdenliveSettings::project_fps()) : info.startPos.frames(KdenliveSettings::project_fps());
215     m_out = isEffect ? (info.cropStart + info.cropDuration).frames(KdenliveSettings::project_fps()) - 1 : info.endPos.frames(KdenliveSettings::project_fps());
216     if (m_params.isNull()) {
217 //         kDebug() << "// EMPTY EFFECT STACK";
218         return;
219     }
220
221     QDomNodeList namenode = m_params.elementsByTagName("parameter");
222 #ifdef DEBUG_ESE
223     QFile debugFile("/tmp/namenodes.txt");
224     if (debugFile.open(QFile::WriteOnly | QFile::Truncate)) {
225         QTextStream out(&debugFile);
226         QTextStream out2(stdout);
227         for (int i = 0; i < namenode.size(); i++) {
228             out << i << ": \n";
229             namenode.at(i).save(out, 2);
230             out2 << i << ": \n";
231             namenode.at(i).save(out2, 2);
232         }
233     }
234 #endif
235     QDomElement e = m_params.toElement();
236     const int minFrame = e.attribute("start").toInt();
237     const int maxFrame = e.attribute("end").toInt();
238
239     bool disable = d.attribute("disable") == "1" && KdenliveSettings::disable_effect_parameters();
240     setEnabled(!disable);
241
242     bool stretch = true;
243
244
245     for (int i = 0; i < namenode.count() ; i++) {
246         QDomElement pa = namenode.item(i).toElement();
247         QDomElement na = pa.firstChildElement("name");
248         QDomElement commentElem = pa.firstChildElement("comment");
249         QString type = pa.attribute("type");
250         QString paramName = i18n(na.text().toUtf8().data());
251         QString comment;
252         if (!commentElem.isNull())
253             comment = i18n(commentElem.text().toUtf8().data());
254         QWidget * toFillin = new QWidget(m_baseWidget);
255         QString value = pa.attribute("value").isNull() ?
256                         pa.attribute("default") : pa.attribute("value");
257
258
259         /** See effects/README for info on the different types */
260
261         if (type == "double" || type == "constant") {
262             double min;
263             double max;
264             if (pa.attribute("min").startsWith('%'))
265                 min = ProfilesDialog::getStringEval(m_profile, pa.attribute("min"));
266             else
267                 min = pa.attribute("min").toDouble();
268             if (pa.attribute("max").startsWith('%'))
269                 max = ProfilesDialog::getStringEval(m_profile, pa.attribute("max"));
270             else
271                 max = pa.attribute("max").toDouble();
272
273             DoubleParameterWidget *doubleparam = new DoubleParameterWidget(paramName, value.toDouble(), min, max,
274                     pa.attribute("default").toDouble(), comment, -1, pa.attribute("suffix"), pa.attribute("decimals").toInt(), this);
275             m_vbox->addWidget(doubleparam);
276             m_valueItems[paramName] = doubleparam;
277             connect(doubleparam, SIGNAL(valueChanged(int)), this, SLOT(collectAllParameters()));
278             connect(this, SIGNAL(showComments(bool)), doubleparam, SLOT(slotShowComment(bool)));
279         } else if (type == "list") {
280             Listval *lsval = new Listval;
281             lsval->setupUi(toFillin);
282             QStringList listitems = pa.attribute("paramlist").split(',');
283             QDomElement list = pa.firstChildElement("paramlistdisplay");
284             QStringList listitemsdisplay;
285             if (!list.isNull()) listitemsdisplay = i18n(list.text().toUtf8().data()).split(',');
286             else listitemsdisplay = i18n(pa.attribute("paramlistdisplay").toUtf8().data()).split(',');
287             if (listitemsdisplay.count() != listitems.count())
288                 listitemsdisplay = listitems;
289             lsval->list->setIconSize(QSize(30, 30));
290             for (int i = 0; i < listitems.count(); i++) {
291                 lsval->list->addItem(listitemsdisplay.at(i), listitems.at(i));
292                 QString entry = listitems.at(i);
293                 if (!entry.isEmpty() && (entry.endsWith(".png") || entry.endsWith(".pgm"))) {
294                     if (!EffectStackEdit::iconCache.contains(entry)) {
295                         QImage pix(entry);
296                         EffectStackEdit::iconCache[entry] = pix.scaled(30, 30);
297                     }
298                     lsval->list->setItemIcon(i, QPixmap::fromImage(iconCache[entry]));
299                 }
300             }
301             if (!value.isEmpty()) lsval->list->setCurrentIndex(listitems.indexOf(value));
302             lsval->name->setText(paramName);
303             lsval->labelComment->setText(comment);
304             lsval->widgetComment->setHidden(true);
305             m_valueItems[paramName] = lsval;
306             connect(lsval->list, SIGNAL(currentIndexChanged(int)) , this, SLOT(collectAllParameters()));
307             if (!comment.isEmpty())
308                 connect(this, SIGNAL(showComments(bool)), lsval->widgetComment, SLOT(setVisible(bool)));
309             m_uiItems.append(lsval);
310         } else if (type == "bool") {
311             Boolval *bval = new Boolval;
312             bval->setupUi(toFillin);
313             bval->checkBox->setCheckState(value == "0" ? Qt::Unchecked : Qt::Checked);
314             bval->name->setText(paramName);
315             bval->labelComment->setText(comment);
316             bval->widgetComment->setHidden(true);
317             m_valueItems[paramName] = bval;
318             connect(bval->checkBox, SIGNAL(stateChanged(int)) , this, SLOT(collectAllParameters()));
319             if (!comment.isEmpty())
320                 connect(this, SIGNAL(showComments(bool)), bval->widgetComment, SLOT(setVisible(bool)));
321             m_uiItems.append(bval);
322         } else if (type == "complex") {
323             ComplexParameter *pl = new ComplexParameter;
324             pl->setupParam(d, pa.attribute("name"), 0, 100);
325             m_vbox->addWidget(pl);
326             m_valueItems[paramName+"complex"] = pl;
327             connect(pl, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
328         } else if (type == "geometry") {
329             if (KdenliveSettings::on_monitor_effects()) {
330                 m_geometryWidget = new GeometryWidget(m_monitor, m_timecode, isEffect ? 0 : qMax(0, (int)info.startPos.frames(KdenliveSettings::project_fps())), isEffect, m_params.hasAttribute("showrotation"), this);
331                 m_geometryWidget->setFrameSize(m_frameSize);
332                 m_geometryWidget->slotShowScene(!disable);
333                 // connect this before setupParam to make sure the monitor scene shows up at startup
334                 connect(m_geometryWidget, SIGNAL(checkMonitorPosition(int)), this, SIGNAL(checkMonitorPosition(int)));
335                 connect(m_geometryWidget, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
336                 if (minFrame == maxFrame)
337                     m_geometryWidget->setupParam(pa, m_in, m_out);
338                 else
339                     m_geometryWidget->setupParam(pa, minFrame, maxFrame);
340                 m_vbox->addWidget(m_geometryWidget);
341                 m_valueItems[paramName+"geometry"] = m_geometryWidget;
342                 connect(m_geometryWidget, SIGNAL(seekToPos(int)), this, SIGNAL(seekTimeline(int)));
343                 connect(this, SIGNAL(syncEffectsPos(int)), m_geometryWidget, SLOT(slotSyncPosition(int)));
344                 connect(this, SIGNAL(effectStateChanged(bool)), m_geometryWidget, SLOT(slotShowScene(bool)));
345             } else {
346                 Geometryval *geo = new Geometryval(m_profile, m_timecode, m_frameSize, isEffect ? 0 : qMax(0, (int)info.startPos.frames(KdenliveSettings::project_fps())));
347                 if (minFrame == maxFrame)
348                     geo->setupParam(pa, m_in, m_out);
349                 else
350                     geo->setupParam(pa, minFrame, maxFrame);
351                 m_vbox->addWidget(geo);
352                 m_valueItems[paramName+"geometry"] = geo;
353                 connect(geo, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
354                 connect(geo, SIGNAL(seekToPos(int)), this, SIGNAL(seekTimeline(int)));
355                 connect(this, SIGNAL(syncEffectsPos(int)), geo, SLOT(slotSyncPosition(int)));
356             }
357         } else if (type == "addedgeometry") {
358             // this is a parameter that should be linked to the geometry widget, for example rotation, shear, ...
359             if (m_geometryWidget) m_geometryWidget->addParameter(pa);
360         } else if (type == "keyframe" || type == "simplekeyframe") {
361             // keyframe editor widget
362             if (m_keyframeEditor == NULL) {
363                 KeyframeEdit *geo;
364                 if (pa.attribute("widget") == "corners") {
365                     // we want a corners-keyframe-widget
366                     CornersWidget *corners = new CornersWidget(m_monitor, pa, m_in, m_out, m_timecode, e.attribute("active_keyframe", "-1").toInt(), this);
367                     corners->slotShowScene(!disable);
368                     connect(corners, SIGNAL(checkMonitorPosition(int)), this, SIGNAL(checkMonitorPosition(int)));
369                     connect(this, SIGNAL(effectStateChanged(bool)), corners, SLOT(slotShowScene(bool)));
370                     connect(this, SIGNAL(syncEffectsPos(int)), corners, SLOT(slotSyncPosition(int)));
371                     geo = static_cast<KeyframeEdit *>(corners);
372                 } else {
373                     geo = new KeyframeEdit(pa, m_in, m_out, m_timecode, e.attribute("active_keyframe", "-1").toInt());
374                 }
375                 m_vbox->addWidget(geo);
376                 m_valueItems[paramName+"keyframe"] = geo;
377                 m_keyframeEditor = geo;
378                 connect(geo, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
379                 connect(geo, SIGNAL(seekToPos(int)), this, SIGNAL(seekTimeline(int)));
380                 connect(this, SIGNAL(showComments(bool)), geo, SIGNAL(showComments(bool)));
381             } else {
382                 // we already have a keyframe editor, so just add another column for the new param
383                 m_keyframeEditor->addParameter(pa);
384             }
385         } else if (type == "color") {
386             if (value.startsWith('#'))
387                 value = value.replace('#', "0x");
388             bool ok;
389             ChooseColorWidget *choosecolor = new ChooseColorWidget(paramName, QColor(value.toUInt(&ok, 16)), this);
390             m_vbox->addWidget(choosecolor);
391             m_valueItems[paramName] = choosecolor;
392             connect(choosecolor, SIGNAL(displayMessage(const QString&, int)), this, SIGNAL(displayMessage(const QString&, int)));
393             connect(choosecolor, SIGNAL(modified()) , this, SLOT(collectAllParameters()));
394         } else if (type == "position") {
395             int pos = value.toInt();
396             if (d.attribute("id") == "fadein" || d.attribute("id") == "fade_from_black") {
397                 pos = pos - m_in;
398             } else if (d.attribute("id") == "fadeout" || d.attribute("id") == "fade_to_black") {
399                 // fadeout position starts from clip end
400                 pos = m_out - pos;
401             }
402             PositionEdit *posedit = new PositionEdit(paramName, pos, 0, m_out - m_in, m_timecode);
403             m_vbox->addWidget(posedit);
404             m_valueItems[paramName+"position"] = posedit;
405             connect(posedit, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
406         } else if (type == "curve") {
407             KisCurveWidget *curve = new KisCurveWidget(this);
408             curve->setMaxPoints(pa.attribute("max").toInt());
409             QList<QPointF> points;
410             int number = EffectsList::parameter(e, pa.attribute("number")).toInt();
411             QString inName = pa.attribute("inpoints");
412             QString outName = pa.attribute("outpoints");
413             int start = pa.attribute("min").toInt();
414             for (int j = start; j <= number; j++) {
415                 QString in = inName;
416                 in.replace("%i", QString::number(j));
417                 QString out = outName;
418                 out.replace("%i", QString::number(j));
419                 points << QPointF(EffectsList::parameter(e, in).toDouble(), EffectsList::parameter(e, out).toDouble());
420             }
421             if (!points.isEmpty())
422                 curve->setCurve(KisCubicCurve(points));
423             QSpinBox *spinin = new QSpinBox();
424             spinin->setRange(0, 1000);
425             QSpinBox *spinout = new QSpinBox();
426             spinout->setRange(0, 1000);
427             curve->setupInOutControls(spinin, spinout, 0, 1000);
428             m_vbox->addWidget(curve);
429             m_vbox->addWidget(spinin);
430             m_vbox->addWidget(spinout);
431
432             connect(curve, SIGNAL(modified()), this, SLOT(collectAllParameters()));
433             m_valueItems[paramName] = curve;
434
435             QString depends = pa.attribute("depends");
436             if (!depends.isEmpty())
437                 meetDependency(paramName, type, EffectsList::parameter(e, depends));
438         } else if (type == "bezier_spline") {
439             BezierSplineWidget *widget = new BezierSplineWidget(value, this);
440             stretch = false;
441             m_vbox->addWidget(widget);
442             m_valueItems[paramName] = widget;
443             connect(widget, SIGNAL(modified()), this, SLOT(collectAllParameters()));
444             QString depends = pa.attribute("depends");
445             if (!depends.isEmpty())
446                 meetDependency(paramName, type, EffectsList::parameter(e, depends));
447 #ifdef QJSON
448         } else if (type == "roto-spline") {
449             RotoWidget *roto = new RotoWidget(value, m_monitor, info, m_timecode, this);
450             roto->slotShowScene(!disable);
451             connect(roto, SIGNAL(valueChanged()), this, SLOT(collectAllParameters()));
452             connect(roto, SIGNAL(checkMonitorPosition(int)), this, SIGNAL(checkMonitorPosition(int)));
453             connect(roto, SIGNAL(seekToPos(int)), this, SIGNAL(seekTimeline(int)));
454             connect(this, SIGNAL(syncEffectsPos(int)), roto, SLOT(slotSyncPosition(int)));
455             connect(this, SIGNAL(effectStateChanged(bool)), roto, SLOT(slotShowScene(bool)));
456             m_vbox->addWidget(roto);
457             m_valueItems[paramName] = roto;
458 #endif
459         } else if (type == "wipe") {
460             Wipeval *wpval = new Wipeval;
461             wpval->setupUi(toFillin);
462             wipeInfo w = getWipeInfo(value);
463             switch (w.start) {
464             case UP:
465                 wpval->start_up->setChecked(true);
466                 break;
467             case DOWN:
468                 wpval->start_down->setChecked(true);
469                 break;
470             case RIGHT:
471                 wpval->start_right->setChecked(true);
472                 break;
473             case LEFT:
474                 wpval->start_left->setChecked(true);
475                 break;
476             default:
477                 wpval->start_center->setChecked(true);
478                 break;
479             }
480             switch (w.end) {
481             case UP:
482                 wpval->end_up->setChecked(true);
483                 break;
484             case DOWN:
485                 wpval->end_down->setChecked(true);
486                 break;
487             case RIGHT:
488                 wpval->end_right->setChecked(true);
489                 break;
490             case LEFT:
491                 wpval->end_left->setChecked(true);
492                 break;
493             default:
494                 wpval->end_center->setChecked(true);
495                 break;
496             }
497             wpval->start_transp->setValue(w.startTransparency);
498             wpval->end_transp->setValue(w.endTransparency);
499             m_valueItems[paramName] = wpval;
500             connect(wpval->end_up, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
501             connect(wpval->end_down, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
502             connect(wpval->end_left, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
503             connect(wpval->end_right, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
504             connect(wpval->end_center, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
505             connect(wpval->start_up, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
506             connect(wpval->start_down, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
507             connect(wpval->start_left, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
508             connect(wpval->start_right, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
509             connect(wpval->start_center, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
510             connect(wpval->start_transp, SIGNAL(valueChanged(int)), this, SLOT(collectAllParameters()));
511             connect(wpval->end_transp, SIGNAL(valueChanged(int)), this, SLOT(collectAllParameters()));
512             //wpval->title->setTitle(na.toElement().text());
513             m_uiItems.append(wpval);
514         } else if (type == "url") {
515             Urlval *cval = new Urlval;
516             cval->setupUi(toFillin);
517             cval->label->setText(paramName);
518             cval->urlwidget->fileDialog()->setFilter(ProjectList::getExtensions());
519             m_valueItems[paramName] = cval;
520             cval->urlwidget->setUrl(KUrl(value));
521             connect(cval->urlwidget, SIGNAL(returnPressed()) , this, SLOT(collectAllParameters()));
522             connect(cval->urlwidget, SIGNAL(urlSelected(const KUrl&)) , this, SLOT(collectAllParameters()));
523             m_uiItems.append(cval);
524         } else {
525             delete toFillin;
526             toFillin = NULL;
527         }
528
529         if (toFillin)
530             m_vbox->addWidget(toFillin);
531     }
532
533     if (stretch)
534         m_vbox->addStretch();
535
536     if (m_keyframeEditor)
537         m_keyframeEditor->checkVisibleParam();
538     
539     // Make sure all doubleparam spinboxes have the same width, looks much better
540     QList<DoubleParameterWidget *> allWidgets = findChildren<DoubleParameterWidget *>();
541     int minSize = 0;
542     for (int i = 0; i < allWidgets.count(); i++) {
543         if (minSize < allWidgets.at(i)->spinSize()) minSize = allWidgets.at(i)->spinSize();
544     }
545     for (int i = 0; i < allWidgets.count(); i++) {
546         allWidgets.at(i)->setSpinSize(minSize);
547     }
548 }
549
550 wipeInfo EffectStackEdit::getWipeInfo(QString value)
551 {
552     wipeInfo info;
553     QString start = value.section(';', 0, 0);
554     QString end = value.section(';', 1, 1).section('=', 1, 1);
555
556     if (start.startsWith("-100%,0"))
557         info.start = LEFT;
558     else if (start.startsWith("100%,0"))
559         info.start = RIGHT;
560     else if (start.startsWith("0%,100%"))
561         info.start = DOWN;
562     else if (start.startsWith("0%,-100%"))
563         info.start = UP;
564     else
565         info.start = CENTER;
566
567     if (start.count(':') == 2)
568         info.startTransparency = start.section(':', -1).toInt();
569     else
570         info.startTransparency = 100;
571
572     if (end.startsWith("-100%,0"))
573         info.end = LEFT;
574     else if (end.startsWith("100%,0"))
575         info.end = RIGHT;
576     else if (end.startsWith("0%,100%"))
577         info.end = DOWN;
578     else if (end.startsWith("0%,-100%"))
579         info.end = UP;
580     else
581         info.end = CENTER;
582
583     if (end.count(':') == 2)
584         info.endTransparency = end.section(':', -1).toInt();
585     else
586         info.endTransparency = 100;
587
588     return info;
589 }
590
591 QString EffectStackEdit::getWipeString(wipeInfo info)
592 {
593
594     QString start;
595     QString end;
596     switch (info.start) {
597     case LEFT:
598         start = "-100%,0%:100%x100%";
599         break;
600     case RIGHT:
601         start = "100%,0%:100%x100%";
602         break;
603     case DOWN:
604         start = "0%,100%:100%x100%";
605         break;
606     case UP:
607         start = "0%,-100%:100%x100%";
608         break;
609     default:
610         start = "0%,0%:100%x100%";
611         break;
612     }
613     start.append(':' + QString::number(info.startTransparency));
614
615     switch (info.end) {
616     case LEFT:
617         end = "-100%,0%:100%x100%";
618         break;
619     case RIGHT:
620         end = "100%,0%:100%x100%";
621         break;
622     case DOWN:
623         end = "0%,100%:100%x100%";
624         break;
625     case UP:
626         end = "0%,-100%:100%x100%";
627         break;
628     default:
629         end = "0%,0%:100%x100%";
630         break;
631     }
632     end.append(':' + QString::number(info.endTransparency));
633     return QString(start + ";-1=" + end);
634 }
635
636 void EffectStackEdit::collectAllParameters()
637 {
638     if (m_valueItems.isEmpty() || m_params.isNull()) return;
639     const QDomElement oldparam = m_params.cloneNode().toElement();
640     QDomElement newparam = oldparam.cloneNode().toElement();
641     QDomNodeList namenode = newparam.elementsByTagName("parameter");
642
643     for (int i = 0; i < namenode.count() ; i++) {
644         QDomNode pa = namenode.item(i);
645         QDomNode na = pa.firstChildElement("name");
646         QString type = pa.attributes().namedItem("type").nodeValue();
647         QString paramName = i18n(na.toElement().text().toUtf8().data());
648         if (type == "complex")
649             paramName.append("complex");
650         else if (type == "position")
651             paramName.append("position");
652         else if (type == "geometry")
653             paramName.append("geometry");
654         else if (type == "keyframe")
655             paramName.append("keyframe");
656         if (type != "simplekeyframe" && type != "fixed" && type != "addedgeometry" && !m_valueItems.contains(paramName)) {
657             kDebug() << "// Param: " << paramName << " NOT FOUND";
658             continue;
659         }
660
661         QString setValue;
662         if (type == "double" || type == "constant") {
663             DoubleParameterWidget *doubleparam = (DoubleParameterWidget*)m_valueItems.value(paramName);
664             setValue = QString::number(doubleparam->getValue());
665         } else if (type == "list") {
666             KComboBox *box = ((Listval*)m_valueItems.value(paramName))->list;
667             setValue = box->itemData(box->currentIndex()).toString();
668         } else if (type == "bool") {
669             QCheckBox *box = ((Boolval*)m_valueItems.value(paramName))->checkBox;
670             setValue = box->checkState() == Qt::Checked ? "1" : "0" ;
671         } else if (type == "color") {
672             ChooseColorWidget *choosecolor = ((ChooseColorWidget*)m_valueItems.value(paramName));
673             setValue = choosecolor->getColor().name();
674         } else if (type == "complex") {
675             ComplexParameter *complex = ((ComplexParameter*)m_valueItems.value(paramName));
676             namenode.item(i) = complex->getParamDesc();
677         } else if (type == "geometry") {
678             if (KdenliveSettings::on_monitor_effects()) {
679                 if (m_geometryWidget) namenode.item(i).toElement().setAttribute("value", m_geometryWidget->getValue());
680             } else {
681                 Geometryval *geom = ((Geometryval*)m_valueItems.value(paramName));
682                 namenode.item(i).toElement().setAttribute("value", geom->getValue());
683             }
684         } else if (type == "addedgeometry") {
685             namenode.item(i).toElement().setAttribute("value", m_geometryWidget->getExtraValue(namenode.item(i).toElement().attribute("name")));
686         } else if (type == "position") {
687             PositionEdit *pedit = ((PositionEdit*)m_valueItems.value(paramName));
688             int pos = pedit->getPosition();
689             setValue = QString::number(pos);
690             if (newparam.attribute("id") == "fadein" || newparam.attribute("id") == "fade_from_black") {
691                 // Make sure duration is not longer than clip
692                 /*if (pos > m_out) {
693                     pos = m_out;
694                     pedit->setPosition(pos);
695                 }*/
696                 EffectsList::setParameter(newparam, "in", QString::number(m_in));
697                 EffectsList::setParameter(newparam, "out", QString::number(m_in + pos));
698                 setValue.clear();
699             } else if (newparam.attribute("id") == "fadeout" || newparam.attribute("id") == "fade_to_black") {
700                 // Make sure duration is not longer than clip
701                 /*if (pos > m_out) {
702                     pos = m_out;
703                     pedit->setPosition(pos);
704                 }*/
705                 EffectsList::setParameter(newparam, "in", QString::number(m_out - pos));
706                 EffectsList::setParameter(newparam, "out", QString::number(m_out));
707                 setValue.clear();
708             }
709         } else if (type == "curve") {
710             KisCurveWidget *curve = ((KisCurveWidget*)m_valueItems.value(paramName));
711             QList<QPointF> points = curve->curve().points();
712             QString number = pa.attributes().namedItem("number").nodeValue();
713             QString inName = pa.attributes().namedItem("inpoints").nodeValue();
714             QString outName = pa.attributes().namedItem("outpoints").nodeValue();
715             int off = pa.attributes().namedItem("min").nodeValue().toInt();
716             int end = pa.attributes().namedItem("max").nodeValue().toInt();
717             EffectsList::setParameter(newparam, number, QString::number(points.count()));
718             for (int j = 0; (j < points.count() && j + off <= end); j++) {
719                 QString in = inName;
720                 in.replace("%i", QString::number(j + off));
721                 QString out = outName;
722                 out.replace("%i", QString::number(j + off));
723                 EffectsList::setParameter(newparam, in, QString::number(points.at(j).x()));
724                 EffectsList::setParameter(newparam, out, QString::number(points.at(j).y()));
725             }
726             QString depends = pa.attributes().namedItem("depends").nodeValue();
727             if (!depends.isEmpty())
728                 meetDependency(paramName, type, EffectsList::parameter(newparam, depends));
729         } else if (type == "bezier_spline") {
730             BezierSplineWidget *widget = (BezierSplineWidget*)m_valueItems.value(paramName);
731             setValue = widget->spline();
732             QString depends = pa.attributes().namedItem("depends").nodeValue();
733             if (!depends.isEmpty())
734                 meetDependency(paramName, type, EffectsList::parameter(newparam, depends));
735 #ifdef QJSON
736         } else if (type == "roto-spline") {
737             RotoWidget *widget = static_cast<RotoWidget *>(m_valueItems.value(paramName));
738             setValue = widget->getSpline();
739 #endif
740         } else if (type == "wipe") {
741             Wipeval *wp = (Wipeval*)m_valueItems.value(paramName);
742             wipeInfo info;
743             if (wp->start_left->isChecked())
744                 info.start = LEFT;
745             else if (wp->start_right->isChecked())
746                 info.start = RIGHT;
747             else if (wp->start_up->isChecked())
748                 info.start = UP;
749             else if (wp->start_down->isChecked())
750                 info.start = DOWN;
751             else if (wp->start_center->isChecked())
752                 info.start = CENTER;
753             else
754                 info.start = LEFT;
755             info.startTransparency = wp->start_transp->value();
756
757             if (wp->end_left->isChecked())
758                 info.end = LEFT;
759             else if (wp->end_right->isChecked())
760                 info.end = RIGHT;
761             else if (wp->end_up->isChecked())
762                 info.end = UP;
763             else if (wp->end_down->isChecked())
764                 info.end = DOWN;
765             else if (wp->end_center->isChecked())
766                 info.end = CENTER;
767             else
768                 info.end = RIGHT;
769             info.endTransparency = wp->end_transp->value();
770
771             setValue = getWipeString(info);
772         } else if ((type == "simplekeyframe" || type == "keyframe") && m_keyframeEditor) {
773             QDomElement elem = pa.toElement();
774             QString realName = i18n(na.toElement().text().toUtf8().data());
775             QString val = m_keyframeEditor->getValue(realName);
776             elem.setAttribute("keyframes", val);
777
778             if (m_keyframeEditor->isVisibleParam(realName))
779                 elem.setAttribute("intimeline", "1");
780             else if (elem.hasAttribute("intimeline"))
781                 elem.removeAttribute("intimeline");
782         } else if (type == "url") {
783             KUrlRequester *req = ((Urlval*)m_valueItems.value(paramName))->urlwidget;
784             setValue = req->url().path();
785         }
786
787         if (!setValue.isNull())
788             pa.attributes().namedItem("value").setNodeValue(setValue);
789
790     }
791     emit parameterChanged(oldparam, newparam);
792 }
793
794 void EffectStackEdit::clearAllItems()
795 {
796     blockSignals(true);
797     m_valueItems.clear();
798     m_uiItems.clear();
799     /*while (!m_items.isEmpty()) {
800         QWidget *die = m_items.takeFirst();
801         die->disconnect();
802         delete die;
803     }*/
804     //qDeleteAll(m_uiItems);
805     QLayoutItem *child;
806     while ((child = m_vbox->takeAt(0)) != 0) {
807         QWidget *wid = child->widget();
808         delete child;
809         if (wid) delete wid;
810     }
811     m_keyframeEditor = NULL;
812     m_geometryWidget = NULL;
813     blockSignals(false);
814 }
815
816 void EffectStackEdit::slotSyncEffectsPos(int pos)
817 {
818     emit syncEffectsPos(pos);
819 }