]> git.sesse.net Git - kdenlive/blob - src/effectstack/parametercontainer.cpp
Prepare importing of keyframes from clip analysis
[kdenlive] / src / effectstack / parametercontainer.cpp
1 /***************************************************************************
2  *   Copyright (C) 2012 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20 #include "ui_listval_ui.h"
21 #include "ui_boolval_ui.h"
22 #include "ui_wipeval_ui.h"
23 #include "ui_urlval_ui.h"
24 #include "ui_keywordval_ui.h"
25 #include "ui_fontval_ui.h"
26 #include "complexparameter.h"
27 #include "geometryval.h"
28 #include "positionedit.h"
29 #include "kis_curve_widget.h"
30 #include "kis_cubic_curve.h"
31 #include "choosecolorwidget.h"
32 #include "geometrywidget.h"
33 #include "colortools.h"
34 #include "doubleparameterwidget.h"
35 #include "cornerswidget.h"
36 #include "dragvalue.h"
37 #include "beziercurve/beziersplinewidget.h"
38 #ifdef USE_QJSON
39 #include "rotoscoping/rotowidget.h"
40 #endif
41 #include "kdenlivesettings.h"
42 #include "profilesdialog.h"
43 #include "projectlist.h"
44 #include "mainwindow.h"
45 #include "parametercontainer.h"
46
47 #include <KUrlRequester>
48 #include <KFileDialog>
49
50 #include <QMap>
51 #include <QString>
52 #include <QImage>
53
54 MySpinBox::MySpinBox(QWidget * parent):
55     QSpinBox(parent)
56 {
57     setFocusPolicy(Qt::StrongFocus);
58 }
59
60 void MySpinBox::focusInEvent(QFocusEvent *e)
61 {
62      setFocusPolicy(Qt::WheelFocus);
63      e->accept();
64 }
65
66 void MySpinBox::focusOutEvent(QFocusEvent *e)
67 {
68      setFocusPolicy(Qt::StrongFocus);
69      e->accept();
70 }
71
72 class Boolval: public QWidget, public Ui::Boolval_UI
73 {
74 };
75
76 class Listval: public QWidget, public Ui::Listval_UI
77 {
78 };
79
80 class Wipeval: public QWidget, public Ui::Wipeval_UI
81 {
82 };
83
84 class Urlval: public QWidget, public Ui::Urlval_UI
85 {
86 };
87
88 class Keywordval: public QWidget, public Ui::Keywordval_UI
89 {
90 };
91
92 class Fontval: public QWidget, public Ui::Fontval_UI
93 {
94 };
95
96
97 ParameterContainer::ParameterContainer(QDomElement effect, ItemInfo info, EffectMetaInfo *metaInfo, QWidget * parent) :
98         m_keyframeEditor(NULL),
99         m_geometryWidget(NULL),
100         m_metaInfo(metaInfo),
101         m_effect(effect),
102         m_needsMonitorEffectScene(false)
103 {
104     m_in = info.cropStart.frames(KdenliveSettings::project_fps());
105     m_out = (info.cropStart + info.cropDuration).frames(KdenliveSettings::project_fps()) - 1;
106
107     QDomNodeList namenode = effect.childNodes(); //elementsByTagName("parameter");
108     
109     QDomElement e = effect.toElement();
110     int minFrame = e.attribute("start").toInt();
111     int maxFrame = e.attribute("end").toInt();
112     // In transitions, maxFrame is in fact one frame after the end of transition
113     if (maxFrame > 0) maxFrame --;
114
115     bool disable = effect.attribute("disable") == "1" && KdenliveSettings::disable_effect_parameters();
116     parent->setEnabled(!disable);
117
118     bool stretch = true;
119     m_vbox = new QVBoxLayout(parent);
120     m_vbox->setContentsMargins(4, 0, 4, 0);
121     m_vbox->setSpacing(2);
122
123     for (int i = 0; i < namenode.count() ; i++) {
124         QDomElement pa = namenode.item(i).toElement();
125         if (pa.tagName() != "parameter") continue;
126         QDomElement na = pa.firstChildElement("name");
127         QDomElement commentElem = pa.firstChildElement("comment");
128         QString type = pa.attribute("type");
129         QString paramName = na.isNull() ? pa.attribute("name") : i18n(na.text().toUtf8().data());
130         QString comment;
131         if (!commentElem.isNull())
132             comment = i18n(commentElem.text().toUtf8().data());
133         QWidget * toFillin = new QWidget(parent);
134         QString value = pa.attribute("value").isNull() ?
135                         pa.attribute("default") : pa.attribute("value");
136
137
138         /** See effects/README for info on the different types */
139
140         if (type == "double" || type == "constant") {
141             double min;
142             double max;
143             if (pa.attribute("min").contains('%'))
144                 min = ProfilesDialog::getStringEval(m_metaInfo->profile, pa.attribute("min"), m_metaInfo->frameSize);
145             else
146                 min = pa.attribute("min").toDouble();
147             if (pa.attribute("max").contains('%'))
148                 max = ProfilesDialog::getStringEval(m_metaInfo->profile, pa.attribute("max"), m_metaInfo->frameSize);
149             else
150                 max = pa.attribute("max").toDouble();
151
152             DoubleParameterWidget *doubleparam = new DoubleParameterWidget(paramName, value.toDouble(), min, max,
153                     pa.attribute("default").toDouble(), comment, -1, pa.attribute("suffix"), pa.attribute("decimals").toInt(), parent);
154             doubleparam->setFocusPolicy(Qt::StrongFocus);
155             m_vbox->addWidget(doubleparam);
156             m_valueItems[paramName] = doubleparam;
157             connect(doubleparam, SIGNAL(valueChanged(double)), this, SLOT(slotCollectAllParameters()));
158             connect(this, SIGNAL(showComments(bool)), doubleparam, SLOT(slotShowComment(bool)));
159         } else if (type == "list") {
160             Listval *lsval = new Listval;
161             lsval->setupUi(toFillin);
162             lsval->list->setFocusPolicy(Qt::StrongFocus);
163             QStringList listitems = pa.attribute("paramlist").split(';');
164             if (listitems.count() == 1) {
165                 // probably custom effect created before change to ';' as separator
166                 listitems = pa.attribute("paramlist").split(',');
167             }
168             QDomElement list = pa.firstChildElement("paramlistdisplay");
169             QStringList listitemsdisplay;
170             if (!list.isNull()) {
171                 listitemsdisplay = i18n(list.text().toUtf8().data()).split(',');
172             } else {
173                 listitemsdisplay = i18n(pa.attribute("paramlistdisplay").toUtf8().data()).split(',');
174             }
175             if (listitemsdisplay.count() != listitems.count())
176                 listitemsdisplay = listitems;
177             lsval->list->setIconSize(QSize(30, 30));
178             for (int i = 0; i < listitems.count(); i++) {
179                 lsval->list->addItem(listitemsdisplay.at(i), listitems.at(i));
180                 QString entry = listitems.at(i);
181                 if (!entry.isEmpty() && (entry.endsWith(".png") || entry.endsWith(".pgm"))) {
182                     if (!MainWindow::m_lumacache.contains(entry)) {
183                         QImage pix(entry);
184                         MainWindow::m_lumacache.insert(entry, pix.scaled(30, 30, Qt::KeepAspectRatio, Qt::SmoothTransformation));
185                     }
186                     lsval->list->setItemIcon(i, QPixmap::fromImage(MainWindow::m_lumacache.value(entry)));
187                 }
188             }
189             if (!value.isEmpty()) lsval->list->setCurrentIndex(listitems.indexOf(value));
190             lsval->name->setText(paramName);
191             lsval->labelComment->setText(comment);
192             lsval->widgetComment->setHidden(true);
193             m_valueItems[paramName] = lsval;
194             connect(lsval->list, SIGNAL(currentIndexChanged(int)) , this, SLOT(slotCollectAllParameters()));
195             if (!comment.isEmpty())
196                 connect(this, SIGNAL(showComments(bool)), lsval->widgetComment, SLOT(setVisible(bool)));
197             m_uiItems.append(lsval);
198         } else if (type == "bool") {
199             Boolval *bval = new Boolval;
200             bval->setupUi(toFillin);
201             bval->checkBox->setCheckState(value == "0" ? Qt::Unchecked : Qt::Checked);
202             bval->name->setText(paramName);
203             bval->labelComment->setText(comment);
204             bval->widgetComment->setHidden(true);
205             m_valueItems[paramName] = bval;
206             connect(bval->checkBox, SIGNAL(stateChanged(int)) , this, SLOT(slotCollectAllParameters()));
207             if (!comment.isEmpty())
208                 connect(this, SIGNAL(showComments(bool)), bval->widgetComment, SLOT(setVisible(bool)));
209             m_uiItems.append(bval);
210         } else if (type == "complex") {
211             ComplexParameter *pl = new ComplexParameter;
212             pl->setupParam(effect, pa.attribute("name"), 0, 100);
213             m_vbox->addWidget(pl);
214             m_valueItems[paramName+"complex"] = pl;
215             connect(pl, SIGNAL(parameterChanged()), this, SLOT(slotCollectAllParameters()));
216         } else if (type == "geometry") {
217             if (KdenliveSettings::on_monitor_effects()) {
218                 m_needsMonitorEffectScene = true;
219                 m_geometryWidget = new GeometryWidget(m_metaInfo->monitor, m_metaInfo->timecode, 0, true, effect.hasAttribute("showrotation"), parent);
220                 m_geometryWidget->setFrameSize(m_metaInfo->frameSize);
221                 connect(m_geometryWidget, SIGNAL(parameterChanged()), this, SLOT(slotCollectAllParameters()));
222                 if (minFrame == maxFrame)
223                     m_geometryWidget->setupParam(pa, m_in, m_out);
224                 else
225                     m_geometryWidget->setupParam(pa, minFrame, maxFrame);
226                 m_vbox->addWidget(m_geometryWidget);
227                 m_valueItems[paramName+"geometry"] = m_geometryWidget;
228                 connect(m_geometryWidget, SIGNAL(seekToPos(int)), this, SIGNAL(seekTimeline(int)));
229                 connect(m_geometryWidget, SIGNAL(importClipKeyframes()), this, SIGNAL(importClipKeyframes()));
230                 connect(this, SIGNAL(syncEffectsPos(int)), m_geometryWidget, SLOT(slotSyncPosition(int)));
231             } else {
232                 Geometryval *geo = new Geometryval(m_metaInfo->profile, m_metaInfo->timecode, m_metaInfo->frameSize, 0);
233                 if (minFrame == maxFrame)
234                     geo->setupParam(pa, m_in, m_out);
235                 else
236                     geo->setupParam(pa, minFrame, maxFrame);
237                 m_vbox->addWidget(geo);
238                 m_valueItems[paramName+"geometry"] = geo;
239                 connect(geo, SIGNAL(parameterChanged()), this, SLOT(slotCollectAllParameters()));
240                 connect(geo, SIGNAL(seekToPos(int)), this, SIGNAL(seekTimeline(int)));
241                 connect(this, SIGNAL(syncEffectsPos(int)), geo, SLOT(slotSyncPosition(int)));
242             }
243         } else if (type == "addedgeometry") {
244             // this is a parameter that should be linked to the geometry widget, for example rotation, shear, ...
245             if (m_geometryWidget) m_geometryWidget->addParameter(pa);
246         } else if (type == "keyframe" || type == "simplekeyframe") {
247             // keyframe editor widget
248             if (m_keyframeEditor == NULL) {
249                 KeyframeEdit *geo;
250                 if (pa.attribute("widget") == "corners") {
251                     // we want a corners-keyframe-widget
252                     CornersWidget *corners = new CornersWidget(m_metaInfo->monitor, pa, m_in, m_out, m_metaInfo->timecode, e.attribute("active_keyframe", "-1").toInt(), parent);
253                     m_needsMonitorEffectScene = true;
254                     connect(this, SIGNAL(syncEffectsPos(int)), corners, SLOT(slotSyncPosition(int)));
255                     geo = static_cast<KeyframeEdit *>(corners);
256                 } else {
257                     geo = new KeyframeEdit(pa, m_in, m_out, m_metaInfo->timecode, e.attribute("active_keyframe", "-1").toInt());
258                 }
259                 m_vbox->addWidget(geo);
260                 m_valueItems[paramName+"keyframe"] = geo;
261                 m_keyframeEditor = geo;
262                 connect(geo, SIGNAL(parameterChanged()), this, SLOT(slotCollectAllParameters()));
263                 connect(geo, SIGNAL(seekToPos(int)), this, SIGNAL(seekTimeline(int)));
264                 connect(this, SIGNAL(showComments(bool)), geo, SIGNAL(showComments(bool)));
265             } else {
266                 // we already have a keyframe editor, so just add another column for the new param
267                 m_keyframeEditor->addParameter(pa);
268             }
269         } else if (type == "color") {
270             if (pa.hasAttribute("paramprefix")) value.remove(0, pa.attribute("paramprefix").size());
271             if (value.startsWith('#'))
272                 value = value.replace('#', "0x");
273             ChooseColorWidget *choosecolor = new ChooseColorWidget(paramName, value, pa.hasAttribute("alpha"), parent);
274             m_vbox->addWidget(choosecolor);
275             m_valueItems[paramName] = choosecolor;
276             connect(choosecolor, SIGNAL(displayMessage(const QString&, int)), this, SIGNAL(displayMessage(const QString&, int)));
277             connect(choosecolor, SIGNAL(modified()) , this, SLOT(slotCollectAllParameters()));
278             connect(choosecolor, SIGNAL(disableCurrentFilter(bool)) , this, SIGNAL(disableCurrentFilter(bool)));
279         } else if (type == "position") {
280             int pos = value.toInt();
281             if (effect.attribute("id") == "fadein" || effect.attribute("id") == "fade_from_black") {
282                 pos = pos - m_in;
283             } else if (effect.attribute("id") == "fadeout" || effect.attribute("id") == "fade_to_black") {
284                 // fadeout position starts from clip end
285                 pos = m_out - pos;
286             }
287             PositionEdit *posedit = new PositionEdit(paramName, pos, 0, m_out - m_in, m_metaInfo->timecode);
288             m_vbox->addWidget(posedit);
289             m_valueItems[paramName+"position"] = posedit;
290             connect(posedit, SIGNAL(parameterChanged()), this, SLOT(slotCollectAllParameters()));
291         } else if (type == "curve") {
292             KisCurveWidget *curve = new KisCurveWidget(parent);
293             curve->setMaxPoints(pa.attribute("max").toInt());
294             QList<QPointF> points;
295             int number;
296             if (e.attribute("version").toDouble() > 0.2) {
297                 // Rounding gives really weird results. (int) (10 * 0.3) gives 2! So for now, add 0.5 to get correct result
298                 number = EffectsList::parameter(e, pa.attribute("number")).toDouble() * 10 + 0.5;
299             } else {
300                 number = EffectsList::parameter(e, pa.attribute("number")).toInt();
301             }
302             QString inName = pa.attribute("inpoints");
303             QString outName = pa.attribute("outpoints");
304             int start = pa.attribute("min").toInt();
305             for (int j = start; j <= number; j++) {
306                 QString in = inName;
307                 in.replace("%i", QString::number(j));
308                 QString out = outName;
309                 out.replace("%i", QString::number(j));
310                 points << QPointF(EffectsList::parameter(e, in).toDouble(), EffectsList::parameter(e, out).toDouble());
311             }
312             if (!points.isEmpty())
313                 curve->setCurve(KisCubicCurve(points));
314             MySpinBox *spinin = new MySpinBox();
315             spinin->setRange(0, 1000);
316             MySpinBox *spinout = new MySpinBox();
317             spinout->setRange(0, 1000);
318             curve->setupInOutControls(spinin, spinout, 0, 1000);
319             m_vbox->addWidget(curve);
320             m_vbox->addWidget(spinin);
321             m_vbox->addWidget(spinout);
322
323             connect(curve, SIGNAL(modified()), this, SLOT(slotCollectAllParameters()));
324             m_valueItems[paramName] = curve;
325
326             QString depends = pa.attribute("depends");
327             if (!depends.isEmpty())
328                 meetDependency(paramName, type, EffectsList::parameter(e, depends));
329         } else if (type == "bezier_spline") {
330             BezierSplineWidget *widget = new BezierSplineWidget(value, parent);
331             stretch = false;
332             m_vbox->addWidget(widget);
333             m_valueItems[paramName] = widget;
334             connect(widget, SIGNAL(modified()), this, SLOT(slotCollectAllParameters()));
335             QString depends = pa.attribute("depends");
336             if (!depends.isEmpty())
337                 meetDependency(paramName, type, EffectsList::parameter(e, depends));
338 #ifdef USE_QJSON
339         } else if (type == "roto-spline") {
340             m_needsMonitorEffectScene = true;
341             RotoWidget *roto = new RotoWidget(value, m_metaInfo->monitor, info, m_metaInfo->timecode, parent);
342             connect(roto, SIGNAL(valueChanged()), this, SLOT(slotCollectAllParameters()));
343             connect(roto, SIGNAL(seekToPos(int)), this, SIGNAL(seekTimeline(int)));
344             connect(this, SIGNAL(syncEffectsPos(int)), roto, SLOT(slotSyncPosition(int)));
345             m_vbox->addWidget(roto);
346             m_valueItems[paramName] = roto;
347 #endif
348         } else if (type == "wipe") {
349             Wipeval *wpval = new Wipeval;
350             wpval->setupUi(toFillin);
351             wipeInfo w = getWipeInfo(value);
352             switch (w.start) {
353             case UP:
354                 wpval->start_up->setChecked(true);
355                 break;
356             case DOWN:
357                 wpval->start_down->setChecked(true);
358                 break;
359             case RIGHT:
360                 wpval->start_right->setChecked(true);
361                 break;
362             case LEFT:
363                 wpval->start_left->setChecked(true);
364                 break;
365             default:
366                 wpval->start_center->setChecked(true);
367                 break;
368             }
369             switch (w.end) {
370             case UP:
371                 wpval->end_up->setChecked(true);
372                 break;
373             case DOWN:
374                 wpval->end_down->setChecked(true);
375                 break;
376             case RIGHT:
377                 wpval->end_right->setChecked(true);
378                 break;
379             case LEFT:
380                 wpval->end_left->setChecked(true);
381                 break;
382             default:
383                 wpval->end_center->setChecked(true);
384                 break;
385             }
386             wpval->start_transp->setValue(w.startTransparency);
387             wpval->end_transp->setValue(w.endTransparency);
388             m_valueItems[paramName] = wpval;
389             connect(wpval->end_up, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
390             connect(wpval->end_down, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
391             connect(wpval->end_left, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
392             connect(wpval->end_right, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
393             connect(wpval->end_center, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
394             connect(wpval->start_up, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
395             connect(wpval->start_down, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
396             connect(wpval->start_left, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
397             connect(wpval->start_right, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
398             connect(wpval->start_center, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
399             connect(wpval->start_transp, SIGNAL(valueChanged(int)), this, SLOT(slotCollectAllParameters()));
400             connect(wpval->end_transp, SIGNAL(valueChanged(int)), this, SLOT(slotCollectAllParameters()));
401             //wpval->title->setTitle(na.toElement().text());
402             m_uiItems.append(wpval);
403         } else if (type == "url") {
404             Urlval *cval = new Urlval;
405             cval->setupUi(toFillin);
406             cval->label->setText(paramName);
407             cval->urlwidget->fileDialog()->setFilter(ProjectList::getExtensions());
408             m_valueItems[paramName] = cval;
409             cval->urlwidget->setUrl(KUrl(value));
410             connect(cval->urlwidget, SIGNAL(returnPressed()) , this, SLOT(slotCollectAllParameters()));
411             connect(cval->urlwidget, SIGNAL(urlSelected(const KUrl&)) , this, SLOT(slotCollectAllParameters()));
412             m_uiItems.append(cval);
413         } else if (type == "keywords") {
414             Keywordval* kval = new Keywordval;
415             kval->setupUi(toFillin);
416             kval->label->setText(paramName);
417             kval->lineeditwidget->setText(value);
418             QDomElement klistelem = pa.firstChildElement("keywords");
419             QDomElement kdisplaylistelem = pa.firstChildElement("keywordsdisplay");
420             QStringList keywordlist;
421             QStringList keyworddisplaylist;
422             if (!klistelem.isNull()) {
423                 keywordlist = klistelem.text().split(';');
424                 keyworddisplaylist = i18n(kdisplaylistelem.text().toUtf8().data()).split(';');
425             }
426             if (keyworddisplaylist.count() != keywordlist.count()) {
427                 keyworddisplaylist = keywordlist;
428             }
429             for (int i = 0; i < keywordlist.count(); i++) {
430                 kval->comboboxwidget->addItem(keyworddisplaylist.at(i), keywordlist.at(i));
431             }
432             // Add disabled user prompt at index 0
433             kval->comboboxwidget->insertItem(0, i18n("<select a keyword>"), "");
434             kval->comboboxwidget->model()->setData( kval->comboboxwidget->model()->index(0,0), QVariant(Qt::NoItemFlags), Qt::UserRole -1);
435             kval->comboboxwidget->setCurrentIndex(0);
436             m_valueItems[paramName] = kval;
437             connect(kval->lineeditwidget, SIGNAL(editingFinished()) , this, SLOT(collectAllParameters()));
438             connect(kval->comboboxwidget, SIGNAL(activated (const QString&)), this, SLOT(collectAllParameters()));
439             m_uiItems.append(kval);
440         } else if (type == "fontfamily") {
441             Fontval* fval = new Fontval;
442             fval->setupUi(toFillin);
443             fval->name->setText(paramName);
444             fval->fontfamilywidget->setCurrentFont(QFont(value));
445             m_valueItems[paramName] = fval;
446             connect(fval->fontfamilywidget, SIGNAL(currentFontChanged(const QFont &)), this, SLOT(collectAllParameters())) ;
447             m_uiItems.append(fval);
448         } else if (type == "filterjob") {
449             QVBoxLayout *l= new QVBoxLayout(toFillin);
450             QPushButton *button = new QPushButton(paramName, toFillin);
451             l->addWidget(button);
452             m_valueItems[paramName] = button;
453             connect(button, SIGNAL(pressed()), this, SLOT(slotStartFilterJobAction()));   
454         } else {
455             delete toFillin;
456             toFillin = NULL;
457         }
458
459         if (toFillin)
460             m_vbox->addWidget(toFillin);
461     }
462
463     if (stretch)
464         m_vbox->addStretch();
465
466     if (m_keyframeEditor)
467         m_keyframeEditor->checkVisibleParam();
468
469     // Make sure all doubleparam spinboxes have the same width, looks much better
470     QList<DoubleParameterWidget *> allWidgets = findChildren<DoubleParameterWidget *>();
471     int minSize = 0;
472     for (int i = 0; i < allWidgets.count(); i++) {
473         if (minSize < allWidgets.at(i)->spinSize()) minSize = allWidgets.at(i)->spinSize();
474     }
475     for (int i = 0; i < allWidgets.count(); i++) {
476         allWidgets.at(i)->setSpinSize(minSize);
477     }
478 }
479
480 ParameterContainer::~ParameterContainer()
481 {
482     clearLayout(m_vbox);
483     delete m_vbox;
484 }
485
486 void ParameterContainer::meetDependency(const QString& name, QString type, QString value)
487 {
488     if (type == "curve") {
489         KisCurveWidget *curve = (KisCurveWidget*)m_valueItems[name];
490         if (curve) {
491             int color = value.toInt();
492             curve->setPixmap(QPixmap::fromImage(ColorTools::rgbCurvePlane(curve->size(), (ColorTools::ColorsRGB)(color == 3 ? 4 : color), 0.8)));
493         }
494     } else if (type == "bezier_spline") {
495         BezierSplineWidget *widget = (BezierSplineWidget*)m_valueItems[name];
496         if (widget) {
497             widget->setMode((BezierSplineWidget::CurveModes)((int)(value.toDouble() * 10 + 0.5)));
498         }
499     }
500 }
501
502 wipeInfo ParameterContainer::getWipeInfo(QString value)
503 {
504     wipeInfo info;
505     // Convert old geometry values that used a comma as separator
506     if (value.contains(',')) value.replace(',','/');
507     QString start = value.section(';', 0, 0);
508     QString end = value.section(';', 1, 1).section('=', 1, 1);
509     if (start.startsWith("-100%/0"))
510         info.start = LEFT;
511     else if (start.startsWith("100%/0"))
512         info.start = RIGHT;
513     else if (start.startsWith("0%/100%"))
514         info.start = DOWN;
515     else if (start.startsWith("0%/-100%"))
516         info.start = UP;
517     else
518         info.start = CENTER;
519
520     if (start.count(':') == 2)
521         info.startTransparency = start.section(':', -1).toInt();
522     else
523         info.startTransparency = 100;
524
525     if (end.startsWith("-100%/0"))
526         info.end = LEFT;
527     else if (end.startsWith("100%/0"))
528         info.end = RIGHT;
529     else if (end.startsWith("0%/100%"))
530         info.end = DOWN;
531     else if (end.startsWith("0%/-100%"))
532         info.end = UP;
533     else
534         info.end = CENTER;
535
536     if (end.count(':') == 2)
537         info.endTransparency = end.section(':', -1).toInt();
538     else
539         info.endTransparency = 100;
540
541     return info;
542 }
543
544 void ParameterContainer::updateTimecodeFormat()
545 {
546     if (m_keyframeEditor)
547         m_keyframeEditor->updateTimecodeFormat();
548
549     QDomNodeList namenode = m_effect.elementsByTagName("parameter");
550     for (int i = 0; i < namenode.count() ; i++) {
551         QDomNode pa = namenode.item(i);
552         QDomElement na = pa.firstChildElement("name");
553         QString type = pa.attributes().namedItem("type").nodeValue();
554         QString paramName = na.isNull() ? pa.attributes().namedItem("name").nodeValue() : i18n(na.text().toUtf8().data());
555
556         if (type == "geometry") {
557             if (KdenliveSettings::on_monitor_effects()) {
558                 if (m_geometryWidget) m_geometryWidget->updateTimecodeFormat();
559             } else {
560                 Geometryval *geom = ((Geometryval*)m_valueItems[paramName+"geometry"]);
561                 geom->updateTimecodeFormat();
562             }
563             break;
564         } else if (type == "position") {
565             PositionEdit *posi = ((PositionEdit*)m_valueItems[paramName+"position"]);
566             posi->updateTimecodeFormat();
567             break;
568 #ifdef USE_QJSON
569         } else if (type == "roto-spline") {
570             RotoWidget *widget = static_cast<RotoWidget *>(m_valueItems[paramName]);
571             widget->updateTimecodeFormat();
572 #endif
573         }
574     }
575 }
576
577 void ParameterContainer::slotCollectAllParameters()
578 {
579     if (m_valueItems.isEmpty() || m_effect.isNull()) return;
580     QLocale locale;
581     locale.setNumberOptions(QLocale::OmitGroupSeparator);
582     const QDomElement oldparam = m_effect.cloneNode().toElement();
583     //QDomElement newparam = oldparam.cloneNode().toElement();
584     QDomNodeList namenode = m_effect.elementsByTagName("parameter");
585
586     for (int i = 0; i < namenode.count() ; i++) {
587         QDomElement pa = namenode.item(i).toElement();
588         QDomElement na = pa.firstChildElement("name");
589         QString type = pa.attribute("type");
590         QString paramName = na.isNull() ? pa.attribute("name") : i18n(na.text().toUtf8().data());
591         if (type == "complex")
592             paramName.append("complex");
593         else if (type == "position")
594             paramName.append("position");
595         else if (type == "geometry")
596             paramName.append("geometry");
597         else if (type == "keyframe")
598             paramName.append("keyframe");
599         if (type != "simplekeyframe" && type != "fixed" && type != "addedgeometry" && !m_valueItems.contains(paramName)) {
600             kDebug() << "// Param: " << paramName << " NOT FOUND";
601             continue;
602         }
603
604         QString setValue;
605         if (type == "double" || type == "constant") {
606             DoubleParameterWidget *doubleparam = (DoubleParameterWidget*)m_valueItems.value(paramName);
607             setValue = locale.toString(doubleparam->getValue());
608         } else if (type == "list") {
609             KComboBox *box = ((Listval*)m_valueItems.value(paramName))->list;
610             setValue = box->itemData(box->currentIndex()).toString();
611         } else if (type == "bool") {
612             QCheckBox *box = ((Boolval*)m_valueItems.value(paramName))->checkBox;
613             setValue = box->checkState() == Qt::Checked ? "1" : "0" ;
614         } else if (type == "color") {
615             ChooseColorWidget *choosecolor = ((ChooseColorWidget*)m_valueItems.value(paramName));
616             setValue = choosecolor->getColor();
617             if (pa.hasAttribute("paramprefix")) setValue.prepend(pa.attribute("paramprefix"));
618         } else if (type == "complex") {
619             ComplexParameter *complex = ((ComplexParameter*)m_valueItems.value(paramName));
620             namenode.item(i) = complex->getParamDesc();
621         } else if (type == "geometry") {
622             if (KdenliveSettings::on_monitor_effects()) {
623                 if (m_geometryWidget) namenode.item(i).toElement().setAttribute("value", m_geometryWidget->getValue());
624             } else {
625                 Geometryval *geom = ((Geometryval*)m_valueItems.value(paramName));
626                 namenode.item(i).toElement().setAttribute("value", geom->getValue());
627             }
628         } else if (type == "addedgeometry") {
629             namenode.item(i).toElement().setAttribute("value", m_geometryWidget->getExtraValue(namenode.item(i).toElement().attribute("name")));
630         } else if (type == "position") {
631             PositionEdit *pedit = ((PositionEdit*)m_valueItems.value(paramName));
632             int pos = pedit->getPosition();
633             setValue = QString::number(pos);
634             if (m_effect.attribute("id") == "fadein" || m_effect.attribute("id") == "fade_from_black") {
635                 // Make sure duration is not longer than clip
636                 /*if (pos > m_out) {
637                     pos = m_out;
638                     pedit->setPosition(pos);
639                 }*/
640                 EffectsList::setParameter(m_effect, "in", QString::number(m_in));
641                 EffectsList::setParameter(m_effect, "out", QString::number(m_in + pos));
642                 setValue.clear();
643             } else if (m_effect.attribute("id") == "fadeout" || m_effect.attribute("id") == "fade_to_black") {
644                 // Make sure duration is not longer than clip
645                 /*if (pos > m_out) {
646                     pos = m_out;
647                     pedit->setPosition(pos);
648                 }*/
649                 EffectsList::setParameter(m_effect, "in", QString::number(m_out - pos));
650                 EffectsList::setParameter(m_effect, "out", QString::number(m_out));
651                 setValue.clear();
652             }
653         } else if (type == "curve") {
654             KisCurveWidget *curve = ((KisCurveWidget*)m_valueItems.value(paramName));
655             QList<QPointF> points = curve->curve().points();
656             QString number = pa.attribute("number");
657             QString inName = pa.attribute("inpoints");
658             QString outName = pa.attribute("outpoints");
659             int off = pa.attribute("min").toInt();
660             int end = pa.attribute("max").toInt();
661             if (oldparam.attribute("version").toDouble() > 0.2) {
662                 EffectsList::setParameter(m_effect, number, locale.toString(points.count() / 10.));
663             } else {
664                 EffectsList::setParameter(m_effect, number, QString::number(points.count()));
665             }
666             for (int j = 0; (j < points.count() && j + off <= end); j++) {
667                 QString in = inName;
668                 in.replace("%i", QString::number(j + off));
669                 QString out = outName;
670                 out.replace("%i", QString::number(j + off));
671                 EffectsList::setParameter(m_effect, in, locale.toString(points.at(j).x()));
672                 EffectsList::setParameter(m_effect, out, locale.toString(points.at(j).y()));
673             }
674             QString depends = pa.attribute("depends");
675             if (!depends.isEmpty())
676                 meetDependency(paramName, type, EffectsList::parameter(m_effect, depends));
677         } else if (type == "bezier_spline") {
678             BezierSplineWidget *widget = (BezierSplineWidget*)m_valueItems.value(paramName);
679             setValue = widget->spline();
680             QString depends = pa.attribute("depends");
681             if (!depends.isEmpty())
682                 meetDependency(paramName, type, EffectsList::parameter(m_effect, depends));
683 #ifdef USE_QJSON
684         } else if (type == "roto-spline") {
685             RotoWidget *widget = static_cast<RotoWidget *>(m_valueItems.value(paramName));
686             setValue = widget->getSpline();
687 #endif
688         } else if (type == "wipe") {
689             Wipeval *wp = (Wipeval*)m_valueItems.value(paramName);
690             wipeInfo info;
691             if (wp->start_left->isChecked())
692                 info.start = LEFT;
693             else if (wp->start_right->isChecked())
694                 info.start = RIGHT;
695             else if (wp->start_up->isChecked())
696                 info.start = UP;
697             else if (wp->start_down->isChecked())
698                 info.start = DOWN;
699             else if (wp->start_center->isChecked())
700                 info.start = CENTER;
701             else
702                 info.start = LEFT;
703             info.startTransparency = wp->start_transp->value();
704
705             if (wp->end_left->isChecked())
706                 info.end = LEFT;
707             else if (wp->end_right->isChecked())
708                 info.end = RIGHT;
709             else if (wp->end_up->isChecked())
710                 info.end = UP;
711             else if (wp->end_down->isChecked())
712                 info.end = DOWN;
713             else if (wp->end_center->isChecked())
714                 info.end = CENTER;
715             else
716                 info.end = RIGHT;
717             info.endTransparency = wp->end_transp->value();
718
719             setValue = getWipeString(info);
720         } else if ((type == "simplekeyframe" || type == "keyframe") && m_keyframeEditor) {
721             QString realName = i18n(na.toElement().text().toUtf8().data());
722             QString val = m_keyframeEditor->getValue(realName);
723             pa.setAttribute("keyframes", val);
724
725             if (m_keyframeEditor->isVisibleParam(realName)) {
726                 pa.setAttribute("intimeline", "1");
727             }
728             else if (pa.hasAttribute("intimeline"))
729                 pa.removeAttribute("intimeline");
730         } else if (type == "url") {
731             KUrlRequester *req = ((Urlval*)m_valueItems.value(paramName))->urlwidget;
732             setValue = req->url().path();
733         } else if (type == "keywords"){
734             QLineEdit *line = ((Keywordval*)m_valueItems.value(paramName))->lineeditwidget;
735             QComboBox *combo = ((Keywordval*)m_valueItems.value(paramName))->comboboxwidget;
736             if(combo->currentIndex())
737             {
738                 QString comboval = combo->itemData(combo->currentIndex()).toString();
739                 line->insert(comboval);
740                 combo->setCurrentIndex(0);
741             }
742             setValue = line->text();
743         } else if (type == "fontfamily") {
744             QFontComboBox* fontfamily = ((Fontval*)m_valueItems.value(paramName))->fontfamilywidget;
745             setValue = fontfamily->currentFont().family();
746         }
747         if (!setValue.isNull())
748             pa.setAttribute("value", setValue);
749
750     }
751     emit parameterChanged(oldparam, m_effect, m_effect.attribute("kdenlive_ix").toInt());
752 }
753
754 QString ParameterContainer::getWipeString(wipeInfo info)
755 {
756
757     QString start;
758     QString end;
759     switch (info.start) {
760     case LEFT:
761         start = "-100%/0%:100%x100%";
762         break;
763     case RIGHT:
764         start = "100%/0%:100%x100%";
765         break;
766     case DOWN:
767         start = "0%/100%:100%x100%";
768         break;
769     case UP:
770         start = "0%/-100%:100%x100%";
771         break;
772     default:
773         start = "0%/0%:100%x100%";
774         break;
775     }
776     start.append(':' + QString::number(info.startTransparency));
777
778     switch (info.end) {
779     case LEFT:
780         end = "-100%/0%:100%x100%";
781         break;
782     case RIGHT:
783         end = "100%/0%:100%x100%";
784         break;
785     case DOWN:
786         end = "0%/100%:100%x100%";
787         break;
788     case UP:
789         end = "0%/-100%:100%x100%";
790         break;
791     default:
792         end = "0%/0%:100%x100%";
793         break;
794     }
795     end.append(':' + QString::number(info.endTransparency));
796     return QString(start + ";-1=" + end);
797 }
798
799 void ParameterContainer::updateParameter(const QString &key, const QString &value)
800 {
801     m_effect.setAttribute(key, value);
802 }
803
804 void ParameterContainer::slotStartFilterJobAction()
805 {
806     QDomNodeList namenode = m_effect.elementsByTagName("parameter");
807     for (int i = 0; i < namenode.count() ; i++) {
808         QDomElement pa = namenode.item(i).toElement();
809         QString type = pa.attribute("type");
810         if (type == "filterjob") {
811             QString filtertag = pa.attribute("filtertag");
812             if (filtertag.contains("%geometry")) {
813                 // Replace with current geometry
814                 if (m_geometryWidget) {
815                     QString data = m_geometryWidget->getValue();
816                     filtertag.replace("%geometry", data);
817                     kDebug()<<"// Setting geometry: "<<data<<", RES: "<<filtertag;
818                 }
819             }
820             QStringList extra = pa.attribute("extraparams").split(' ', QString::SkipEmptyParts);
821             emit startFilterJob(filtertag, pa.attribute("filterparams"), pa.attribute("finalfilter"), pa.attribute("consumer"), pa.attribute("consumerparams"), extra);
822             kDebug()<<" - - -PROPS:\n"<<"filtertag"<<"-"<< pa.attribute("filterparams")<<"-"<< pa.attribute("consumer")<<"-"<< pa.attribute("consumerparams")<<"-"<< pa.attribute("extraparams");
823             break;
824         }
825     }
826 }
827
828
829 void ParameterContainer::clearLayout(QLayout *layout)
830 {
831     QLayoutItem *item;
832     while((item = layout->takeAt(0))) {
833         if (item->layout()) {
834             clearLayout(item->layout());
835             delete item->layout();
836         }
837         if (item->widget()) {
838             delete item->widget();
839         }
840         delete item;
841     }
842 }
843
844 bool ParameterContainer::needsMonitorEffectScene() const
845 {
846     return m_needsMonitorEffectScene;
847 }
848
849 void ParameterContainer::setKeyframes(const QString &data)
850 {
851     if (!m_geometryWidget) {
852         kDebug()<<" / / NO GEOMETRY WIDGET FOUND FOR IMPORTING DATA";
853         return;
854     }
855     m_geometryWidget->importKeyframes(data);
856     
857 }
858