]> git.sesse.net Git - kdenlive/blob - src/effectstackedit.cpp
Introduce very basic geometry editing on the monitor.
[kdenlive] / src / effectstackedit.cpp
1 /***************************************************************************
2                           effecstackview.cpp  -  description
3                              -------------------
4     begin                : Feb 15 2008
5     copyright            : (C) 2008 by Marco Gittler
6     email                : g.marco@freenet.de
7  ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17
18 #include "effectstackedit.h"
19 #include "ui_constval_ui.h"
20 #include "ui_listval_ui.h"
21 #include "ui_boolval_ui.h"
22 #include "ui_wipeval_ui.h"
23 #include "ui_urlval_ui.h"
24 #include "complexparameter.h"
25 #include "geometryval.h"
26 #include "positionedit.h"
27 #include "projectlist.h"
28 #include "effectslist.h"
29 #include "kdenlivesettings.h"
30 #include "profilesdialog.h"
31 #include "kis_curve_widget.h"
32 #include "kis_cubic_curve.h"
33 #include "choosecolorwidget.h"
34 #include "geometrywidget.h"
35
36 #include <KDebug>
37 #include <KLocale>
38 #include <KFileDialog>
39
40 #include <QVBoxLayout>
41 #include <QSlider>
42 #include <QLabel>
43 #include <QPushButton>
44 #include <QCheckBox>
45 #include <QScrollArea>
46
47
48 class Boolval: public QWidget, public Ui::Boolval_UI
49 {
50 };
51
52 class Constval: public QWidget, public Ui::Constval_UI
53 {
54 };
55
56 class Listval: public QWidget, public Ui::Listval_UI
57 {
58 };
59
60 class Wipeval: public QWidget, public Ui::Wipeval_UI
61 {
62 };
63
64 class Urlval: public QWidget, public Ui::Urlval_UI
65 {
66 };
67
68 QMap<QString, QImage> EffectStackEdit::iconCache;
69
70 EffectStackEdit::EffectStackEdit(Monitor *monitor, QWidget *parent) :
71         QScrollArea(parent),
72         m_in(0),
73         m_out(0),
74         m_frameSize(QPoint()),
75         m_keyframeEditor(NULL),
76         m_monitor(monitor)
77 {
78     m_baseWidget = new QWidget(this);
79     setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
80     setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
81     setFrameStyle(QFrame::NoFrame);
82     setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::MinimumExpanding));
83
84     setWidget(m_baseWidget);
85     setWidgetResizable(true);
86     m_vbox = new QVBoxLayout(m_baseWidget);
87     m_vbox->setContentsMargins(0, 0, 0, 0);
88     m_vbox->setSpacing(0);
89     //wid->show();
90 }
91
92 EffectStackEdit::~EffectStackEdit()
93 {
94     iconCache.clear();
95     delete m_baseWidget;
96 }
97
98 void EffectStackEdit::setFrameSize(QPoint p)
99 {
100     m_frameSize = p;
101     QDomNodeList namenode = m_params.elementsByTagName("parameter");
102     for (int i = 0; i < namenode.count() ; i++) {
103         QDomNode pa = namenode.item(i);
104         QDomNode na = pa.firstChildElement("name");
105         QString type = pa.attributes().namedItem("type").nodeValue();
106         QString paramName = i18n(na.toElement().text().toUtf8().data());
107
108         if (type == "geometry") {
109             Geometryval *geom = ((Geometryval*)m_valueItems[paramName+"geometry"]);
110             geom->setFrameSize(m_frameSize);
111             break;
112         }
113     }
114 }
115
116 void EffectStackEdit::updateTimecodeFormat()
117 {
118     if (m_keyframeEditor)
119         m_keyframeEditor->updateTimecodeFormat();
120     QDomNodeList namenode = m_params.elementsByTagName("parameter");
121     for (int i = 0; i < namenode.count() ; i++) {
122         QDomNode pa = namenode.item(i);
123         QDomNode na = pa.firstChildElement("name");
124         QString type = pa.attributes().namedItem("type").nodeValue();
125         QString paramName = i18n(na.toElement().text().toUtf8().data());
126
127         if (type == "geometry" && !KdenliveSettings::on_monitor_effects()) {
128             Geometryval *geom = ((Geometryval*)m_valueItems[paramName+"geometry"]);
129             geom->updateTimecodeFormat();
130             break;
131         }
132         if (type == "position") {
133             PositionEdit *posi = ((PositionEdit*)m_valueItems[paramName+"position"]);
134             posi->updateTimecodeFormat();
135             break;
136         }
137     }
138 }
139
140 void EffectStackEdit::updateProjectFormat(MltVideoProfile profile, Timecode t)
141 {
142     m_profile = profile;
143     m_timecode = t;
144 }
145
146 void EffectStackEdit::updateParameter(const QString &name, const QString &value)
147 {
148     m_params.setAttribute(name, value);
149 }
150
151 void EffectStackEdit::transferParamDesc(const QDomElement d, int pos, int in, int out)
152 {
153     clearAllItems();
154     if (m_keyframeEditor) delete m_keyframeEditor;
155     m_keyframeEditor = NULL;
156     m_params = d;
157     m_in = in;
158     m_out = out;
159     if (m_params.isNull()) {
160         kDebug() << "// EMPTY EFFECT STACK";
161         return;
162     }
163
164     /*QDomDocument doc;
165     doc.appendChild(doc.importNode(m_params, true));
166     kDebug() << "IMPORTED TRANS: " << doc.toString();*/
167
168     QDomNodeList namenode = m_params.elementsByTagName("parameter");
169     QDomElement e = m_params.toElement();
170     const int minFrame = e.attribute("start").toInt();
171     const int maxFrame = e.attribute("end").toInt();
172
173
174     for (int i = 0; i < namenode.count() ; i++) {
175         QDomElement pa = namenode.item(i).toElement();
176         QDomNode na = pa.firstChildElement("name");
177         QString type = pa.attribute("type");
178         QString paramName = i18n(na.toElement().text().toUtf8().data());
179         QWidget * toFillin = new QWidget(m_baseWidget);
180         QString value = pa.attribute("value").isNull() ?
181                         pa.attribute("default") : pa.attribute("value");
182
183         /** Currently supported parameter types are:
184             * constant (=double): a slider with an integer value (use the "factor" attribute to divide the value so that you can get a double
185             * list: a combobox containing a list of values to choose
186             * bool: a checkbox
187             * complex: designed for keyframe parameters, but old and not finished, do not use
188             * geometry: a rectangle that can be moved & resized, with possible keyframes, used in composite transition
189             * keyframe: a list widget with a list of entries (position and value)
190             * color: a color chooser button
191             * position: a slider representing the position of a frame in the current clip
192             * curve: a single curve representing multiple points
193             * wipe: a widget designed for the wipe transition, allowing to choose a position (left, right, top,...)
194         */
195
196         if (type == "double" || type == "constant") {
197             int min;
198             int max;
199             if (pa.attribute("min").startsWith('%'))
200                 min = (int) ProfilesDialog::getStringEval(m_profile, pa.attribute("min"));
201             else
202                 min = pa.attribute("min").toInt();
203             if (pa.attribute("max").startsWith('%'))
204                 max = (int) ProfilesDialog::getStringEval(m_profile, pa.attribute("max"));
205             else
206                 max = pa.attribute("max").toInt();
207             createSliderItem(paramName, (int)(value.toDouble() + 0.5) , min, max, pa.attribute("suffix", QString()));
208             delete toFillin;
209             toFillin = NULL;
210         } else if (type == "list") {
211             Listval *lsval = new Listval;
212             lsval->setupUi(toFillin);
213             QStringList listitems = pa.attribute("paramlist").split(',');
214             QStringList listitemsdisplay = pa.attribute("paramlistdisplay").split(',');
215             if (listitemsdisplay.count() != listitems.count()) listitemsdisplay = listitems;
216             //lsval->list->addItems(listitems);
217             lsval->list->setIconSize(QSize(30, 30));
218             for (int i = 0; i < listitems.count(); i++) {
219                 lsval->list->addItem(listitemsdisplay.at(i), listitems.at(i));
220                 QString entry = listitems.at(i);
221                 if (!entry.isEmpty() && (entry.endsWith(".png") || entry.endsWith(".pgm"))) {
222                     if (!EffectStackEdit::iconCache.contains(entry)) {
223                         QImage pix(entry);
224                         EffectStackEdit::iconCache[entry] = pix.scaled(30, 30);
225                     }
226                     lsval->list->setItemIcon(i, QPixmap::fromImage(iconCache[entry]));
227                 }
228             }
229             if (!value.isEmpty()) lsval->list->setCurrentIndex(listitems.indexOf(value));
230             lsval->title->setTitle(paramName);
231             m_valueItems[paramName] = lsval;
232             connect(lsval->list, SIGNAL(currentIndexChanged(int)) , this, SLOT(collectAllParameters()));
233             m_uiItems.append(lsval);
234         } else if (type == "bool") {
235             Boolval *bval = new Boolval;
236             bval->setupUi(toFillin);
237             bval->checkBox->setCheckState(value == "0" ? Qt::Unchecked : Qt::Checked);
238             bval->checkBox->setText(paramName);
239             m_valueItems[paramName] = bval;
240             connect(bval->checkBox, SIGNAL(stateChanged(int)) , this, SLOT(collectAllParameters()));
241             m_uiItems.append(bval);
242         } else if (type == "complex") {
243             /*QStringList names=nodeAtts.namedItem("name").nodeValue().split(';');
244             QStringList max=nodeAtts.namedItem("max").nodeValue().split(';');
245             QStringList min=nodeAtts.namedItem("min").nodeValue().split(';');
246             QStringList val=value.split(';');
247             kDebug() << "in complex"<<names.size() << " " << max.size() << " " << min.size() << " " << val.size()  ;
248             if ( (names.size() == max.size() ) &&
249                  (names.size()== min.size()) &&
250                  (names.size()== val.size()) )
251             {
252              for (int i=0;i< names.size();i++){
253               createSliderItem(names[i],val[i].toInt(),min[i].toInt(),max[i].toInt());
254              };
255             }*/
256             ComplexParameter *pl = new ComplexParameter;
257             pl->setupParam(d, pa.attribute("name"), 0, 100);
258             m_vbox->addWidget(pl);
259             m_valueItems[paramName+"complex"] = pl;
260             connect(pl, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
261         } else if (type == "geometry") {
262             if (KdenliveSettings::on_monitor_effects()) {
263                 GeometryWidget *geometry = new GeometryWidget(m_monitor, pos, this);
264                 if (minFrame == maxFrame)
265                     geometry->setupParam(pa, m_in, m_out);
266                 else
267                     geometry->setupParam(pa, minFrame, maxFrame);
268                 m_vbox->addWidget(geometry);
269                 m_valueItems[paramName+"geometry"] = geometry;
270                 connect(geometry, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
271             } else {
272                 Geometryval *geo = new Geometryval(m_profile, m_timecode, m_frameSize, pos);
273                 if (minFrame == maxFrame)
274                     geo->setupParam(pa, m_in, m_out);
275                 else
276                     geo->setupParam(pa, minFrame, maxFrame);
277                 m_vbox->addWidget(geo);
278                 m_valueItems[paramName+"geometry"] = geo;
279                 connect(geo, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
280                 connect(geo, SIGNAL(seekToPos(int)), this, SIGNAL(seekTimeline(int)));
281             }
282         } else if (type == "keyframe" || type == "simplekeyframe") {
283             // keyframe editor widget
284             kDebug() << "min: " << m_in << ", MAX: " << m_out;
285             if (m_keyframeEditor == NULL) {
286                 KeyframeEdit *geo = new KeyframeEdit(pa, m_in, m_in + m_out, pa.attribute("min").toInt(), pa.attribute("max").toInt(), m_timecode, e.attribute("active_keyframe", "-1").toInt());
287                 m_vbox->addWidget(geo);
288                 m_valueItems[paramName+"keyframe"] = geo;
289                 m_keyframeEditor = geo;
290                 connect(geo, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
291                 connect(geo, SIGNAL(seekToPos(int)), this, SIGNAL(seekTimeline(int)));
292             } else {
293                 // we already have a keyframe editor, so just add another column for the new param
294                 m_keyframeEditor->addParameter(pa);
295             }
296         } else if (type == "color") {
297             if (value.startsWith('#'))
298                 value = value.replace('#', "0x");
299             bool ok;
300             ChooseColorWidget *choosecolor = new ChooseColorWidget(paramName, QColor(value.toUInt(&ok, 16)), this);
301             m_vbox->addWidget(choosecolor);
302             m_valueItems[paramName] = choosecolor;
303             connect(choosecolor, SIGNAL(displayMessage(const QString&, int)), this, SIGNAL(displayMessage(const QString&, int)));
304             connect(choosecolor, SIGNAL(modified()) , this, SLOT(collectAllParameters()));
305         } else if (type == "position") {
306             int pos = value.toInt();
307             if (d.attribute("id") == "fadein" || d.attribute("id") == "fade_from_black") {
308                 pos = pos - m_in;
309             } else if (d.attribute("id") == "fadeout" || d.attribute("id") == "fade_to_black") {
310                 // fadeout position starts from clip end
311                 pos = m_out - (pos - m_in);
312             }
313             PositionEdit *posedit = new PositionEdit(paramName, pos, 1, m_out, m_timecode);
314             m_vbox->addWidget(posedit);
315             m_valueItems[paramName+"position"] = posedit;
316             connect(posedit, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
317         } else if (type == "curve") {
318             KisCurveWidget *curve = new KisCurveWidget(this);
319             curve->setMaxPoints(pa.attribute("max").toInt());
320             QList<QPointF> points;
321             int number = EffectsList::parameter(e, pa.attribute("number")).toInt();
322             QString inName = pa.attribute("inpoints");
323             QString outName = pa.attribute("outpoints");
324             int start = pa.attribute("min").toInt();
325             for (int j = start; j <= number; j++) {
326                 QString in = inName;
327                 in.replace("%i", QString::number(j));
328                 QString out = outName;
329                 out.replace("%i", QString::number(j));
330                 points << QPointF(EffectsList::parameter(e, in).toDouble(), EffectsList::parameter(e, out).toDouble());
331             }
332             if (!points.isEmpty())
333                 curve->setCurve(KisCubicCurve(points));
334             QSpinBox *spinin = new QSpinBox();
335             spinin->setRange(0, 1000);
336             QSpinBox *spinout = new QSpinBox();
337             spinout->setRange(0, 1000);
338             curve->setupInOutControls(spinin, spinout, 0, 1000);
339             m_vbox->addWidget(curve);
340             m_vbox->addWidget(spinin);
341             m_vbox->addWidget(spinout);
342             connect(curve, SIGNAL(modified()), this, SLOT(collectAllParameters()));
343             m_valueItems[paramName] = curve;
344         } else if (type == "wipe") {
345             Wipeval *wpval = new Wipeval;
346             wpval->setupUi(toFillin);
347             wipeInfo w = getWipeInfo(value);
348             switch (w.start) {
349             case UP:
350                 wpval->start_up->setChecked(true);
351                 break;
352             case DOWN:
353                 wpval->start_down->setChecked(true);
354                 break;
355             case RIGHT:
356                 wpval->start_right->setChecked(true);
357                 break;
358             case LEFT:
359                 wpval->start_left->setChecked(true);
360                 break;
361             default:
362                 wpval->start_center->setChecked(true);
363                 break;
364             }
365             switch (w.end) {
366             case UP:
367                 wpval->end_up->setChecked(true);
368                 break;
369             case DOWN:
370                 wpval->end_down->setChecked(true);
371                 break;
372             case RIGHT:
373                 wpval->end_right->setChecked(true);
374                 break;
375             case LEFT:
376                 wpval->end_left->setChecked(true);
377                 break;
378             default:
379                 wpval->end_center->setChecked(true);
380                 break;
381             }
382             wpval->start_transp->setValue(w.startTransparency);
383             wpval->end_transp->setValue(w.endTransparency);
384             m_valueItems[paramName] = wpval;
385             connect(wpval->end_up, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
386             connect(wpval->end_down, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
387             connect(wpval->end_left, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
388             connect(wpval->end_right, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
389             connect(wpval->end_center, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
390             connect(wpval->start_up, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
391             connect(wpval->start_down, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
392             connect(wpval->start_left, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
393             connect(wpval->start_right, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
394             connect(wpval->start_center, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
395             connect(wpval->start_transp, SIGNAL(valueChanged(int)), this, SLOT(collectAllParameters()));
396             connect(wpval->end_transp, SIGNAL(valueChanged(int)), this, SLOT(collectAllParameters()));
397             //wpval->title->setTitle(na.toElement().text());
398             m_uiItems.append(wpval);
399         } else if (type == "url") {
400             Urlval *cval = new Urlval;
401             cval->setupUi(toFillin);
402             cval->label->setText(paramName);
403             cval->urlwidget->fileDialog()->setFilter(ProjectList::getExtensions());
404             m_valueItems[paramName] = cval;
405             cval->urlwidget->setUrl(KUrl(value));
406             connect(cval->urlwidget, SIGNAL(returnPressed()) , this, SLOT(collectAllParameters()));
407             connect(cval->urlwidget, SIGNAL(urlSelected(const KUrl&)) , this, SLOT(collectAllParameters()));
408             m_uiItems.append(cval);
409         } else {
410             delete toFillin;
411             toFillin = NULL;
412         }
413
414         if (toFillin)
415             m_vbox->addWidget(toFillin);
416     }
417     m_vbox->addStretch();
418 }
419
420 wipeInfo EffectStackEdit::getWipeInfo(QString value)
421 {
422     wipeInfo info;
423     QString start = value.section(';', 0, 0);
424     QString end = value.section(';', 1, 1).section('=', 1, 1);
425
426     if (start.startsWith("-100%,0"))
427         info.start = LEFT;
428     else if (start.startsWith("100%,0"))
429         info.start = RIGHT;
430     else if (start.startsWith("0%,100%"))
431         info.start = DOWN;
432     else if (start.startsWith("0%,-100%"))
433         info.start = UP;
434     else
435         info.start = CENTER;
436
437     if (start.count(':') == 2)
438         info.startTransparency = start.section(':', -1).toInt();
439     else
440         info.startTransparency = 100;
441
442     if (end.startsWith("-100%,0"))
443         info.end = LEFT;
444     else if (end.startsWith("100%,0"))
445         info.end = RIGHT;
446     else if (end.startsWith("0%,100%"))
447         info.end = DOWN;
448     else if (end.startsWith("0%,-100%"))
449         info.end = UP;
450     else
451         info.end = CENTER;
452
453     if (end.count(':') == 2)
454         info.endTransparency = end.section(':', -1).toInt();
455     else
456         info.endTransparency = 100;
457
458     return info;
459 }
460
461 QString EffectStackEdit::getWipeString(wipeInfo info)
462 {
463
464     QString start;
465     QString end;
466     switch (info.start) {
467     case LEFT:
468         start = "-100%,0%:100%x100%";
469         break;
470     case RIGHT:
471         start = "100%,0%:100%x100%";
472         break;
473     case DOWN:
474         start = "0%,100%:100%x100%";
475         break;
476     case UP:
477         start = "0%,-100%:100%x100%";
478         break;
479     default:
480         start = "0%,0%:100%x100%";
481         break;
482     }
483     start.append(':' + QString::number(info.startTransparency));
484
485     switch (info.end) {
486     case LEFT:
487         end = "-100%,0%:100%x100%";
488         break;
489     case RIGHT:
490         end = "100%,0%:100%x100%";
491         break;
492     case DOWN:
493         end = "0%,100%:100%x100%";
494         break;
495     case UP:
496         end = "0%,-100%:100%x100%";
497         break;
498     default:
499         end = "0%,0%:100%x100%";
500         break;
501     }
502     end.append(':' + QString::number(info.endTransparency));
503     return QString(start + ";-1=" + end);
504 }
505
506 void EffectStackEdit::collectAllParameters()
507 {
508     if (m_valueItems.isEmpty() || m_params.isNull()) return;
509     const QDomElement oldparam = m_params.cloneNode().toElement();
510     QDomElement newparam = oldparam.cloneNode().toElement();
511     QDomNodeList namenode = newparam.elementsByTagName("parameter");
512
513     for (int i = 0; i < namenode.count() ; i++) {
514         QDomNode pa = namenode.item(i);
515         QDomNode na = pa.firstChildElement("name");
516         QString type = pa.attributes().namedItem("type").nodeValue();
517         QString paramName = i18n(na.toElement().text().toUtf8().data());
518         if (type == "complex")
519             paramName.append("complex");
520         else if (type == "position")
521             paramName.append("position");
522         else if (type == "geometry")
523             paramName.append("geometry");
524         else if (type == "keyframe")
525             paramName.append("keyframe");
526         if (type != "simplekeyframe" && !m_valueItems.contains(paramName)) {
527             kDebug() << "// Param: " << paramName << " NOT FOUND";
528             continue;
529         }
530
531         QString setValue;
532         if (type == "double" || type == "constant") {
533             QSlider* slider = ((Constval*)m_valueItems.value(paramName))->horizontalSlider;
534             setValue = QString::number(slider->value());
535         } else if (type == "list") {
536             KComboBox *box = ((Listval*)m_valueItems.value(paramName))->list;
537             setValue = box->itemData(box->currentIndex()).toString();
538         } else if (type == "bool") {
539             QCheckBox *box = ((Boolval*)m_valueItems.value(paramName))->checkBox;
540             setValue = box->checkState() == Qt::Checked ? "1" : "0" ;
541         } else if (type == "color") {
542             ChooseColorWidget *choosecolor = ((ChooseColorWidget*)m_valueItems.value(paramName));
543             setValue = choosecolor->getColor().name();
544         } else if (type == "complex") {
545             ComplexParameter *complex = ((ComplexParameter*)m_valueItems.value(paramName));
546             namenode.item(i) = complex->getParamDesc();
547         } else if (type == "geometry") {
548             if (KdenliveSettings::on_monitor_effects()) {
549                 GeometryWidget *geometry = ((GeometryWidget*)m_valueItems.value(paramName));
550                 namenode.item(i).toElement().setAttribute("value", geometry->getValue());
551             } else {
552                 Geometryval *geom = ((Geometryval*)m_valueItems.value(paramName));
553                 namenode.item(i).toElement().setAttribute("value", geom->getValue());
554             }
555         } else if (type == "position") {
556             PositionEdit *pedit = ((PositionEdit*)m_valueItems.value(paramName));
557             int pos = pedit->getPosition();
558             setValue = QString::number(pos);
559             if (newparam.attribute("id") == "fadein" || newparam.attribute("id") == "fade_from_black") {
560                 // Make sure duration is not longer than clip
561                 /*if (pos > m_out) {
562                     pos = m_out;
563                     pedit->setPosition(pos);
564                 }*/
565                 EffectsList::setParameter(newparam, "in", QString::number(m_in));
566                 EffectsList::setParameter(newparam, "out", QString::number(m_in + pos));
567                 setValue.clear();
568             } else if (newparam.attribute("id") == "fadeout" || newparam.attribute("id") == "fade_to_black") {
569                 // Make sure duration is not longer than clip
570                 /*if (pos > m_out) {
571                     pos = m_out;
572                     pedit->setPosition(pos);
573                 }*/
574                 EffectsList::setParameter(newparam, "in", QString::number(m_out + m_in - pos));
575                 EffectsList::setParameter(newparam, "out", QString::number(m_out + m_in));
576                 setValue.clear();
577             }
578         } else if (type == "curve") {
579             KisCurveWidget *curve = ((KisCurveWidget*)m_valueItems.value(paramName));
580             QList<QPointF> points = curve->curve().points();
581             QString number = pa.attributes().namedItem("number").nodeValue();
582             QString inName = pa.attributes().namedItem("inpoints").nodeValue();
583             QString outName = pa.attributes().namedItem("outpoints").nodeValue();
584             int off = pa.attributes().namedItem("min").nodeValue().toInt();
585             int end = pa.attributes().namedItem("max").nodeValue().toInt();
586             EffectsList::setParameter(newparam, number, QString::number(points.count()));
587             for (int j = 0; (j < points.count() && j + off <= end); j++) {
588                 QString in = inName;
589                 in.replace("%i", QString::number(j + off));
590                 QString out = outName;
591                 out.replace("%i", QString::number(j + off));
592                 EffectsList::setParameter(newparam, in, QString::number(points.at(j).x()));
593                 EffectsList::setParameter(newparam, out, QString::number(points.at(j).y()));
594             }
595         } else if (type == "wipe") {
596             Wipeval *wp = (Wipeval*)m_valueItems.value(paramName);
597             wipeInfo info;
598             if (wp->start_left->isChecked())
599                 info.start = LEFT;
600             else if (wp->start_right->isChecked())
601                 info.start = RIGHT;
602             else if (wp->start_up->isChecked())
603                 info.start = UP;
604             else if (wp->start_down->isChecked())
605                 info.start = DOWN;
606             else if (wp->start_center->isChecked())
607                 info.start = CENTER;
608             else
609                 info.start = LEFT;
610             info.startTransparency = wp->start_transp->value();
611
612             if (wp->end_left->isChecked())
613                 info.end = LEFT;
614             else if (wp->end_right->isChecked())
615                 info.end = RIGHT;
616             else if (wp->end_up->isChecked())
617                 info.end = UP;
618             else if (wp->end_down->isChecked())
619                 info.end = DOWN;
620             else if (wp->end_center->isChecked())
621                 info.end = CENTER;
622             else
623                 info.end = RIGHT;
624             info.endTransparency = wp->end_transp->value();
625
626             setValue = getWipeString(info);
627         } else if ((type == "simplekeyframe" || type == "keyframe") && m_keyframeEditor) {
628             QString realName = i18n(na.toElement().text().toUtf8().data());
629             QString val = m_keyframeEditor->getValue(realName);
630             kDebug() << "SET VALUE: " << val;
631             namenode.item(i).toElement().setAttribute("keyframes", val);
632         } else if (type == "url") {
633             KUrlRequester *req = ((Urlval*)m_valueItems.value(paramName))->urlwidget;
634             setValue = req->url().path();
635         }
636
637         if (!setValue.isNull())
638             pa.attributes().namedItem("value").setNodeValue(setValue);
639
640     }
641     emit parameterChanged(oldparam, newparam);
642 }
643
644 void EffectStackEdit::createSliderItem(const QString& name, int val , int min, int max, const QString suffix)
645 {
646     QWidget* toFillin = new QWidget(m_baseWidget);
647     Constval *ctval = new Constval;
648     ctval->setupUi(toFillin);
649     ctval->horizontalSlider->setMinimum(min);
650     ctval->horizontalSlider->setMaximum(max);
651     if (!suffix.isEmpty()) ctval->spinBox->setSuffix(suffix);
652     ctval->spinBox->setMinimum(min);
653     ctval->spinBox->setMaximum(max);
654     ctval->horizontalSlider->setPageStep((int)(max - min) / 10);
655     ctval->horizontalSlider->setValue(val);
656     ctval->label->setText(name);
657     m_valueItems[name] = ctval;
658     m_uiItems.append(ctval);
659     connect(ctval->horizontalSlider, SIGNAL(valueChanged(int)) , this, SLOT(collectAllParameters()));
660     m_vbox->addWidget(toFillin);
661 }
662
663 void EffectStackEdit::slotSliderMoved(int)
664 {
665     collectAllParameters();
666 }
667
668 void EffectStackEdit::clearAllItems()
669 {
670     blockSignals(true);
671     m_valueItems.clear();
672     m_uiItems.clear();
673     /*while (!m_items.isEmpty()) {
674         QWidget *die = m_items.takeFirst();
675         die->disconnect();
676         delete die;
677     }*/
678     //qDeleteAll(m_uiItems);
679     QLayoutItem *child;
680     while ((child = m_vbox->takeAt(0)) != 0) {
681         QWidget *wid = child->widget();
682         delete child;
683         if (wid) delete wid;
684     }
685     m_keyframeEditor = NULL;
686     blockSignals(false);
687 }