]> git.sesse.net Git - kdenlive/blob - src/effectstackedit.cpp
Some progress on keyframe editor
[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_positionval_ui.h"
24 #include "ui_wipeval_ui.h"
25 #include "ui_keyframeeditor_ui.h"
26 #include "complexparameter.h"
27 #include "geometryval.h"
28 #include "keyframeedit.h"
29 #include "effectslist.h"
30 #include "kdenlivesettings.h"
31
32 #include <KDebug>
33 #include <KLocale>
34
35 #include <QVBoxLayout>
36 #include <QSlider>
37 #include <QLabel>
38 #include <QPushButton>
39 #include <QCheckBox>
40 #include <QScrollArea>
41
42
43 class Boolval: public EffectStackEdit::UiItem, public Ui::Boolval_UI
44 {
45 };
46
47 class Colorval: public EffectStackEdit::UiItem, public Ui::Colorval_UI
48 {
49 };
50
51 class Constval: public EffectStackEdit::UiItem, public Ui::Constval_UI
52 {
53 };
54
55 class Listval: public EffectStackEdit::UiItem, public Ui::Listval_UI
56 {
57 };
58
59 class Positionval: public EffectStackEdit::UiItem, public Ui::Positionval_UI
60 {
61 };
62
63 class Wipeval: public EffectStackEdit::UiItem, public Ui::Wipeval_UI
64 {
65 };
66
67
68 QMap<QString, QImage> EffectStackEdit::iconCache;
69
70 EffectStackEdit::EffectStackEdit(QWidget *parent) :
71         QWidget(parent),
72         m_in(0),
73         m_out(0),
74         m_frameSize(QPoint())
75 {
76     setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding));
77     QVBoxLayout *vbox1 = new QVBoxLayout(parent);
78     vbox1->setContentsMargins(0, 0, 0, 0);
79     vbox1->setSpacing(0);
80
81     QScrollArea *area = new QScrollArea;
82     QWidget *wid = new QWidget(parent);
83     area->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
84     area->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded);
85     area->setFrameStyle(QFrame::NoFrame);
86     wid->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum));
87     area->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::MinimumExpanding));
88
89     vbox1->addWidget(area);
90     area->setWidget(wid);
91     area->setWidgetResizable(true);
92     m_vbox = new QVBoxLayout(wid);
93     m_vbox->setContentsMargins(0, 0, 0, 0);
94     m_vbox->setSpacing(0);
95     wid->show();
96
97 }
98
99 EffectStackEdit::~EffectStackEdit()
100 {
101     iconCache.clear();
102 }
103
104 void EffectStackEdit::setFrameSize(QPoint p)
105 {
106     m_frameSize = p;
107     QDomNodeList namenode = m_params.elementsByTagName("parameter");
108     for (int i = 0; i < namenode.count() ; i++) {
109         QDomNode pa = namenode.item(i);
110         QDomNode na = pa.firstChildElement("name");
111         QString type = pa.attributes().namedItem("type").nodeValue();
112         QString paramName = i18n(na.toElement().text().toUtf8().data());
113
114         if (type == "geometry") {
115             Geometryval *geom = ((Geometryval*)m_valueItems[paramName+"geometry"]);
116             geom->setFrameSize(m_frameSize);
117             break;
118         }
119     }
120
121 }
122
123 void EffectStackEdit::updateProjectFormat(MltVideoProfile profile, Timecode t)
124 {
125     m_profile = profile;
126     m_timecode = t;
127 }
128
129 void EffectStackEdit::updateParameter(const QString &name, const QString &value)
130 {
131     m_params.setAttribute(name, value);
132 }
133
134 void EffectStackEdit::transferParamDesc(const QDomElement& d, int in, int out)
135 {
136     kDebug() << "in";
137     m_params = d;
138     m_in = in;
139     m_out = out;
140     clearAllItems();
141     if (m_params.isNull()) return;
142
143     QDomDocument doc;
144     doc.appendChild(doc.importNode(m_params, true));
145     //kDebug() << "IMPORTED TRANS: " << doc.toString();
146     QDomNodeList namenode = m_params.elementsByTagName("parameter");
147     QDomElement e = m_params.toElement();
148     const int minFrame = e.attribute("start").toInt();
149     const int maxFrame = e.attribute("end").toInt();
150
151
152     for (int i = 0; i < namenode.count() ; i++) {
153         kDebug() << "in form";
154         QDomElement pa = namenode.item(i).toElement();
155         QDomNode na = pa.firstChildElement("name");
156         QString type = pa.attribute("type");
157         QString paramName = i18n(na.toElement().text().toUtf8().data());
158         QWidget * toFillin = new QWidget;
159         QString value = pa.attribute("value").isNull() ?
160                         pa.attribute("default") : pa.attribute("value");
161         if (type == "geometry") {
162             /*pa.setAttribute("namedesc", "X;Y;Width;Height;Transparency");
163             pa.setAttribute("format", "%d%,%d%:%d%x%d%:%d");
164             pa.setAttribute("min", "-500;-500;0;0;0");
165             pa.setAttribute("max", "500;500;200;200;100");*/
166         } else if (type == "complex") {
167             //pa.setAttribute("namedesc",pa.attribute("name"));
168
169         }
170
171
172         //TODO constant, list, bool, complex , color, geometry, position
173         if (type == "double" || type == "constant") {
174             createSliderItem(paramName, value.toInt(), pa.attribute("min").toInt(), pa.attribute("max").toInt());
175             delete toFillin;
176             toFillin = NULL;
177         } else if (type == "list") {
178             Listval *lsval = new Listval;
179             lsval->setupUi(toFillin);
180             QStringList listitems = pa.attribute("paramlist").split(',');
181             QStringList listitemsdisplay = pa.attribute("paramlistdisplay").split(',');
182             if (listitemsdisplay.count() != listitems.count()) listitemsdisplay = listitems;
183             //lsval->list->addItems(listitems);
184             lsval->list->setIconSize(QSize(30, 30));
185             for (int i = 0; i < listitems.count(); i++) {
186                 lsval->list->addItem(listitemsdisplay.at(i), listitems.at(i));
187                 QString entry = listitems.at(i);
188                 if (!entry.isEmpty() && (entry.endsWith(".png") || entry.endsWith(".pgm"))) {
189                     if (!EffectStackEdit::iconCache.contains(entry)) {
190                         QImage pix(entry);
191                         EffectStackEdit::iconCache[entry] = pix.scaled(30, 30);
192                     }
193                     lsval->list->setItemIcon(i, QPixmap::fromImage(iconCache[entry]));
194                 }
195             }
196             if (!value.isEmpty()) lsval->list->setCurrentIndex(listitems.indexOf(value));
197
198             connect(lsval->list, SIGNAL(currentIndexChanged(int)) , this, SLOT(collectAllParameters()));
199             lsval->title->setTitle(paramName);
200             m_valueItems[paramName] = lsval;
201             m_uiItems.append(lsval);
202         } else if (type == "bool") {
203             Boolval *bval = new Boolval;
204             bval->setupUi(toFillin);
205             bval->checkBox->setCheckState(value == "0" ? Qt::Unchecked : Qt::Checked);
206
207             connect(bval->checkBox, SIGNAL(stateChanged(int)) , this, SLOT(collectAllParameters()));
208             bval->checkBox->setText(paramName);
209             m_valueItems[paramName] = bval;
210             m_uiItems.append(bval);
211         } else if (type == "complex") {
212             /*QStringList names=nodeAtts.namedItem("name").nodeValue().split(';');
213             QStringList max=nodeAtts.namedItem("max").nodeValue().split(';');
214             QStringList min=nodeAtts.namedItem("min").nodeValue().split(';');
215             QStringList val=value.split(';');
216             kDebug() << "in complex"<<names.size() << " " << max.size() << " " << min.size() << " " << val.size()  ;
217             if ( (names.size() == max.size() ) &&
218                  (names.size()== min.size()) &&
219                  (names.size()== val.size()) )
220             {
221              for (int i=0;i< names.size();i++){
222               createSliderItem(names[i],val[i].toInt(),min[i].toInt(),max[i].toInt());
223              };
224             }*/
225             ComplexParameter *pl = new ComplexParameter;
226             connect(pl, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
227             pl->setupParam(d, pa.attribute("name"), 0, 100);
228             m_vbox->addWidget(pl);
229             m_valueItems[paramName+"complex"] = pl;
230             m_items.append(pl);
231         } else if (type == "geometry") {
232             Geometryval *geo = new Geometryval(m_profile, m_frameSize);
233             connect(geo, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
234             connect(geo, SIGNAL(seekToPos(int)), this, SLOT(slotSeekToPos(int)));
235             geo->setupParam(pa, minFrame, maxFrame);
236             m_vbox->addWidget(geo);
237             m_valueItems[paramName+"geometry"] = geo;
238             m_items.append(geo);
239         } else if (type == "keyframe") {
240             // keyframe editor widget
241             KeyframeEdit *geo = new KeyframeEdit(m_timecode);
242             connect(geo, SIGNAL(parameterChanged()), this, SLOT(collectAllParameters()));
243             geo->setupParam(100, pa.attribute("min").toInt(), pa.attribute("max").toInt(), pa.attribute("keyframes"));
244             //connect(geo, SIGNAL(seekToPos(int)), this, SLOT(slotSeekToPos(int)));
245             //geo->setupParam(pa, minFrame, maxFrame);
246             m_vbox->addWidget(geo);
247             m_valueItems[paramName+"keyframe"] = geo;
248             m_items.append(geo);
249         } else if (type == "color") {
250             Colorval *cval = new Colorval;
251             cval->setupUi(toFillin);
252             bool ok;
253             if (value.startsWith('#')) value = value.replace('#', "0x");
254             cval->kcolorbutton->setColor(value.toUInt(&ok, 16));
255             //kDebug() << "color: " << value << ", " << value.toUInt(&ok, 16);
256
257             connect(cval->kcolorbutton, SIGNAL(clicked()) , this, SLOT(collectAllParameters()));
258             cval->label->setText(paramName);
259             m_valueItems[paramName] = cval;
260             m_uiItems.append(cval);
261         } else if (type == "position") {
262             Positionval *pval = new Positionval;
263             pval->setupUi(toFillin);
264             int pos = value.toInt();
265             if (d.attribute("id") == "fadein" || d.attribute("id") == "fade_from_black") {
266                 pos = pos - m_in;
267             } else if (d.attribute("id") == "fadeout" || d.attribute("id") == "fade_to_black") {
268                 // fadeout position starts from clip end
269                 pos = m_out - (pos - m_in);
270             }
271             pval->krestrictedline->setText(m_timecode.getTimecodeFromFrames(pos));
272             connect(pval->krestrictedline, SIGNAL(editingFinished()), this, SLOT(collectAllParameters()));
273             pval->label->setText(paramName);
274             m_valueItems[paramName + "position"] = pval;
275             m_uiItems.append(pval);
276         } else if (type == "wipe") {
277             Wipeval *wpval = new Wipeval;
278             wpval->setupUi(toFillin);
279             wipeInfo w = getWipeInfo(value);
280             switch (w.start) {
281             case UP:
282                 wpval->start_up->setChecked(true);
283                 break;
284             case DOWN:
285                 wpval->start_down->setChecked(true);
286                 break;
287             case RIGHT:
288                 wpval->start_right->setChecked(true);
289                 break;
290             case LEFT:
291                 wpval->start_left->setChecked(true);
292                 break;
293             default:
294                 wpval->start_center->setChecked(true);
295                 break;
296             }
297             switch (w.end) {
298             case UP:
299                 wpval->end_up->setChecked(true);
300                 break;
301             case DOWN:
302                 wpval->end_down->setChecked(true);
303                 break;
304             case RIGHT:
305                 wpval->end_right->setChecked(true);
306                 break;
307             case LEFT:
308                 wpval->end_left->setChecked(true);
309                 break;
310             default:
311                 wpval->end_center->setChecked(true);
312                 break;
313             }
314             wpval->start_transp->setValue(w.startTransparency);
315             wpval->end_transp->setValue(w.endTransparency);
316
317             connect(wpval->end_up, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
318             connect(wpval->end_down, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
319             connect(wpval->end_left, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
320             connect(wpval->end_right, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
321             connect(wpval->end_center, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
322             connect(wpval->start_up, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
323             connect(wpval->start_down, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
324             connect(wpval->start_left, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
325             connect(wpval->start_right, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
326             connect(wpval->start_center, SIGNAL(clicked()), this, SLOT(collectAllParameters()));
327             connect(wpval->start_transp, SIGNAL(valueChanged(int)), this, SLOT(collectAllParameters()));
328             connect(wpval->end_transp, SIGNAL(valueChanged(int)), this, SLOT(collectAllParameters()));
329             //wpval->title->setTitle(na.toElement().text());
330             m_valueItems[paramName] = wpval;
331             m_uiItems.append(wpval);
332         } else {
333             delete toFillin;
334             toFillin = NULL;
335         }
336
337         if (toFillin) {
338             m_items.append(toFillin);
339             m_vbox->addWidget(toFillin);
340         }
341     }
342     m_vbox->addStretch();
343 }
344
345 void EffectStackEdit::slotSeekToPos(int pos)
346 {
347     emit seekTimeline(m_in + pos);
348 }
349
350 wipeInfo EffectStackEdit::getWipeInfo(QString value)
351 {
352     wipeInfo info;
353     QString start = value.section(';', 0, 0);
354     QString end = value.section(';', 1, 1).section('=', 1, 1);
355     if (start.startsWith("-100%,0")) info.start = LEFT;
356     else if (start.startsWith("100%,0")) info.start = RIGHT;
357     else if (start.startsWith("0%,100%")) info.start = DOWN;
358     else if (start.startsWith("0%,-100%")) info.start = UP;
359     else info.start = CENTER;
360     if (start.count(':') == 2) info.startTransparency = start.section(':', -1).toInt();
361     else info.startTransparency = 100;
362
363     if (end.startsWith("-100%,0")) info.end = LEFT;
364     else if (end.startsWith("100%,0")) info.end = RIGHT;
365     else if (end.startsWith("0%,100%")) info.end = DOWN;
366     else if (end.startsWith("0%,-100%")) info.end = UP;
367     else info.end = CENTER;
368     if (end.count(':') == 2) info.endTransparency = end.section(':', -1).toInt();
369     else info.endTransparency = 100;
370     return info;
371 }
372
373 QString EffectStackEdit::getWipeString(wipeInfo info)
374 {
375
376     QString start;
377     QString end;
378     switch (info.start) {
379     case LEFT:
380         start = "-100%,0%:100%x100%";
381         break;
382     case RIGHT:
383         start = "100%,0%:100%x100%";
384         break;
385     case DOWN:
386         start = "0%,100%:100%x100%";
387         break;
388     case UP:
389         start = "0%,-100%:100%x100%";
390         break;
391     default:
392         start = "0%,0%:100%x100%";
393         break;
394     }
395     start.append(':' + QString::number(info.startTransparency));
396
397     switch (info.end) {
398     case LEFT:
399         end = "-100%,0%:100%x100%";
400         break;
401     case RIGHT:
402         end = "100%,0%:100%x100%";
403         break;
404     case DOWN:
405         end = "0%,100%:100%x100%";
406         break;
407     case UP:
408         end = "0%,-100%:100%x100%";
409         break;
410     default:
411         end = "0%,0%:100%x100%";
412         break;
413     }
414     end.append(':' + QString::number(info.endTransparency));
415     return QString(start + ";-1=" + end);
416 }
417
418 void EffectStackEdit::collectAllParameters()
419 {
420     QDomElement oldparam = m_params.cloneNode().toElement();
421     QDomNodeList namenode = m_params.elementsByTagName("parameter");
422
423     for (int i = 0; i < namenode.count() ; i++) {
424         QDomNode pa = namenode.item(i);
425         QDomNode na = pa.firstChildElement("name");
426         QString type = pa.attributes().namedItem("type").nodeValue();
427         QString paramName = i18n(na.toElement().text().toUtf8().data());
428
429         QString setValue;
430         if (type == "double" || type == "constant") {
431             QSlider* slider = ((Constval*)m_valueItems[paramName])->horizontalSlider;
432             setValue = QString::number(slider->value());
433         } else if (type == "list") {
434             KComboBox *box = ((Listval*)m_valueItems[paramName])->list;
435             setValue = box->itemData(box->currentIndex()).toString();
436         } else if (type == "bool") {
437             QCheckBox *box = ((Boolval*)m_valueItems[paramName])->checkBox;
438             setValue = box->checkState() == Qt::Checked ? "1" : "0" ;
439         } else if (type == "color") {
440             KColorButton *color = ((Colorval*)m_valueItems[paramName])->kcolorbutton;
441             setValue = color->color().name();
442         } else if (type == "complex") {
443             ComplexParameter *complex = ((ComplexParameter*)m_valueItems[paramName+"complex"]);
444             namenode.item(i) = complex->getParamDesc();
445         } else if (type == "geometry") {
446             Geometryval *geom = ((Geometryval*)m_valueItems[paramName+"geometry"]);
447             namenode.item(i) = geom->getParamDesc();
448         } else if (type == "position") {
449             KRestrictedLine *line = ((Positionval*)m_valueItems[paramName+"position"])->krestrictedline;
450             int pos = m_timecode.getFrameCount(line->text(), KdenliveSettings::project_fps());
451             setValue = QString::number(pos);
452             if (m_params.attribute("id") == "fadein" || m_params.attribute("id") == "fade_from_black") {
453                 // Make sure duration is not longer than clip
454                 if (pos > m_out) {
455                     pos = m_out;
456                     line->setText(m_timecode.getTimecodeFromFrames(pos));
457                 }
458                 EffectsList::setParameter(m_params, "in", QString::number(m_in));
459                 EffectsList::setParameter(m_params, "out", QString::number(m_in + pos));
460                 setValue.clear();
461             } else if (m_params.attribute("id") == "fadeout" || m_params.attribute("id") == "fade_to_black") {
462                 // Make sure duration is not longer than clip
463                 if (pos > m_out) {
464                     pos = m_out;
465                     line->setText(m_timecode.getTimecodeFromFrames(pos));
466                 }
467                 EffectsList::setParameter(m_params, "in", QString::number(m_out + m_in - pos));
468                 EffectsList::setParameter(m_params, "out", QString::number(m_out + m_in));
469                 setValue.clear();
470             }
471         } else if (type == "wipe") {
472             Wipeval *wp = (Wipeval*)m_valueItems[paramName];
473             wipeInfo info;
474             if (wp->start_left->isChecked()) info.start = LEFT;
475             else if (wp->start_right->isChecked()) info.start = RIGHT;
476             else if (wp->start_up->isChecked()) info.start = UP;
477             else if (wp->start_down->isChecked()) info.start = DOWN;
478             else if (wp->start_center->isChecked()) info.start = CENTER;
479             else info.start = LEFT;
480             info.startTransparency = wp->start_transp->value();
481             if (wp->end_left->isChecked()) info.end = LEFT;
482             else if (wp->end_right->isChecked()) info.end = RIGHT;
483             else if (wp->end_up->isChecked()) info.end = UP;
484             else if (wp->end_down->isChecked()) info.end = DOWN;
485             else if (wp->end_center->isChecked()) info.end = CENTER;
486             else info.end = RIGHT;
487             info.endTransparency = wp->end_transp->value();
488             setValue = getWipeString(info);
489         }
490
491         if (!setValue.isNull()) {
492             pa.attributes().namedItem("value").setNodeValue(setValue);
493         }
494     }
495     emit parameterChanged(oldparam, m_params);
496 }
497
498 void EffectStackEdit::createSliderItem(const QString& name, int val , int min, int max)
499 {
500     QWidget* toFillin = new QWidget;
501     Constval *ctval = new Constval;
502     ctval->setupUi(toFillin);
503
504     ctval->horizontalSlider->setMinimum(min);
505     ctval->horizontalSlider->setMaximum(max);
506     ctval->spinBox->setMinimum(min);
507     ctval->spinBox->setMaximum(max);
508     ctval->horizontalSlider->setPageStep((int)(max - min) / 10);
509     ctval->horizontalSlider->setValue(val);
510     ctval->label->setText(name);
511     m_valueItems[name] = ctval;
512     m_uiItems.append(ctval);
513     connect(ctval->horizontalSlider, SIGNAL(valueChanged(int)) , this, SLOT(collectAllParameters()));
514     m_items.append(toFillin);
515     m_vbox->addWidget(toFillin);
516 }
517
518 void EffectStackEdit::slotSliderMoved(int)
519 {
520     collectAllParameters();
521 }
522
523 void EffectStackEdit::clearAllItems()
524 {
525     qDeleteAll(m_items);
526     qDeleteAll(m_uiItems);
527     m_uiItems.clear();
528     m_items.clear();
529     m_valueItems.clear();
530     QLayoutItem *item = m_vbox->itemAt(0);
531     while (item) {
532         m_vbox->removeItem(item);
533         delete item;
534         item = m_vbox->itemAt(0);
535     }
536 }