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