]> git.sesse.net Git - kdenlive/blob - src/effectstack/collapsibleeffect.cpp
Implement drag & drop of effects in effect stack
[kdenlive] / src / effectstack / collapsibleeffect.cpp
1 /***************************************************************************
2  *   Copyright (C) 2008 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
21 #include "collapsibleeffect.h"
22
23 #include "ui_listval_ui.h"
24 #include "ui_boolval_ui.h"
25 #include "ui_wipeval_ui.h"
26 #include "ui_urlval_ui.h"
27 #include "ui_keywordval_ui.h"
28 #include "ui_fontval_ui.h"
29 #include "complexparameter.h"
30 #include "geometryval.h"
31 #include "positionedit.h"
32 #include "projectlist.h"
33 #include "effectslist.h"
34 #include "kdenlivesettings.h"
35 #include "profilesdialog.h"
36 #include "kis_curve_widget.h"
37 #include "kis_cubic_curve.h"
38 #include "choosecolorwidget.h"
39 #include "geometrywidget.h"
40 #include "colortools.h"
41 #include "doubleparameterwidget.h"
42 #include "cornerswidget.h"
43 #include "dragvalue.h"
44 #include "beziercurve/beziersplinewidget.h"
45 #ifdef USE_QJSON
46 #include "rotoscoping/rotowidget.h"
47 #endif
48
49 #include <QInputDialog>
50 #include <QDialog>
51 #include <QMenu>
52 #include <QVBoxLayout>
53 #include <KDebug>
54 #include <KGlobalSettings>
55 #include <KLocale>
56 #include <KMessageBox>
57 #include <KStandardDirs>
58 #include <KFileDialog>
59 #include <KUrlRequester>
60
61 class Boolval: public QWidget, public Ui::Boolval_UI
62 {
63 };
64
65 class Listval: public QWidget, public Ui::Listval_UI
66 {
67 };
68
69 class Wipeval: public QWidget, public Ui::Wipeval_UI
70 {
71 };
72
73 class Urlval: public QWidget, public Ui::Urlval_UI
74 {
75 };
76
77 class Keywordval: public QWidget, public Ui::Keywordval_UI
78 {
79 };
80
81 class Fontval: public QWidget, public Ui::Fontval_UI
82 {
83 };
84
85 QMap<QString, QImage> CollapsibleEffect::iconCache;
86
87 void clearLayout(QLayout *layout)
88 {
89     QLayoutItem *item;
90     while((item = layout->takeAt(0))) {
91         if (item->layout()) {
92             clearLayout(item->layout());
93             delete item->layout();
94         }
95         if (item->widget()) {
96             delete item->widget();
97         }
98         delete item;
99     }
100 }
101
102 MySpinBox::MySpinBox(QWidget * parent):
103     QSpinBox(parent)
104 {
105     setFocusPolicy(Qt::StrongFocus);
106 }
107
108 void MySpinBox::focusInEvent(QFocusEvent*)
109 {
110      setFocusPolicy(Qt::WheelFocus);
111 }
112
113 void MySpinBox::focusOutEvent(QFocusEvent*)
114 {
115      setFocusPolicy(Qt::StrongFocus);
116 }
117
118
119 CollapsibleEffect::CollapsibleEffect(QDomElement effect, QDomElement original_effect, ItemInfo info, int ix, EffectMetaInfo *metaInfo, bool lastEffect, bool isGroup, QWidget * parent) :
120         QWidget(parent),
121         m_paramWidget(NULL),
122         m_effect(effect),
123         m_original_effect(original_effect),
124         m_lastEffect(lastEffect),
125         m_isGroup(isGroup),
126         m_active(false),
127         m_index(ix)
128 {
129     //setMouseTracking(true);
130     setupUi(this);
131     m_info.fromString(effect.attribute("kdenlive_info"));
132     frame->setBackgroundRole(QPalette::Midlight);
133     frame->setAutoFillBackground(true);
134     setFont(KGlobalSettings::smallestReadableFont());
135    
136     buttonUp->setIcon(KIcon("go-up"));
137     buttonUp->setToolTip(i18n("Move effect up"));
138     if (!lastEffect) {
139         buttonDown->setIcon(KIcon("go-down"));
140         buttonDown->setToolTip(i18n("Move effect down"));
141     }
142     buttonDel->setIcon(KIcon("edit-delete"));
143     buttonDel->setToolTip(i18n("Delete effect"));
144
145     buttonUp->setVisible(false);
146     buttonDown->setVisible(false);
147     buttonDel->setVisible(false);
148     
149     /*buttonReset->setIcon(KIcon("view-refresh"));
150     buttonReset->setToolTip(i18n("Reset effect"));*/
151     //checkAll->setToolTip(i18n("Enable/Disable all effects"));
152     //buttonShowComments->setIcon(KIcon("help-about"));
153     //buttonShowComments->setToolTip(i18n("Show additional information for the parameters"));
154     m_menu = new QMenu;
155     m_menu->addAction(KIcon("view-refresh"), i18n("Reset effect"), this, SLOT(slotResetEffect()));
156     m_menu->addAction(KIcon("document-save"), i18n("Save effect"), this, SLOT(slotSaveEffect()));
157     
158     if (!m_isGroup) {
159         QDomElement namenode = m_effect.firstChildElement("name");
160         if (namenode.isNull()) return;
161         title->setText(i18n(namenode.text().toUtf8().data()));
162         QString type = m_effect.attribute("type", QString());
163         KIcon icon;
164         if (type == "audio") icon = KIcon("kdenlive-show-audio");
165         else if (m_effect.attribute("tag") == "region") icon = KIcon("kdenlive-mask-effect");
166         else if (type == "custom") icon = KIcon("kdenlive-custom-effect");
167         else icon = KIcon("kdenlive-show-video");
168         title->setIcon(icon);
169         m_menu->addAction(KIcon("folder-new"), i18n("Create Group"), this, SLOT(slotCreateGroup()));
170         setupWidget(info, ix, metaInfo);
171     }
172     else {
173         title->setText(i18n("Effect Group"));
174         title->setIcon(KIcon("folder"));
175         m_menu->addAction(KIcon("list-remove"), i18n("Ungroup"), this, SLOT(slotUnGroup()));
176     }
177     setAcceptDrops(true);
178     title->setMenu(m_menu);
179     
180     if (m_effect.attribute("disable") == "1") {
181         enabledBox->setCheckState(Qt::Unchecked);
182         title->setEnabled(false);
183     }
184     else {
185         enabledBox->setCheckState(Qt::Checked);
186     }
187
188     connect(collapseButton, SIGNAL(clicked()), this, SLOT(slotSwitch()));
189     connect(enabledBox, SIGNAL(toggled(bool)), this, SLOT(slotEnable(bool)));
190     connect(buttonUp, SIGNAL(clicked()), this, SLOT(slotEffectUp()));
191     connect(buttonDown, SIGNAL(clicked()), this, SLOT(slotEffectDown()));
192     connect(buttonDel, SIGNAL(clicked()), this, SLOT(slotDeleteEffect()));
193
194     Q_FOREACH( QSpinBox * sp, findChildren<QSpinBox*>() ) {
195         sp->installEventFilter( this );
196         sp->setFocusPolicy( Qt::StrongFocus );
197     }
198     Q_FOREACH( KComboBox * cb, findChildren<KComboBox*>() ) {
199         cb->installEventFilter( this );
200         cb->setFocusPolicy( Qt::StrongFocus );
201     }
202     Q_FOREACH( QProgressBar * cb, findChildren<QProgressBar*>() ) {
203         cb->installEventFilter( this );
204         cb->setFocusPolicy( Qt::StrongFocus );
205     }
206 }
207
208 CollapsibleEffect::~CollapsibleEffect()
209 {
210     if (m_paramWidget) delete m_paramWidget;
211     delete m_menu;
212 }
213
214 void CollapsibleEffect::slotCreateGroup()
215 {
216     emit createGroup(effectIndex());
217 }
218
219 void CollapsibleEffect::slotUnGroup()
220 {
221     emit unGroup(this);
222 }
223
224 bool CollapsibleEffect::eventFilter( QObject * o, QEvent * e ) 
225 {
226     if (e->type() == QEvent::Wheel) {
227         QWheelEvent *we = static_cast<QWheelEvent *>(e);
228         if (we->modifiers() != Qt::NoModifier) {
229             e->accept();
230             return false;
231         }
232         if (qobject_cast<QAbstractSpinBox*>(o)) {
233             if(qobject_cast<QAbstractSpinBox*>(o)->focusPolicy() == Qt::WheelFocus)
234             {
235                 e->accept();
236                 return false;
237             }
238             else
239             {
240                 e->ignore();
241                 return true;
242             }
243         }
244         if (qobject_cast<KComboBox*>(o)) {
245             if(qobject_cast<KComboBox*>(o)->focusPolicy() == Qt::WheelFocus)
246             {
247                 e->accept();
248                 return false;
249             }
250             else
251             {
252                 e->ignore();
253                 return true;
254             }
255         }
256         if (qobject_cast<QProgressBar*>(o)) {
257             if(qobject_cast<QProgressBar*>(o)->focusPolicy() == Qt::WheelFocus)
258             {
259                 e->accept();
260                 return false;
261             }
262             else
263             {
264                 e->ignore();
265                 return true;
266             }
267         }
268     }
269     return QWidget::eventFilter(o, e);
270 }
271
272 QDomElement CollapsibleEffect::effect() const
273 {
274     return m_effect;
275 }
276
277 void CollapsibleEffect::setActive(bool activate, bool focused)
278 {
279     m_active = activate;
280     if (focused) {
281         frame->setBackgroundRole(QPalette::Highlight);
282     }
283     else frame->setBackgroundRole(m_active ? QPalette::Mid : QPalette::Midlight);
284 }
285
286 void CollapsibleEffect::mouseDoubleClickEvent ( QMouseEvent * event )
287 {
288     if (frame->underMouse() && collapseButton->isEnabled()) slotSwitch();
289     QWidget::mouseDoubleClickEvent(event);
290 }
291
292 void CollapsibleEffect::mousePressEvent ( QMouseEvent *event )
293 {
294     if (!m_active && m_paramWidget) emit activateEffect(m_paramWidget->index());
295     QWidget::mousePressEvent(event);
296 }
297
298 void CollapsibleEffect::enterEvent ( QEvent * event )
299 {
300     if (m_paramWidget == NULL || m_paramWidget->index() > 0) buttonUp->setVisible(true);
301     if (!m_lastEffect) buttonDown->setVisible(true);
302     buttonDel->setVisible(true);
303     QWidget::enterEvent(event);
304 }
305
306 void CollapsibleEffect::leaveEvent ( QEvent * event )
307 {
308     buttonUp->setVisible(false);
309     buttonDown->setVisible(false);
310     buttonDel->setVisible(false);
311     QWidget::leaveEvent(event);
312 }
313
314 void CollapsibleEffect::slotEnable(bool enable)
315 {
316     title->setEnabled(enable);
317     if (m_isGroup) {
318         QVBoxLayout *vbox = static_cast<QVBoxLayout *>(widgetFrame->layout());
319         if (vbox == NULL) return;
320         for (int i = 0; i < vbox->count(); i++) {
321             CollapsibleEffect *e = static_cast<CollapsibleEffect *>(vbox->itemAt(i)->widget());
322             if (e) e->enabledBox->setChecked(enable);// slotEnable(enable);
323         }
324     } else {
325         m_effect.setAttribute("disable", enable ? 0 : 1);
326         if (enable || KdenliveSettings::disable_effect_parameters()) {
327             widgetFrame->setEnabled(enable);
328         }
329         emit effectStateChanged(!enable, m_paramWidget->index());
330     }
331 }
332
333 void CollapsibleEffect::slotDeleteEffect()
334 {
335     if (!m_isGroup) emit deleteEffect(m_effect);
336 }
337
338 void CollapsibleEffect::slotEffectUp()
339 {
340     if (!m_isGroup) emit changeEffectPosition(effectIndex(), true);
341 }
342
343 void CollapsibleEffect::slotEffectDown()
344 {
345     if (!m_isGroup) emit changeEffectPosition(effectIndex(), false);
346 }
347
348 void CollapsibleEffect::slotSaveEffect()
349 {
350     QString name = QInputDialog::getText(this, i18n("Save Effect"), i18n("Name for saved effect: "));
351     if (name.isEmpty()) return;
352     QString path = KStandardDirs::locateLocal("appdata", "effects/", true);
353     path = path + name + ".xml";
354     if (QFile::exists(path)) if (KMessageBox::questionYesNo(this, i18n("File %1 already exists.\nDo you want to overwrite it?", path)) == KMessageBox::No) return;
355
356     QDomDocument doc;
357     QDomElement effect = m_effect.cloneNode().toElement();
358     doc.appendChild(doc.importNode(effect, true));
359     effect = doc.firstChild().toElement();
360     effect.removeAttribute("kdenlive_ix");
361     effect.setAttribute("id", name);
362     effect.setAttribute("type", "custom");
363     QDomElement effectname = effect.firstChildElement("name");
364     effect.removeChild(effectname);
365     effectname = doc.createElement("name");
366     QDomText nametext = doc.createTextNode(name);
367     effectname.appendChild(nametext);
368     effect.insertBefore(effectname, QDomNode());
369     QDomElement effectprops = effect.firstChildElement("properties");
370     effectprops.setAttribute("id", name);
371     effectprops.setAttribute("type", "custom");
372
373     QFile file(path);
374     if (file.open(QFile::WriteOnly | QFile::Truncate)) {
375         QTextStream out(&file);
376         out << doc.toString();
377     }
378     file.close();
379     emit reloadEffects();
380 }
381
382 void CollapsibleEffect::slotResetEffect()
383 {
384     emit resetEffect(effectIndex());
385 }
386
387 void CollapsibleEffect::slotSwitch()
388 {
389     bool enable = !widgetFrame->isVisible();
390     slotShow(enable);
391 }
392
393 void CollapsibleEffect::slotShow(bool show)
394 {
395     widgetFrame->setVisible(show);
396     if (show) {
397         collapseButton->setArrowType(Qt::DownArrow);
398         m_info.isCollapsed = false;
399     }
400     else {
401         collapseButton->setArrowType(Qt::RightArrow);
402         m_info.isCollapsed = true;
403     }
404     m_effect.setAttribute("kdenlive_info", m_info.toString());
405     emit parameterChanged(m_original_effect, m_effect, m_index);   
406 }
407
408 void CollapsibleEffect::updateGroupIndex(int groupIndex)
409 {
410     m_info.groupIndex = groupIndex;
411     m_effect.setAttribute("kdenlive_info", m_info.toString());
412     emit parameterChanged(m_original_effect, m_effect, m_index);
413 }
414
415 void CollapsibleEffect::setGroupIndex(int ix)
416 {
417     m_info.groupIndex = ix;
418 }
419
420 void CollapsibleEffect::addGroupEffect(CollapsibleEffect *effect)
421 {
422     QVBoxLayout *vbox = static_cast<QVBoxLayout *>(widgetFrame->layout());
423     if (vbox == NULL) {
424         vbox = new QVBoxLayout();
425         vbox->setContentsMargins(10, 0, 0, 0);
426         vbox->setSpacing(2);
427         widgetFrame->setLayout(vbox);
428     }
429     effect->setGroupIndex(groupIndex());
430     vbox->addWidget(effect);
431 }
432
433 QString CollapsibleEffect::infoString() const
434 {
435     return m_info.toString();
436 }
437
438 void CollapsibleEffect::removeGroup(int ix, QVBoxLayout *layout)
439 {
440     QVBoxLayout *vbox = static_cast<QVBoxLayout *>(widgetFrame->layout());
441     if (vbox == NULL) return;
442     
443     for (int j = vbox->count() - 1; j >= 0; j--) {
444         QLayoutItem *child = vbox->takeAt(j);
445         CollapsibleEffect *e = static_cast<CollapsibleEffect *>(child->widget());
446         layout->insertWidget(ix, e);
447         e->updateGroupIndex(-1);
448         delete child;
449     }
450 }
451
452 int CollapsibleEffect::index() const
453 {
454     return m_index;
455 }
456
457 int CollapsibleEffect::groupIndex() const
458 {
459     if (m_isGroup) return m_index;
460     return -1;
461 }
462
463 int CollapsibleEffect::effectIndex() const
464 {
465     if (m_effect.isNull()) return -1;
466     return m_effect.attribute("kdenlive_ix").toInt();
467 }
468
469 void CollapsibleEffect::updateWidget(ItemInfo info, int index, QDomElement effect, EffectMetaInfo *metaInfo)
470 {
471     if (m_paramWidget) {
472         // cleanup
473         delete m_paramWidget;
474         m_paramWidget = NULL;
475     }
476     m_effect = effect;
477     setupWidget(info, index, metaInfo);
478 }
479
480 void CollapsibleEffect::setupWidget(ItemInfo info, int index, EffectMetaInfo *metaInfo)
481 {
482     if (m_effect.isNull()) {
483 //         kDebug() << "// EMPTY EFFECT STACK";
484         return;
485     }
486
487     if (m_effect.attribute("tag") == "region") {
488         QVBoxLayout *vbox = new QVBoxLayout(widgetFrame);
489         vbox->setContentsMargins(0, 0, 0, 0);
490         vbox->setSpacing(2);
491         QDomNodeList effects =  m_effect.elementsByTagName("effect");
492         QDomNodeList origin_effects =  m_original_effect.elementsByTagName("effect");
493         QWidget *container = new QWidget(widgetFrame);
494         vbox->addWidget(container);
495         m_paramWidget = new ParameterContainer(m_effect.toElement(), info, metaInfo, index, container);
496         for (int i = 0; i < effects.count(); i++) {
497             CollapsibleEffect *coll = new CollapsibleEffect(effects.at(i).toElement(), origin_effects.at(i).toElement(), info, i, metaInfo, container);
498             m_subParamWidgets.append(coll);
499             //container = new QWidget(widgetFrame);
500             vbox->addWidget(coll);
501             //p = new ParameterContainer(effects.at(i).toElement(), info, isEffect, container);
502         }
503         
504     }
505     else {
506         m_paramWidget = new ParameterContainer(m_effect, info, metaInfo, index, widgetFrame);
507         if (m_effect.firstChildElement("parameter").isNull()) {
508             // Effect has no parameter, don't allow expand
509             collapseButton->setEnabled(false);
510             widgetFrame->setVisible(false);            
511         }
512     }
513     if (collapseButton->isEnabled() && m_info.isCollapsed) {
514         widgetFrame->setVisible(false);
515         collapseButton->setArrowType(Qt::RightArrow);
516         
517     }
518     connect (m_paramWidget, SIGNAL(parameterChanged(const QDomElement, const QDomElement, int)), this, SIGNAL(parameterChanged(const QDomElement, const QDomElement, int)));
519     
520     connect(m_paramWidget, SIGNAL(startFilterJob(QString,QString,QString,QString,QString,QString)), this, SIGNAL(startFilterJob(QString,QString,QString,QString,QString,QString)));
521     
522     connect (this, SIGNAL(syncEffectsPos(int)), m_paramWidget, SIGNAL(syncEffectsPos(int)));
523     connect (this, SIGNAL(effectStateChanged(bool)), m_paramWidget, SIGNAL(effectStateChanged(bool)));
524     connect (m_paramWidget, SIGNAL(checkMonitorPosition(int)), this, SIGNAL(checkMonitorPosition(int)));
525     connect (m_paramWidget, SIGNAL(seekTimeline(int)), this, SIGNAL(seekTimeline(int)));
526     
527     
528 }
529
530 void CollapsibleEffect::updateTimecodeFormat()
531 {
532     m_paramWidget->updateTimecodeFormat();
533     if (!m_subParamWidgets.isEmpty()) {
534         // we have a group
535         for (int i = 0; i < m_subParamWidgets.count(); i++)
536             m_subParamWidgets.at(i)->updateTimecodeFormat();
537     }
538 }
539
540 void CollapsibleEffect::slotSyncEffectsPos(int pos)
541 {
542     emit syncEffectsPos(pos);
543 }
544
545 void CollapsibleEffect::dragEnterEvent(QDragEnterEvent *event)
546 {
547     if (event->mimeData()->hasFormat("kdenlive/effectslist")) {
548         setActive(m_active, true);
549         event->acceptProposedAction();
550     }
551 }
552
553 void CollapsibleEffect::dragLeaveEvent(QDragLeaveEvent */*event*/)
554 {
555     setActive(m_active, false);
556 }
557
558 void CollapsibleEffect::dropEvent(QDropEvent *event)
559 {
560     const QString effects = QString::fromUtf8(event->mimeData()->data("kdenlive/effectslist"));
561     //event->acceptProposedAction();
562     QDomDocument doc;
563     doc.setContent(effects, true);
564     const QDomElement e = doc.documentElement();
565     int ix = e.attribute("kdenlive_ix").toInt();
566     if (ix == effectIndex()) {
567         // effect dropped on itself, reject
568         event->ignore();
569         return;
570     }
571     int new_index = -1;
572     if (m_isGroup) {
573         QVBoxLayout *vbox = static_cast<QVBoxLayout *>(widgetFrame->layout());
574         if (vbox == NULL) return;
575         CollapsibleEffect *e = static_cast<CollapsibleEffect *>(vbox->itemAt(vbox->count() -1)->widget());
576         new_index = e->effectIndex() + 1;
577     }
578     else {
579         new_index = effectIndex();
580     }
581     emit moveEffect(ix, new_index, this);
582     event->setDropAction(Qt::MoveAction);
583     event->accept();
584 }
585
586 ParameterContainer::ParameterContainer(QDomElement effect, ItemInfo info, EffectMetaInfo *metaInfo, int index, QWidget * parent) :
587         m_index(index),
588         m_keyframeEditor(NULL),
589         m_geometryWidget(NULL),
590         m_metaInfo(metaInfo),
591         m_effect(effect)
592 {
593     m_in = info.cropStart.frames(KdenliveSettings::project_fps());
594     m_out = (info.cropStart + info.cropDuration).frames(KdenliveSettings::project_fps()) - 1;
595
596     QDomNodeList namenode = effect.childNodes(); //elementsByTagName("parameter");
597     
598     QDomElement e = effect.toElement();
599     int minFrame = e.attribute("start").toInt();
600     int maxFrame = e.attribute("end").toInt();
601     // In transitions, maxFrame is in fact one frame after the end of transition
602     if (maxFrame > 0) maxFrame --;
603
604     bool disable = effect.attribute("disable") == "1" && KdenliveSettings::disable_effect_parameters();
605     parent->setEnabled(!disable);
606
607     bool stretch = true;
608     m_vbox = new QVBoxLayout(parent);
609     m_vbox->setContentsMargins(0, 0, 0, 0);
610     m_vbox->setSpacing(2);
611
612     for (int i = 0; i < namenode.count() ; i++) {
613         QDomElement pa = namenode.item(i).toElement();
614         if (pa.tagName() != "parameter") continue;
615         QDomElement na = pa.firstChildElement("name");
616         QDomElement commentElem = pa.firstChildElement("comment");
617         QString type = pa.attribute("type");
618         QString paramName = na.isNull() ? pa.attribute("name") : i18n(na.text().toUtf8().data());
619         QString comment;
620         if (!commentElem.isNull())
621             comment = i18n(commentElem.text().toUtf8().data());
622         QWidget * toFillin = new QWidget(parent);
623         QString value = pa.attribute("value").isNull() ?
624                         pa.attribute("default") : pa.attribute("value");
625
626
627         /** See effects/README for info on the different types */
628
629         if (type == "double" || type == "constant") {
630             double min;
631             double max;
632             if (pa.attribute("min").contains('%'))
633                 min = ProfilesDialog::getStringEval(m_metaInfo->profile, pa.attribute("min"), m_metaInfo->frameSize);
634             else
635                 min = pa.attribute("min").toDouble();
636             if (pa.attribute("max").contains('%'))
637                 max = ProfilesDialog::getStringEval(m_metaInfo->profile, pa.attribute("max"), m_metaInfo->frameSize);
638             else
639                 max = pa.attribute("max").toDouble();
640
641             DoubleParameterWidget *doubleparam = new DoubleParameterWidget(paramName, value.toDouble(), min, max,
642                     pa.attribute("default").toDouble(), comment, -1, pa.attribute("suffix"), pa.attribute("decimals").toInt(), parent);
643             doubleparam->setFocusPolicy(Qt::StrongFocus);
644             m_vbox->addWidget(doubleparam);
645             m_valueItems[paramName] = doubleparam;
646             connect(doubleparam, SIGNAL(valueChanged(double)), this, SLOT(slotCollectAllParameters()));
647             connect(this, SIGNAL(showComments(bool)), doubleparam, SLOT(slotShowComment(bool)));
648         } else if (type == "list") {
649             Listval *lsval = new Listval;
650             lsval->setupUi(toFillin);
651             lsval->list->setFocusPolicy(Qt::StrongFocus);
652             QStringList listitems = pa.attribute("paramlist").split(';');
653             if (listitems.count() == 1) {
654                 // probably custom effect created before change to ';' as separator
655                 listitems = pa.attribute("paramlist").split(",");
656             }
657             QDomElement list = pa.firstChildElement("paramlistdisplay");
658             QStringList listitemsdisplay;
659             if (!list.isNull()) {
660                 listitemsdisplay = i18n(list.text().toUtf8().data()).split(',');
661             } else {
662                 listitemsdisplay = i18n(pa.attribute("paramlistdisplay").toUtf8().data()).split(',');
663             }
664             if (listitemsdisplay.count() != listitems.count())
665                 listitemsdisplay = listitems;
666             lsval->list->setIconSize(QSize(30, 30));
667             for (int i = 0; i < listitems.count(); i++) {
668                 lsval->list->addItem(listitemsdisplay.at(i), listitems.at(i));
669                 QString entry = listitems.at(i);
670                 if (!entry.isEmpty() && (entry.endsWith(".png") || entry.endsWith(".pgm"))) {
671                     if (!CollapsibleEffect::iconCache.contains(entry)) {
672                         QImage pix(entry);
673                         CollapsibleEffect::iconCache[entry] = pix.scaled(30, 30);
674                     }
675                     lsval->list->setItemIcon(i, QPixmap::fromImage(CollapsibleEffect::iconCache[entry]));
676                 }
677             }
678             if (!value.isEmpty()) lsval->list->setCurrentIndex(listitems.indexOf(value));
679             lsval->name->setText(paramName);
680             lsval->labelComment->setText(comment);
681             lsval->widgetComment->setHidden(true);
682             m_valueItems[paramName] = lsval;
683             connect(lsval->list, SIGNAL(currentIndexChanged(int)) , this, SLOT(slotCollectAllParameters()));
684             if (!comment.isEmpty())
685                 connect(this, SIGNAL(showComments(bool)), lsval->widgetComment, SLOT(setVisible(bool)));
686             m_uiItems.append(lsval);
687         } else if (type == "bool") {
688             Boolval *bval = new Boolval;
689             bval->setupUi(toFillin);
690             bval->checkBox->setCheckState(value == "0" ? Qt::Unchecked : Qt::Checked);
691             bval->name->setText(paramName);
692             bval->labelComment->setText(comment);
693             bval->widgetComment->setHidden(true);
694             m_valueItems[paramName] = bval;
695             connect(bval->checkBox, SIGNAL(stateChanged(int)) , this, SLOT(slotCollectAllParameters()));
696             if (!comment.isEmpty())
697                 connect(this, SIGNAL(showComments(bool)), bval->widgetComment, SLOT(setVisible(bool)));
698             m_uiItems.append(bval);
699         } else if (type == "complex") {
700             ComplexParameter *pl = new ComplexParameter;
701             pl->setupParam(effect, pa.attribute("name"), 0, 100);
702             m_vbox->addWidget(pl);
703             m_valueItems[paramName+"complex"] = pl;
704             connect(pl, SIGNAL(parameterChanged()), this, SLOT(slotCollectAllParameters()));
705         } else if (type == "geometry") {
706             if (KdenliveSettings::on_monitor_effects()) {
707                 m_geometryWidget = new GeometryWidget(m_metaInfo->monitor, m_metaInfo->timecode, 0, true, effect.hasAttribute("showrotation"), parent);
708                 m_geometryWidget->setFrameSize(m_metaInfo->frameSize);
709                 m_geometryWidget->slotShowScene(!disable);
710                 // connect this before setupParam to make sure the monitor scene shows up at startup
711                 connect(m_geometryWidget, SIGNAL(checkMonitorPosition(int)), this, SIGNAL(checkMonitorPosition(int)));
712                 connect(m_geometryWidget, SIGNAL(parameterChanged()), this, SLOT(slotCollectAllParameters()));
713                 if (minFrame == maxFrame)
714                     m_geometryWidget->setupParam(pa, m_in, m_out);
715                 else
716                     m_geometryWidget->setupParam(pa, minFrame, maxFrame);
717                 m_vbox->addWidget(m_geometryWidget);
718                 m_valueItems[paramName+"geometry"] = m_geometryWidget;
719                 connect(m_geometryWidget, SIGNAL(seekToPos(int)), this, SIGNAL(seekTimeline(int)));
720                 connect(this, SIGNAL(syncEffectsPos(int)), m_geometryWidget, SLOT(slotSyncPosition(int)));
721                 connect(this, SIGNAL(effectStateChanged(bool)), m_geometryWidget, SLOT(slotShowScene(bool)));
722             } else {
723                 Geometryval *geo = new Geometryval(m_metaInfo->profile, m_metaInfo->timecode, m_metaInfo->frameSize, 0);
724                 if (minFrame == maxFrame)
725                     geo->setupParam(pa, m_in, m_out);
726                 else
727                     geo->setupParam(pa, minFrame, maxFrame);
728                 m_vbox->addWidget(geo);
729                 m_valueItems[paramName+"geometry"] = geo;
730                 connect(geo, SIGNAL(parameterChanged()), this, SLOT(slotCollectAllParameters()));
731                 connect(geo, SIGNAL(seekToPos(int)), this, SIGNAL(seekTimeline(int)));
732                 connect(this, SIGNAL(syncEffectsPos(int)), geo, SLOT(slotSyncPosition(int)));
733             }
734         } else if (type == "addedgeometry") {
735             // this is a parameter that should be linked to the geometry widget, for example rotation, shear, ...
736             if (m_geometryWidget) m_geometryWidget->addParameter(pa);
737         } else if (type == "keyframe" || type == "simplekeyframe") {
738             // keyframe editor widget
739             if (m_keyframeEditor == NULL) {
740                 KeyframeEdit *geo;
741                 if (pa.attribute("widget") == "corners") {
742                     // we want a corners-keyframe-widget
743                     CornersWidget *corners = new CornersWidget(m_metaInfo->monitor, pa, m_in, m_out, m_metaInfo->timecode, e.attribute("active_keyframe", "-1").toInt(), parent);
744                     corners->slotShowScene(!disable);
745                     connect(corners, SIGNAL(checkMonitorPosition(int)), this, SIGNAL(checkMonitorPosition(int)));
746                     connect(this, SIGNAL(effectStateChanged(bool)), corners, SLOT(slotShowScene(bool)));
747                     connect(this, SIGNAL(syncEffectsPos(int)), corners, SLOT(slotSyncPosition(int)));
748                     geo = static_cast<KeyframeEdit *>(corners);
749                 } else {
750                     geo = new KeyframeEdit(pa, m_in, m_out, m_metaInfo->timecode, e.attribute("active_keyframe", "-1").toInt());
751                 }
752                 m_vbox->addWidget(geo);
753                 m_valueItems[paramName+"keyframe"] = geo;
754                 m_keyframeEditor = geo;
755                 connect(geo, SIGNAL(parameterChanged()), this, SLOT(slotCollectAllParameters()));
756                 connect(geo, SIGNAL(seekToPos(int)), this, SIGNAL(seekTimeline(int)));
757                 connect(this, SIGNAL(showComments(bool)), geo, SIGNAL(showComments(bool)));
758             } else {
759                 // we already have a keyframe editor, so just add another column for the new param
760                 m_keyframeEditor->addParameter(pa);
761             }
762         } else if (type == "color") {
763             if (value.startsWith('#'))
764                 value = value.replace('#', "0x");
765             ChooseColorWidget *choosecolor = new ChooseColorWidget(paramName, value, parent);
766             m_vbox->addWidget(choosecolor);
767             m_valueItems[paramName] = choosecolor;
768             connect(choosecolor, SIGNAL(displayMessage(const QString&, int)), this, SIGNAL(displayMessage(const QString&, int)));
769             connect(choosecolor, SIGNAL(modified()) , this, SLOT(slotCollectAllParameters()));
770         } else if (type == "position") {
771             int pos = value.toInt();
772             if (effect.attribute("id") == "fadein" || effect.attribute("id") == "fade_from_black") {
773                 pos = pos - m_in;
774             } else if (effect.attribute("id") == "fadeout" || effect.attribute("id") == "fade_to_black") {
775                 // fadeout position starts from clip end
776                 pos = m_out - pos;
777             }
778             PositionEdit *posedit = new PositionEdit(paramName, pos, 0, m_out - m_in, m_metaInfo->timecode);
779             m_vbox->addWidget(posedit);
780             m_valueItems[paramName+"position"] = posedit;
781             connect(posedit, SIGNAL(parameterChanged()), this, SLOT(slotCollectAllParameters()));
782         } else if (type == "curve") {
783             KisCurveWidget *curve = new KisCurveWidget(parent);
784             curve->setMaxPoints(pa.attribute("max").toInt());
785             QList<QPointF> points;
786             int number = EffectsList::parameter(e, pa.attribute("number")).toInt();
787             QString inName = pa.attribute("inpoints");
788             QString outName = pa.attribute("outpoints");
789             int start = pa.attribute("min").toInt();
790             for (int j = start; j <= number; j++) {
791                 QString in = inName;
792                 in.replace("%i", QString::number(j));
793                 QString out = outName;
794                 out.replace("%i", QString::number(j));
795                 points << QPointF(EffectsList::parameter(e, in).toDouble(), EffectsList::parameter(e, out).toDouble());
796             }
797             if (!points.isEmpty())
798                 curve->setCurve(KisCubicCurve(points));
799             MySpinBox *spinin = new MySpinBox();
800             spinin->setRange(0, 1000);
801             MySpinBox *spinout = new MySpinBox();
802             spinout->setRange(0, 1000);
803             curve->setupInOutControls(spinin, spinout, 0, 1000);
804             m_vbox->addWidget(curve);
805             m_vbox->addWidget(spinin);
806             m_vbox->addWidget(spinout);
807
808             connect(curve, SIGNAL(modified()), this, SLOT(slotCollectAllParameters()));
809             m_valueItems[paramName] = curve;
810
811             QString depends = pa.attribute("depends");
812             if (!depends.isEmpty())
813                 meetDependency(paramName, type, EffectsList::parameter(e, depends));
814         } else if (type == "bezier_spline") {
815             BezierSplineWidget *widget = new BezierSplineWidget(value, parent);
816             stretch = false;
817             m_vbox->addWidget(widget);
818             m_valueItems[paramName] = widget;
819             connect(widget, SIGNAL(modified()), this, SLOT(slotCollectAllParameters()));
820             QString depends = pa.attribute("depends");
821             if (!depends.isEmpty())
822                 meetDependency(paramName, type, EffectsList::parameter(e, depends));
823 #ifdef USE_QJSON
824         } else if (type == "roto-spline") {
825             RotoWidget *roto = new RotoWidget(value, m_metaInfo->monitor, info, m_metaInfo->timecode, parent);
826             roto->slotShowScene(!disable);
827             connect(roto, SIGNAL(valueChanged()), this, SLOT(slotCollectAllParameters()));
828             connect(roto, SIGNAL(checkMonitorPosition(int)), this, SIGNAL(checkMonitorPosition(int)));
829             connect(roto, SIGNAL(seekToPos(int)), this, SIGNAL(seekTimeline(int)));
830             connect(this, SIGNAL(syncEffectsPos(int)), roto, SLOT(slotSyncPosition(int)));
831             connect(this, SIGNAL(effectStateChanged(bool)), roto, SLOT(slotShowScene(bool)));
832             m_vbox->addWidget(roto);
833             m_valueItems[paramName] = roto;
834 #endif
835         } else if (type == "wipe") {
836             Wipeval *wpval = new Wipeval;
837             wpval->setupUi(toFillin);
838             wipeInfo w = getWipeInfo(value);
839             switch (w.start) {
840             case UP:
841                 wpval->start_up->setChecked(true);
842                 break;
843             case DOWN:
844                 wpval->start_down->setChecked(true);
845                 break;
846             case RIGHT:
847                 wpval->start_right->setChecked(true);
848                 break;
849             case LEFT:
850                 wpval->start_left->setChecked(true);
851                 break;
852             default:
853                 wpval->start_center->setChecked(true);
854                 break;
855             }
856             switch (w.end) {
857             case UP:
858                 wpval->end_up->setChecked(true);
859                 break;
860             case DOWN:
861                 wpval->end_down->setChecked(true);
862                 break;
863             case RIGHT:
864                 wpval->end_right->setChecked(true);
865                 break;
866             case LEFT:
867                 wpval->end_left->setChecked(true);
868                 break;
869             default:
870                 wpval->end_center->setChecked(true);
871                 break;
872             }
873             wpval->start_transp->setValue(w.startTransparency);
874             wpval->end_transp->setValue(w.endTransparency);
875             m_valueItems[paramName] = wpval;
876             connect(wpval->end_up, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
877             connect(wpval->end_down, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
878             connect(wpval->end_left, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
879             connect(wpval->end_right, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
880             connect(wpval->end_center, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
881             connect(wpval->start_up, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
882             connect(wpval->start_down, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
883             connect(wpval->start_left, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
884             connect(wpval->start_right, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
885             connect(wpval->start_center, SIGNAL(clicked()), this, SLOT(slotCollectAllParameters()));
886             connect(wpval->start_transp, SIGNAL(valueChanged(int)), this, SLOT(slotCollectAllParameters()));
887             connect(wpval->end_transp, SIGNAL(valueChanged(int)), this, SLOT(slotCollectAllParameters()));
888             //wpval->title->setTitle(na.toElement().text());
889             m_uiItems.append(wpval);
890         } else if (type == "url") {
891             Urlval *cval = new Urlval;
892             cval->setupUi(toFillin);
893             cval->label->setText(paramName);
894             cval->urlwidget->fileDialog()->setFilter(ProjectList::getExtensions());
895             m_valueItems[paramName] = cval;
896             cval->urlwidget->setUrl(KUrl(value));
897             connect(cval->urlwidget, SIGNAL(returnPressed()) , this, SLOT(slotCollectAllParameters()));
898             connect(cval->urlwidget, SIGNAL(urlSelected(const KUrl&)) , this, SLOT(slotCollectAllParameters()));
899             m_uiItems.append(cval);
900         } else if (type == "keywords") {
901             Keywordval* kval = new Keywordval;
902             kval->setupUi(toFillin);
903             kval->label->setText(paramName);
904             kval->lineeditwidget->setText(value);
905             QDomElement klistelem = pa.firstChildElement("keywords");
906             QDomElement kdisplaylistelem = pa.firstChildElement("keywordsdisplay");
907             QStringList keywordlist;
908             QStringList keyworddisplaylist;
909             if (!klistelem.isNull()) {
910                 keywordlist = klistelem.text().split(';');
911                 keyworddisplaylist = i18n(kdisplaylistelem.text().toUtf8().data()).split(';');
912             }
913             if (keyworddisplaylist.count() != keywordlist.count()) {
914                 keyworddisplaylist = keywordlist;
915             }
916             for (int i = 0; i < keywordlist.count(); i++) {
917                 kval->comboboxwidget->addItem(keyworddisplaylist.at(i), keywordlist.at(i));
918             }
919             // Add disabled user prompt at index 0
920             kval->comboboxwidget->insertItem(0, i18n("<select a keyword>"), "");
921             kval->comboboxwidget->model()->setData( kval->comboboxwidget->model()->index(0,0), QVariant(Qt::NoItemFlags), Qt::UserRole -1);
922             kval->comboboxwidget->setCurrentIndex(0);
923             m_valueItems[paramName] = kval;
924             connect(kval->lineeditwidget, SIGNAL(editingFinished()) , this, SLOT(collectAllParameters()));
925             connect(kval->comboboxwidget, SIGNAL(activated (const QString&)), this, SLOT(collectAllParameters()));
926             m_uiItems.append(kval);
927         } else if (type == "fontfamily") {
928             Fontval* fval = new Fontval;
929             fval->setupUi(toFillin);
930             fval->name->setText(paramName);
931             fval->fontfamilywidget->setCurrentFont(QFont(value));
932             m_valueItems[paramName] = fval;
933             connect(fval->fontfamilywidget, SIGNAL(currentFontChanged(const QFont &)), this, SLOT(collectAllParameters())) ;
934             m_uiItems.append(fval);
935         } else if (type == "filterjob") {
936             QVBoxLayout *l= new QVBoxLayout(toFillin);
937             QPushButton *button = new QPushButton(paramName, toFillin);
938             l->addWidget(button);
939             m_valueItems[paramName] = button;
940             connect(button, SIGNAL(pressed()), this, SLOT(slotStartFilterJobAction()));   
941         } else {
942             delete toFillin;
943             toFillin = NULL;
944         }
945
946         if (toFillin)
947             m_vbox->addWidget(toFillin);
948     }
949
950     if (stretch)
951         m_vbox->addStretch();
952
953     if (m_keyframeEditor)
954         m_keyframeEditor->checkVisibleParam();
955
956     // Make sure all doubleparam spinboxes have the same width, looks much better
957     QList<DoubleParameterWidget *> allWidgets = findChildren<DoubleParameterWidget *>();
958     int minSize = 0;
959     for (int i = 0; i < allWidgets.count(); i++) {
960         if (minSize < allWidgets.at(i)->spinSize()) minSize = allWidgets.at(i)->spinSize();
961     }
962     for (int i = 0; i < allWidgets.count(); i++) {
963         allWidgets.at(i)->setSpinSize(minSize);
964     }
965 }
966
967 ParameterContainer::~ParameterContainer()
968 {
969     //clearLayout(m_vbox);
970     delete m_vbox;
971 }
972
973 void ParameterContainer::meetDependency(const QString& name, QString type, QString value)
974 {
975     if (type == "curve") {
976         KisCurveWidget *curve = (KisCurveWidget*)m_valueItems[name];
977         if (curve) {
978             int color = value.toInt();
979             curve->setPixmap(QPixmap::fromImage(ColorTools::rgbCurvePlane(curve->size(), (ColorTools::ColorsRGB)(color == 3 ? 4 : color), 0.8)));
980         }
981     } else if (type == "bezier_spline") {
982         BezierSplineWidget *widget = (BezierSplineWidget*)m_valueItems[name];
983         if (widget) {
984             widget->setMode((BezierSplineWidget::CurveModes)((int)(value.toDouble() * 10)));
985         }
986     }
987 }
988
989 wipeInfo ParameterContainer::getWipeInfo(QString value)
990 {
991     wipeInfo info;
992     // Convert old geometry values that used a comma as separator
993     if (value.contains(',')) value.replace(',','/');
994     QString start = value.section(';', 0, 0);
995     QString end = value.section(';', 1, 1).section('=', 1, 1);
996     if (start.startsWith("-100%/0"))
997         info.start = LEFT;
998     else if (start.startsWith("100%/0"))
999         info.start = RIGHT;
1000     else if (start.startsWith("0%/100%"))
1001         info.start = DOWN;
1002     else if (start.startsWith("0%/-100%"))
1003         info.start = UP;
1004     else
1005         info.start = CENTER;
1006
1007     if (start.count(':') == 2)
1008         info.startTransparency = start.section(':', -1).toInt();
1009     else
1010         info.startTransparency = 100;
1011
1012     if (end.startsWith("-100%/0"))
1013         info.end = LEFT;
1014     else if (end.startsWith("100%/0"))
1015         info.end = RIGHT;
1016     else if (end.startsWith("0%/100%"))
1017         info.end = DOWN;
1018     else if (end.startsWith("0%/-100%"))
1019         info.end = UP;
1020     else
1021         info.end = CENTER;
1022
1023     if (end.count(':') == 2)
1024         info.endTransparency = end.section(':', -1).toInt();
1025     else
1026         info.endTransparency = 100;
1027
1028     return info;
1029 }
1030
1031 void ParameterContainer::updateTimecodeFormat()
1032 {
1033     if (m_keyframeEditor)
1034         m_keyframeEditor->updateTimecodeFormat();
1035
1036     QDomNodeList namenode = m_effect.elementsByTagName("parameter");
1037     for (int i = 0; i < namenode.count() ; i++) {
1038         QDomNode pa = namenode.item(i);
1039         QDomElement na = pa.firstChildElement("name");
1040         QString type = pa.attributes().namedItem("type").nodeValue();
1041         QString paramName = na.isNull() ? pa.attributes().namedItem("name").nodeValue() : i18n(na.text().toUtf8().data());
1042
1043         if (type == "geometry") {
1044             if (KdenliveSettings::on_monitor_effects()) {
1045                 if (m_geometryWidget) m_geometryWidget->updateTimecodeFormat();
1046             } else {
1047                 Geometryval *geom = ((Geometryval*)m_valueItems[paramName+"geometry"]);
1048                 geom->updateTimecodeFormat();
1049             }
1050             break;
1051         } else if (type == "position") {
1052             PositionEdit *posi = ((PositionEdit*)m_valueItems[paramName+"position"]);
1053             posi->updateTimecodeFormat();
1054             break;
1055 #ifdef USE_QJSON
1056         } else if (type == "roto-spline") {
1057             RotoWidget *widget = static_cast<RotoWidget *>(m_valueItems[paramName]);
1058             widget->updateTimecodeFormat();
1059 #endif
1060         }
1061     }
1062 }
1063
1064 void ParameterContainer::slotCollectAllParameters()
1065 {
1066     if (m_valueItems.isEmpty() || m_effect.isNull()) return;
1067     QLocale locale;
1068     locale.setNumberOptions(QLocale::OmitGroupSeparator);
1069     const QDomElement oldparam = m_effect.cloneNode().toElement();
1070     //QDomElement newparam = oldparam.cloneNode().toElement();
1071     QDomNodeList namenode = m_effect.elementsByTagName("parameter");
1072
1073     for (int i = 0; i < namenode.count() ; i++) {
1074         QDomNode pa = namenode.item(i);
1075         QDomElement na = pa.firstChildElement("name");
1076         QString type = pa.attributes().namedItem("type").nodeValue();
1077         QString paramName = na.isNull() ? pa.attributes().namedItem("name").nodeValue() : i18n(na.text().toUtf8().data());
1078         if (type == "complex")
1079             paramName.append("complex");
1080         else if (type == "position")
1081             paramName.append("position");
1082         else if (type == "geometry")
1083             paramName.append("geometry");
1084         else if (type == "keyframe")
1085             paramName.append("keyframe");
1086         if (type != "simplekeyframe" && type != "fixed" && type != "addedgeometry" && !m_valueItems.contains(paramName)) {
1087             kDebug() << "// Param: " << paramName << " NOT FOUND";
1088             continue;
1089         }
1090
1091         QString setValue;
1092         if (type == "double" || type == "constant") {
1093             DoubleParameterWidget *doubleparam = (DoubleParameterWidget*)m_valueItems.value(paramName);
1094             setValue = locale.toString(doubleparam->getValue());
1095         } else if (type == "list") {
1096             KComboBox *box = ((Listval*)m_valueItems.value(paramName))->list;
1097             setValue = box->itemData(box->currentIndex()).toString();
1098         } else if (type == "bool") {
1099             QCheckBox *box = ((Boolval*)m_valueItems.value(paramName))->checkBox;
1100             setValue = box->checkState() == Qt::Checked ? "1" : "0" ;
1101         } else if (type == "color") {
1102             ChooseColorWidget *choosecolor = ((ChooseColorWidget*)m_valueItems.value(paramName));
1103             setValue = choosecolor->getColor();
1104         } else if (type == "complex") {
1105             ComplexParameter *complex = ((ComplexParameter*)m_valueItems.value(paramName));
1106             namenode.item(i) = complex->getParamDesc();
1107         } else if (type == "geometry") {
1108             if (KdenliveSettings::on_monitor_effects()) {
1109                 if (m_geometryWidget) namenode.item(i).toElement().setAttribute("value", m_geometryWidget->getValue());
1110             } else {
1111                 Geometryval *geom = ((Geometryval*)m_valueItems.value(paramName));
1112                 namenode.item(i).toElement().setAttribute("value", geom->getValue());
1113             }
1114         } else if (type == "addedgeometry") {
1115             namenode.item(i).toElement().setAttribute("value", m_geometryWidget->getExtraValue(namenode.item(i).toElement().attribute("name")));
1116         } else if (type == "position") {
1117             PositionEdit *pedit = ((PositionEdit*)m_valueItems.value(paramName));
1118             int pos = pedit->getPosition();
1119             setValue = QString::number(pos);
1120             if (m_effect.attribute("id") == "fadein" || m_effect.attribute("id") == "fade_from_black") {
1121                 // Make sure duration is not longer than clip
1122                 /*if (pos > m_out) {
1123                     pos = m_out;
1124                     pedit->setPosition(pos);
1125                 }*/
1126                 EffectsList::setParameter(m_effect, "in", QString::number(m_in));
1127                 EffectsList::setParameter(m_effect, "out", QString::number(m_in + pos));
1128                 setValue.clear();
1129             } else if (m_effect.attribute("id") == "fadeout" || m_effect.attribute("id") == "fade_to_black") {
1130                 // Make sure duration is not longer than clip
1131                 /*if (pos > m_out) {
1132                     pos = m_out;
1133                     pedit->setPosition(pos);
1134                 }*/
1135                 EffectsList::setParameter(m_effect, "in", QString::number(m_out - pos));
1136                 EffectsList::setParameter(m_effect, "out", QString::number(m_out));
1137                 setValue.clear();
1138             }
1139         } else if (type == "curve") {
1140             KisCurveWidget *curve = ((KisCurveWidget*)m_valueItems.value(paramName));
1141             QList<QPointF> points = curve->curve().points();
1142             QString number = pa.attributes().namedItem("number").nodeValue();
1143             QString inName = pa.attributes().namedItem("inpoints").nodeValue();
1144             QString outName = pa.attributes().namedItem("outpoints").nodeValue();
1145             int off = pa.attributes().namedItem("min").nodeValue().toInt();
1146             int end = pa.attributes().namedItem("max").nodeValue().toInt();
1147             EffectsList::setParameter(m_effect, number, QString::number(points.count()));
1148             for (int j = 0; (j < points.count() && j + off <= end); j++) {
1149                 QString in = inName;
1150                 in.replace("%i", QString::number(j + off));
1151                 QString out = outName;
1152                 out.replace("%i", QString::number(j + off));
1153                 EffectsList::setParameter(m_effect, in, locale.toString(points.at(j).x()));
1154                 EffectsList::setParameter(m_effect, out, locale.toString(points.at(j).y()));
1155             }
1156             QString depends = pa.attributes().namedItem("depends").nodeValue();
1157             if (!depends.isEmpty())
1158                 meetDependency(paramName, type, EffectsList::parameter(m_effect, depends));
1159         } else if (type == "bezier_spline") {
1160             BezierSplineWidget *widget = (BezierSplineWidget*)m_valueItems.value(paramName);
1161             setValue = widget->spline();
1162             QString depends = pa.attributes().namedItem("depends").nodeValue();
1163             if (!depends.isEmpty())
1164                 meetDependency(paramName, type, EffectsList::parameter(m_effect, depends));
1165 #ifdef USE_QJSON
1166         } else if (type == "roto-spline") {
1167             RotoWidget *widget = static_cast<RotoWidget *>(m_valueItems.value(paramName));
1168             setValue = widget->getSpline();
1169 #endif
1170         } else if (type == "wipe") {
1171             Wipeval *wp = (Wipeval*)m_valueItems.value(paramName);
1172             wipeInfo info;
1173             if (wp->start_left->isChecked())
1174                 info.start = LEFT;
1175             else if (wp->start_right->isChecked())
1176                 info.start = RIGHT;
1177             else if (wp->start_up->isChecked())
1178                 info.start = UP;
1179             else if (wp->start_down->isChecked())
1180                 info.start = DOWN;
1181             else if (wp->start_center->isChecked())
1182                 info.start = CENTER;
1183             else
1184                 info.start = LEFT;
1185             info.startTransparency = wp->start_transp->value();
1186
1187             if (wp->end_left->isChecked())
1188                 info.end = LEFT;
1189             else if (wp->end_right->isChecked())
1190                 info.end = RIGHT;
1191             else if (wp->end_up->isChecked())
1192                 info.end = UP;
1193             else if (wp->end_down->isChecked())
1194                 info.end = DOWN;
1195             else if (wp->end_center->isChecked())
1196                 info.end = CENTER;
1197             else
1198                 info.end = RIGHT;
1199             info.endTransparency = wp->end_transp->value();
1200
1201             setValue = getWipeString(info);
1202         } else if ((type == "simplekeyframe" || type == "keyframe") && m_keyframeEditor) {
1203             QDomElement elem = pa.toElement();
1204             QString realName = i18n(na.toElement().text().toUtf8().data());
1205             QString val = m_keyframeEditor->getValue(realName);
1206             elem.setAttribute("keyframes", val);
1207
1208             if (m_keyframeEditor->isVisibleParam(realName))
1209                 elem.setAttribute("intimeline", "1");
1210             else if (elem.hasAttribute("intimeline"))
1211                 elem.removeAttribute("intimeline");
1212         } else if (type == "url") {
1213             KUrlRequester *req = ((Urlval*)m_valueItems.value(paramName))->urlwidget;
1214             setValue = req->url().path();
1215         } else if (type == "keywords"){
1216             QLineEdit *line = ((Keywordval*)m_valueItems.value(paramName))->lineeditwidget;
1217             QComboBox *combo = ((Keywordval*)m_valueItems.value(paramName))->comboboxwidget;
1218             if(combo->currentIndex())
1219             {
1220                 QString comboval = combo->itemData(combo->currentIndex()).toString();
1221                 line->insert(comboval);
1222                 combo->setCurrentIndex(0);
1223             }
1224             setValue = line->text();
1225         } else if (type == "fontfamily") {
1226             QFontComboBox* fontfamily = ((Fontval*)m_valueItems.value(paramName))->fontfamilywidget;
1227             setValue = fontfamily->currentFont().family();
1228         }
1229         if (!setValue.isNull())
1230             pa.attributes().namedItem("value").setNodeValue(setValue);
1231
1232     }
1233     emit parameterChanged(oldparam, m_effect, m_index);
1234 }
1235
1236 QString ParameterContainer::getWipeString(wipeInfo info)
1237 {
1238
1239     QString start;
1240     QString end;
1241     switch (info.start) {
1242     case LEFT:
1243         start = "-100%/0%:100%x100%";
1244         break;
1245     case RIGHT:
1246         start = "100%/0%:100%x100%";
1247         break;
1248     case DOWN:
1249         start = "0%/100%:100%x100%";
1250         break;
1251     case UP:
1252         start = "0%/-100%:100%x100%";
1253         break;
1254     default:
1255         start = "0%/0%:100%x100%";
1256         break;
1257     }
1258     start.append(':' + QString::number(info.startTransparency));
1259
1260     switch (info.end) {
1261     case LEFT:
1262         end = "-100%/0%:100%x100%";
1263         break;
1264     case RIGHT:
1265         end = "100%/0%:100%x100%";
1266         break;
1267     case DOWN:
1268         end = "0%/100%:100%x100%";
1269         break;
1270     case UP:
1271         end = "0%/-100%:100%x100%";
1272         break;
1273     default:
1274         end = "0%/0%:100%x100%";
1275         break;
1276     }
1277     end.append(':' + QString::number(info.endTransparency));
1278     return QString(start + ";-1=" + end);
1279 }
1280
1281 int ParameterContainer::index() const
1282 {
1283     return m_index;
1284 }
1285
1286 void ParameterContainer::slotStartFilterJobAction()
1287 {
1288     QDomNodeList namenode = m_effect.elementsByTagName("parameter");
1289     for (int i = 0; i < namenode.count() ; i++) {
1290         QDomElement pa = namenode.item(i).toElement();
1291         QString type = pa.attribute("type");
1292         if (type == "filterjob") {
1293             emit startFilterJob(pa.attribute("filtertag"), pa.attribute("filterparams"), pa.attribute("finalfilter"), pa.attribute("consumer"), pa.attribute("consumerparams"), pa.attribute("wantedproperties"));
1294             kDebug()<<" - - -PROPS:\n"<<pa.attribute("filtertag")<<"-"<< pa.attribute("filterparams")<<"-"<< pa.attribute("consumer")<<"-"<< pa.attribute("consumerparams")<<"-"<< pa.attribute("wantedproperties");
1295             break;
1296         }
1297     }
1298 }
1299