]> git.sesse.net Git - kdenlive/blob - src/effectstack/effectstackview2.cpp
Implement drag & drop of effects in effect stack
[kdenlive] / src / effectstack / effectstackview2.cpp
1 /***************************************************************************
2                           effecstackview.cpp2  -  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
19 #include "effectstackview2.h"
20 #include "effectslist.h"
21 #include "clipitem.h"
22 #include "mainwindow.h"
23 #include "docclipbase.h"
24 #include "projectlist.h"
25 #include "kthumb.h"
26 #include "monitoreditwidget.h"
27 #include "monitorscene.h"
28 #include "kdenlivesettings.h"
29
30 #include <KDebug>
31 #include <KLocale>
32 #include <KMessageBox>
33 #include <KStandardDirs>
34 #include <KFileDialog>
35 #include <KColorScheme>
36
37 #include <QMenu>
38 #include <QTextStream>
39 #include <QFile>
40 #include <QInputDialog>
41
42
43 EffectStackView2::EffectStackView2(Monitor *monitor, QWidget *parent) :
44         QWidget(parent),
45         m_clipref(NULL),
46         m_trackindex(-1),
47         m_draggedEffect(NULL),
48         m_groupIndex(0)
49 {
50     m_effectMetaInfo.trackMode = false;
51     m_effectMetaInfo.monitor = monitor;
52     m_effects = QList <CollapsibleEffect*>();
53
54     m_ui.setupUi(this);
55     setFont(KGlobalSettings::smallestReadableFont());
56     m_ui.checkAll->setToolTip(i18n("Enable/Disable all effects"));
57     m_ui.buttonShowComments->setIcon(KIcon("help-about"));
58     m_ui.buttonShowComments->setToolTip(i18n("Show additional information for the parameters"));
59
60
61     setEnabled(false);
62
63     QPalette p = palette();
64     KColorScheme scheme(p.currentColorGroup(), KColorScheme::View, KSharedConfig::openConfig(KdenliveSettings::colortheme()));
65     QColor dark_bg = scheme.shade(KColorScheme::DarkShade);
66     QColor selected_bg = scheme.decoration(KColorScheme::FocusColor).color();
67     QColor hover_bg = scheme.decoration(KColorScheme::HoverColor).color();
68     QColor light_bg = scheme.shade(KColorScheme::LightShade);
69     
70     QString stylesheet(QString("QProgressBar:horizontal {border: 1px solid %1;border-radius:0px;border-top-left-radius: 4px;border-bottom-left-radius: 4px;border-right: 0px;background:%4;padding: 0px;text-align:left center}\
71                                 QProgressBar:horizontal#dragOnly {background: %1} QProgressBar:horizontal:hover#dragOnly {background: %3} QProgressBar:horizontal:hover {border: 1px solid %3;border-right: 0px;}\
72                                 QProgressBar::chunk:horizontal {background: %1;} QProgressBar::chunk:horizontal:hover {background: %3;}\
73                                 QProgressBar:horizontal[inTimeline=\"true\"] { border: 1px solid %2;border-right: 0px;background: %4;padding: 0px;text-align:left center } QProgressBar::chunk:horizontal[inTimeline=\"true\"] {background: %2;}\
74                                 QAbstractSpinBox#dragBox {border: 1px solid %1;border-top-right-radius: 4px;border-bottom-right-radius: 4px;padding-right:0px;} QAbstractSpinBox::down-button#dragBox {width:0px;padding:0px;}\
75                                 QAbstractSpinBox::up-button#dragBox {width:0px;padding:0px;} QAbstractSpinBox[inTimeline=\"true\"]#dragBox { border: 1px solid %2;} QAbstractSpinBox:hover#dragBox {border: 1px solid %3;} ")
76                                 .arg(dark_bg.name()).arg(selected_bg.name()).arg(hover_bg.name()).arg(light_bg.name()));
77     setStyleSheet(stylesheet);
78 }
79
80 EffectStackView2::~EffectStackView2()
81 {
82 }
83
84
85 void EffectStackView2::slotRenderPos(int pos)
86 {
87     if (m_effects.isEmpty()) return;
88     if (!m_effectMetaInfo.trackMode && m_clipref) pos = pos - m_clipref->startPos().frames(KdenliveSettings::project_fps());
89
90     for (int i = 0; i< m_effects.count(); i++)
91         m_effects.at(i)->slotSyncEffectsPos(pos);
92 }
93
94 void EffectStackView2::setMenu(QMenu *menu)
95 {
96     //m_ui.buttonNew->setMenu(menu);
97 }
98
99 void EffectStackView2::slotClipItemSelected(ClipItem* c, int ix)
100 {
101     if (c && !c->isEnabled()) return;
102     if (c && c == m_clipref) {
103         
104     } else {
105         m_clipref = c;
106         if (c) {
107             QString cname = m_clipref->clipName();
108             if (cname.length() > 30) {
109                 m_ui.checkAll->setToolTip(i18n("Effects for %1").arg(cname));
110                 cname.truncate(27);
111                 m_ui.checkAll->setText(i18n("Effects for %1").arg(cname) + "...");
112             } else {
113                 m_ui.checkAll->setToolTip(QString());
114                 m_ui.checkAll->setText(i18n("Effects for %1").arg(cname));
115             }
116             ix = c->selectedEffectIndex();
117             QString size = c->baseClip()->getProperty("frame_size");
118             double factor = c->baseClip()->getProperty("aspect_ratio").toDouble();
119             m_effectMetaInfo.frameSize = QPoint((int)(size.section('x', 0, 0).toInt() * factor + 0.5), size.section('x', 1, 1).toInt());
120         } else {
121             ix = 0;
122         }
123     }
124     if (m_clipref == NULL) {
125         //TODO: clear list, reset paramdesc and info
126         //ItemInfo info;
127         //m_effectedit->transferParamDesc(QDomElement(), info);
128         clear();
129         return;
130     }
131     setEnabled(true);
132     m_effectMetaInfo.trackMode = false;
133     m_currentEffectList = m_clipref->effectList();
134     setupListView(ix);
135 }
136
137 void EffectStackView2::slotTrackItemSelected(int ix, const TrackInfo info)
138 {
139     m_clipref = NULL;
140     m_effectMetaInfo.trackMode = true;
141     m_currentEffectList = info.effectsList;
142     m_trackInfo = info;
143     setEnabled(true);
144     m_ui.checkAll->setToolTip(QString());
145     m_ui.checkAll->setText(i18n("Effects for track %1").arg(info.trackName.isEmpty() ? QString::number(ix) : info.trackName));
146     m_trackindex = ix;
147     setupListView(0);
148 }
149
150
151 void EffectStackView2::setupListView(int ix)
152 {
153     //TODO: clear list
154
155     blockSignals(true);
156     m_draggedEffect = NULL;
157     disconnect(m_effectMetaInfo.monitor, SIGNAL(renderPosition(int)), this, SLOT(slotRenderPos(int)));
158     m_effects.clear();
159     m_groupIndex = 0;
160     QWidget *view = m_ui.container->takeWidget();
161     if (view) {
162         delete view;
163     }
164     blockSignals(false);
165     view = new QWidget(m_ui.container);
166     m_ui.container->setWidget(view);
167
168     QVBoxLayout *vbox1 = new QVBoxLayout(view);
169     vbox1->setContentsMargins(0, 0, 0, 0);
170     vbox1->setSpacing(0);
171
172     for (int i = 0; i < m_currentEffectList.count(); i++) {
173         QDomElement d = m_currentEffectList.at(i).cloneNode().toElement();
174         if (d.isNull()) {
175             kDebug() << " . . . . WARNING, NULL EFFECT IN STACK!!!!!!!!!";
176             continue;
177         }
178         
179         CollapsibleEffect *group = NULL;
180         EffectInfo effectInfo;
181         effectInfo.fromString(d.attribute("kdenlive_info"));
182         if (effectInfo.groupIndex >= 0) {
183             for (int j = 0; j < vbox1->count(); j++) {
184                 CollapsibleEffect *gp = static_cast<CollapsibleEffect *>(vbox1->itemAt(j)->widget());
185                 if (gp->groupIndex() == effectInfo.groupIndex) {
186                     group = gp;
187                     break;
188                 }
189             }
190             
191             if (group == NULL) {
192                 group = new CollapsibleEffect(QDomElement(), QDomElement(), ItemInfo(), effectInfo.groupIndex, &m_effectMetaInfo, false, true, m_ui.container->widget());
193                 if (!effectInfo.groupName.isEmpty()) group->title->setText(effectInfo.groupName);
194                 connect(group, SIGNAL(moveEffect(int,int,CollapsibleEffect*)), this, SLOT(slotMoveEffect(int,int,CollapsibleEffect*)));
195                 connect(group, SIGNAL(unGroup(CollapsibleEffect*)), this , SLOT(slotUnGroup(CollapsibleEffect*)));
196                 vbox1->addWidget(group);
197             }
198             if (effectInfo.groupIndex >= m_groupIndex) m_groupIndex = effectInfo.groupIndex + 1;
199         }
200
201         /*QDomDocument doc;
202         doc.appendChild(doc.importNode(d, true));
203         kDebug() << "IMPORTED STK: " << doc.toString();*/
204         
205         ItemInfo info;
206         if (m_effectMetaInfo.trackMode) { 
207             info.track = m_trackInfo.type;
208             info.cropDuration = GenTime(m_trackInfo.duration, KdenliveSettings::project_fps());
209             info.cropStart = GenTime(0);
210             info.startPos = GenTime(-1);
211             info.track = 0;
212         }
213         else info = m_clipref->info();
214
215         CollapsibleEffect *currentEffect = new CollapsibleEffect(d, m_currentEffectList.at(i), info, i, &m_effectMetaInfo, i == m_currentEffectList.count() - 1, false, view);
216         m_effects.append(currentEffect);
217         if (group) {
218             group->addGroupEffect(currentEffect);
219         } else {
220             vbox1->addWidget(currentEffect);
221         }
222
223         // Check drag & drop
224         currentEffect->installEventFilter( this );
225
226         connect(currentEffect, SIGNAL(parameterChanged(const QDomElement, const QDomElement, int)), this , SLOT(slotUpdateEffectParams(const QDomElement, const QDomElement, int)));
227         connect(currentEffect, SIGNAL(startFilterJob(QString,QString,QString,QString,QString,QString)), this , SLOT(slotStartFilterJob(QString,QString,QString,QString,QString,QString)));
228         connect(currentEffect, SIGNAL(deleteEffect(const QDomElement)), this , SLOT(slotDeleteEffect(const QDomElement)));
229         connect(currentEffect, SIGNAL(reloadEffects()), this , SIGNAL(reloadEffects()));
230         connect(currentEffect, SIGNAL(resetEffect(int)), this , SLOT(slotResetEffect(int)));
231         connect(currentEffect, SIGNAL(changeEffectPosition(int,bool)), this , SLOT(slotMoveEffectUp(int , bool)));
232         connect(currentEffect, SIGNAL(effectStateChanged(bool, int)), this, SLOT(slotUpdateEffectState(bool, int)));
233         connect(currentEffect, SIGNAL(activateEffect(int)), this, SLOT(slotSetCurrentEffect(int)));
234         connect(currentEffect, SIGNAL(checkMonitorPosition(int)), this, SLOT(slotCheckMonitorPosition(int)));
235         connect(currentEffect, SIGNAL(seekTimeline(int)), this , SLOT(slotSeekTimeline(int)));
236         connect(currentEffect, SIGNAL(createGroup(int)), this , SLOT(slotCreateGroup(int)));
237         connect(currentEffect, SIGNAL(moveEffect(int,int,CollapsibleEffect*)), this , SLOT(slotMoveEffect(int,int,CollapsibleEffect*)));
238         
239         //ui.title->setPixmap(icon.pixmap(QSize(12, 12)));
240     }
241     vbox1->addStretch(10);
242     connect(m_effectMetaInfo.monitor, SIGNAL(renderPosition(int)), this, SLOT(slotRenderPos(int)));
243 }
244
245 bool EffectStackView2::eventFilter( QObject * o, QEvent * e ) 
246 {
247     // Check if user clicked in an effect's top bar to start dragging it
248     if (e->type() == QEvent::MouseButtonPress)  {
249         m_draggedEffect = qobject_cast<CollapsibleEffect*>(o);
250         if (m_draggedEffect) {
251             QMouseEvent *me = static_cast<QMouseEvent *>(e);
252             if (me->button() == Qt::LeftButton && (m_draggedEffect->frame->underMouse() || m_draggedEffect->title->underMouse()))
253                 m_clickPoint = me->globalPos();
254             else {
255                 m_clickPoint = QPoint();
256                 m_draggedEffect = NULL;
257             }
258             e->accept();
259             return false;
260         }
261     }  
262     if (e->type() == QEvent::MouseMove)  {
263         if (qobject_cast<CollapsibleEffect*>(o)) {
264             QMouseEvent *me = static_cast<QMouseEvent *>(e);
265             if (me->buttons() != Qt::LeftButton) {
266                 e->accept();
267                 return false;
268             }
269             else {
270                 e->ignore();
271                 return true;
272             }
273         }
274     }
275     return QWidget::eventFilter(o, e);
276 }
277
278 void EffectStackView2::mouseMoveEvent(QMouseEvent * event)
279 {
280     if (m_draggedEffect && (event->buttons() & Qt::LeftButton) && (m_clickPoint != QPoint()) && ((event->globalPos() - m_clickPoint).manhattanLength() >= QApplication::startDragDistance())) {
281         startDrag();
282     }
283 }
284
285 void EffectStackView2::mouseReleaseEvent(QMouseEvent * event)
286 {
287     m_draggedEffect = NULL;
288     QWidget::mouseReleaseEvent(event);
289 }
290
291 void EffectStackView2::startDrag()
292 {
293     QDrag *drag = new QDrag(this);
294     // The data to be transferred by the drag and drop operation is contained in a QMimeData object
295     QDomElement effect = m_draggedEffect->effect().cloneNode().toElement();
296     QPixmap pixmap = QPixmap::grabWidget(m_draggedEffect->title);
297     drag->setPixmap(pixmap);
298     QDomDocument doc;
299     doc.appendChild(doc.importNode(effect, true));
300     QMimeData *mime = new QMimeData;
301     QByteArray data;
302     data.append(doc.toString().toUtf8());
303     mime->setData("kdenlive/effectslist", data);
304
305     // Assign ownership of the QMimeData object to the QDrag object.
306     drag->setMimeData(mime);
307     // Start the drag and drop operation
308     drag->exec(Qt::CopyAction | Qt::MoveAction, Qt::CopyAction);
309 }
310
311
312 void EffectStackView2::slotUpdateEffectState(bool disable, int index)
313 {
314     if (m_effectMetaInfo.trackMode)
315         emit changeEffectState(NULL, m_trackindex, index, disable);
316     else
317         emit changeEffectState(m_clipref, -1, index, disable);
318 }
319
320
321 void EffectStackView2::raiseWindow(QWidget* dock)
322 {
323     if ((m_clipref || m_effectMetaInfo.trackMode) && dock)
324         dock->raise();
325 }
326
327
328 void EffectStackView2::slotSeekTimeline(int pos)
329 {
330     if (m_effectMetaInfo.trackMode) {
331         emit seekTimeline(pos);
332     } else if (m_clipref) {
333         emit seekTimeline(m_clipref->startPos().frames(KdenliveSettings::project_fps()) + pos);
334     }
335 }
336
337
338 /*void EffectStackView2::slotRegionChanged()
339 {
340     if (!m_trackMode) emit updateClipRegion(m_clipref, m_ui.effectlist->currentRow(), m_ui.region_url->text());
341 }*/
342
343 void EffectStackView2::slotCheckMonitorPosition(int renderPos)
344 {
345     if (m_effectMetaInfo.trackMode || (m_clipref && renderPos >= m_clipref->startPos().frames(KdenliveSettings::project_fps()) && renderPos <= m_clipref->endPos().frames(KdenliveSettings::project_fps()))) {
346         if (!m_effectMetaInfo.monitor->getEffectEdit()->getScene()->views().at(0)->isVisible())
347             m_effectMetaInfo.monitor->slotEffectScene(true);
348     } else {
349         m_effectMetaInfo.monitor->slotEffectScene(false);
350     }
351 }
352
353 int EffectStackView2::isTrackMode(bool *ok) const
354 {
355     *ok = m_effectMetaInfo.trackMode;
356     return m_trackindex;
357 }
358
359 void EffectStackView2::clear()
360 {
361     m_effects.clear();
362     QWidget *view = m_ui.container->takeWidget();
363     if (view) {
364         delete view;
365     }
366     m_ui.checkAll->setToolTip(QString());
367     m_ui.checkAll->setText(QString());
368     setEnabled(false);
369 }
370
371 void EffectStackView2::updateProjectFormat(MltVideoProfile profile, Timecode t)
372 {
373     m_effectMetaInfo.profile = profile;
374     m_effectMetaInfo.timecode = t;
375 }
376
377 void EffectStackView2::slotItemDel()
378 {
379
380 }
381
382 void EffectStackView2::updateTimecodeFormat()
383 {
384     for (int i = 0; i< m_effects.count(); i++)
385         m_effects.at(i)->updateTimecodeFormat();
386 }
387
388 CollapsibleEffect *EffectStackView2::getEffectByIndex(int ix)
389 {
390     for (int i = 0; i< m_effects.count(); i++) {
391         if (m_effects.at(i)->effectIndex() == ix) {
392             return m_effects.at(i);
393         }
394     }
395     return NULL;
396 }
397
398 void EffectStackView2::slotUpdateEffectParams(const QDomElement old, const QDomElement e, int ix)
399 {
400     if (m_effectMetaInfo.trackMode)
401         emit updateEffect(NULL, m_trackindex, old, e, ix);
402     else if (m_clipref) {
403         emit updateEffect(m_clipref, -1, old, e, ix);
404         // Make sure the changed effect is currently displayed
405         slotSetCurrentEffect(ix);
406     }
407 }
408
409 void EffectStackView2::slotSetCurrentEffect(int ix)
410 {
411     if (m_clipref && ix != m_clipref->selectedEffectIndex())
412         m_clipref->setSelectedEffect(ix);
413     for (int i = 0; i < m_effects.count(); i++) {
414         m_effects.at(i)->setActive(i == ix);
415     }
416 }
417
418 void EffectStackView2::slotDeleteEffect(const QDomElement effect)
419 {
420     if (m_effectMetaInfo.trackMode)
421         emit removeEffect(NULL, m_trackindex, effect);
422     else
423         emit removeEffect(m_clipref, -1, effect);
424 }
425
426 void EffectStackView2::slotMoveEffectUp(int index, bool up)
427 {
428     if (up && index <= 1) return;
429     if (!up && index >= m_currentEffectList.count()) return;
430     int endPos;
431     if (up) {
432         endPos = index - 1;
433     }
434     else {
435         endPos =  index + 1;
436     }
437     if (m_effectMetaInfo.trackMode) emit changeEffectPosition(NULL, m_trackindex, index, endPos);
438     else emit changeEffectPosition(m_clipref, -1, index, endPos);
439 }
440
441 void EffectStackView2::slotStartFilterJob(const QString&filterName, const QString&filterParams, const QString&finalFilterName, const QString&consumer, const QString&consumerParams, const QString&properties)
442 {
443     if (!m_clipref) return;
444     emit startFilterJob(m_clipref->info(), m_clipref->clipProducer(), filterName, filterParams, finalFilterName, consumer, consumerParams, properties);
445 }
446
447 void EffectStackView2::slotResetEffect(int ix)
448 {
449     QDomElement old = m_currentEffectList.itemFromIndex(ix);
450     QDomElement dom;
451     QString effectId = old.attribute("id");
452     QMap<QString, EffectsList*> effectLists;
453     effectLists["audio"] = &MainWindow::audioEffects;
454     effectLists["video"] = &MainWindow::videoEffects;
455     effectLists["custom"] = &MainWindow::customEffects;
456     foreach(const QString &type, effectLists.keys()) {
457         EffectsList *list = effectLists[type];
458         dom = list->getEffectByTag(QString(), effectId).cloneNode().toElement();
459         if (!dom.isNull()) break;
460     }
461     if (!dom.isNull()) {
462         dom.setAttribute("kdenlive_ix", old.attribute("kdenlive_ix"));
463         if (m_effectMetaInfo.trackMode) {
464             EffectsList::setParameter(dom, "in", QString::number(0));
465             EffectsList::setParameter(dom, "out", QString::number(m_trackInfo.duration));
466             ItemInfo info;
467             info.track = m_trackInfo.type;
468             info.cropDuration = GenTime(m_trackInfo.duration, KdenliveSettings::project_fps());
469             info.cropStart = GenTime(0);
470             info.startPos = GenTime(-1);
471             info.track = 0;
472             m_effects.at(ix)->updateWidget(info, ix, dom, &m_effectMetaInfo);
473             emit updateEffect(NULL, m_trackindex, old, dom, ix);
474         } else {
475             m_clipref->initEffect(dom);
476             m_effects.at(ix)->updateWidget(m_clipref->info(), ix, dom, &m_effectMetaInfo);
477             //m_ui.region_url->setUrl(KUrl(dom.attribute("region")));
478             emit updateEffect(m_clipref, -1, old, dom, ix);
479         }
480     }
481
482     /*emit showComments(m_ui.buttonShowComments->isChecked());
483     m_ui.labelComment->setHidden(!m_ui.buttonShowComments->isChecked() || !m_ui.labelComment->text().count());*/
484 }
485
486
487 void EffectStackView2::slotCreateGroup(int ix)
488 {
489     QDomElement oldeffect = m_currentEffectList.itemFromIndex(ix);
490     QDomElement neweffect = oldeffect.cloneNode().toElement();
491     QString groupName = QString::number(m_groupIndex);
492     EffectInfo effectinfo;
493     effectinfo.fromString(oldeffect.attribute("kdenlive_info"));
494     effectinfo.groupIndex = m_groupIndex;
495     neweffect.setAttribute("kdenlive_info", effectinfo.toString());
496
497     ItemInfo info;
498     if (m_effectMetaInfo.trackMode) { 
499         info.track = m_trackInfo.type;
500         info.cropDuration = GenTime(m_trackInfo.duration, KdenliveSettings::project_fps());
501         info.cropStart = GenTime(0);
502         info.startPos = GenTime(-1);
503         info.track = 0;
504         emit updateEffect(NULL, m_trackindex, oldeffect, neweffect, ix);
505     } else {
506         emit updateEffect(m_clipref, -1, oldeffect, neweffect, ix);
507     }
508     
509     QVBoxLayout *l = static_cast<QVBoxLayout *>(m_ui.container->widget()->layout());
510     int groupPos = 0;
511     
512     CollapsibleEffect *effectToMove = NULL;
513     for (int j = 0; j < l->count(); j++) {
514         CollapsibleEffect *gp = static_cast<CollapsibleEffect *>(l->itemAt(j)->widget());
515         if (gp->effectIndex() == ix) {
516             effectToMove = gp;
517             groupPos = l->indexOf(gp);
518             l->removeWidget(gp);
519             break;
520         }
521     }
522     
523     CollapsibleEffect *group = new CollapsibleEffect(QDomElement(), QDomElement(), ItemInfo(), m_groupIndex, &m_effectMetaInfo, false, true, m_ui.container->widget());
524     m_groupIndex++;
525     connect(group, SIGNAL(moveEffect(int,int,CollapsibleEffect*)), this , SLOT(slotMoveEffect(int,int,CollapsibleEffect*)));
526     connect(group, SIGNAL(unGroup(CollapsibleEffect*)), this , SLOT(slotUnGroup(CollapsibleEffect*)));
527     l->insertWidget(groupPos, group);
528     group->addGroupEffect(effectToMove);
529 }
530
531 void EffectStackView2::slotMoveEffect(int currentIndex, int newIndex, CollapsibleEffect* target)
532 {
533     QVBoxLayout *l = static_cast<QVBoxLayout *>(m_ui.container->widget()->layout());
534     CollapsibleEffect *effectToMove = getEffectByIndex(currentIndex);
535     if (effectToMove == NULL) return;
536
537     QDomElement oldeffect = effectToMove->effect();
538     QDomElement neweffect = oldeffect.cloneNode().toElement();
539     
540     EffectInfo effectinfo;
541     effectinfo.fromString(oldeffect.attribute("kdenlive_info"));
542     effectinfo.groupIndex = target->groupIndex();
543     neweffect.setAttribute("kdenlive_info", effectinfo.toString());
544
545     ItemInfo info;
546     if (m_effectMetaInfo.trackMode) { 
547         info.track = m_trackInfo.type;
548         info.cropDuration = GenTime(m_trackInfo.duration, KdenliveSettings::project_fps());
549         info.cropStart = GenTime(0);
550         info.startPos = GenTime(-1);
551         info.track = 0;
552         emit updateEffect(NULL, m_trackindex, oldeffect, neweffect, effectToMove->index());
553     } else {
554         emit updateEffect(m_clipref, -1, oldeffect, neweffect, effectToMove->index());
555     }
556     
557     if (currentIndex == newIndex) return;
558     // Update effect index with new position
559     if (m_effectMetaInfo.trackMode) {
560         emit changeEffectPosition(NULL, m_trackindex, currentIndex, newIndex);
561     }
562     else {
563         emit changeEffectPosition(m_clipref, -1, currentIndex, newIndex);
564     }
565 }
566
567 void EffectStackView2::slotUnGroup(CollapsibleEffect* group)
568 {
569     QVBoxLayout *l = static_cast<QVBoxLayout *>(m_ui.container->widget()->layout());
570     int ix = l->indexOf(group);
571     group->removeGroup(ix, l);
572     group->deleteLater();
573 }
574
575 #include "effectstackview2.moc"