]> git.sesse.net Git - kdenlive/blob - src/clipitem.cpp
Improve update of effect stack when resizing clip, start implementing merge of analys...
[kdenlive] / src / clipitem.cpp
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #include "clipitem.h"
22 #include "customtrackview.h"
23 #include "customtrackscene.h"
24 #include "renderer.h"
25 #include "docclipbase.h"
26 #include "transition.h"
27 #include "kdenlivesettings.h"
28 #include "kthumb.h"
29 #include "profilesdialog.h"
30 #ifdef USE_QJSON
31 #include "rotoscoping/rotowidget.h"
32 #endif
33
34 #include <KDebug>
35 #include <KIcon>
36
37 #include <QPainter>
38 #include <QTimer>
39 #include <QStyleOptionGraphicsItem>
40 #include <QGraphicsScene>
41 #include <QMimeData>
42
43 static int FRAME_SIZE;
44
45 ClipItem::ClipItem(DocClipBase *clip, ItemInfo info, double fps, double speed, int strobe, int frame_width, bool generateThumbs) :
46         AbstractClipItem(info, QRectF(), fps),
47         m_clip(clip),
48         m_startFade(0),
49         m_endFade(0),
50         m_audioOnly(false),
51         m_videoOnly(false),
52         m_startPix(QPixmap()),
53         m_endPix(QPixmap()),
54         m_hasThumbs(false),
55         m_selectedEffect(-1),
56         m_timeLine(0),
57         m_startThumbRequested(false),
58         m_endThumbRequested(false),
59         //m_hover(false),
60         m_speed(speed),
61         m_strobe(strobe),
62         m_framePixelWidth(0),
63         m_limitedKeyFrames(false)
64 {
65     setZValue(2);
66     m_effectList = EffectsList(true);
67     FRAME_SIZE = frame_width;
68     setRect(0, 0, (info.endPos - info.startPos).frames(fps) - 0.02, (double) itemHeight());
69     setPos(info.startPos.frames(fps), (double)(info.track * KdenliveSettings::trackheight()) + 1 + itemOffset());
70
71     // set speed independant info
72     if (m_speed <= 0 && m_speed > -1)
73         m_speed = -1.0;
74     m_speedIndependantInfo = m_info;
75     m_speedIndependantInfo.cropStart = GenTime((int)(m_info.cropStart.frames(m_fps) * qAbs(m_speed)), m_fps);
76     m_speedIndependantInfo.cropDuration = GenTime((int)(m_info.cropDuration.frames(m_fps) * qAbs(m_speed)), m_fps);
77
78     m_videoPix = KIcon("kdenlive-show-video").pixmap(QSize(16, 16));
79     m_audioPix = KIcon("kdenlive-show-audio").pixmap(QSize(16, 16));
80
81     if (m_speed == 1.0)
82         m_clipName = m_clip->name();
83     else
84         m_clipName = m_clip->name() + " - " + QString::number(m_speed * 100, 'f', 0) + '%';
85
86     m_producer = m_clip->getId();
87     m_clipType = m_clip->clipType();
88     //m_cropStart = info.cropStart;
89     m_maxDuration = m_clip->maxDuration();
90     setAcceptDrops(true);
91     m_audioThumbReady = m_clip->audioThumbCreated();
92     //setAcceptsHoverEvents(true);
93     connect(this , SIGNAL(prepareAudioThumb(double, int, int, int)) , this, SLOT(slotPrepareAudioThumb(double, int, int, int)));
94
95     if (m_clipType == VIDEO || m_clipType == AV || m_clipType == SLIDESHOW || m_clipType == PLAYLIST) {
96         m_baseColor = QColor(141, 166, 215);
97         if (!m_clip->isPlaceHolder()) {
98             m_hasThumbs = true;
99             m_startThumbTimer.setSingleShot(true);
100             connect(&m_startThumbTimer, SIGNAL(timeout()), this, SLOT(slotGetStartThumb()));
101             m_endThumbTimer.setSingleShot(true);
102             connect(&m_endThumbTimer, SIGNAL(timeout()), this, SLOT(slotGetEndThumb()));
103             connect(m_clip->thumbProducer(), SIGNAL(thumbReady(int, QImage)), this, SLOT(slotThumbReady(int, QImage)));
104             connect(m_clip, SIGNAL(gotAudioData()), this, SLOT(slotGotAudioData()));
105             if (generateThumbs) QTimer::singleShot(200, this, SLOT(slotFetchThumbs()));
106         }
107
108     } else if (m_clipType == COLOR) {
109         QString colour = m_clip->getProperty("colour");
110         colour = colour.replace(0, 2, "#");
111         m_baseColor = QColor(colour.left(7));
112     } else if (m_clipType == IMAGE || m_clipType == TEXT) {
113         m_baseColor = QColor(141, 166, 215);
114         if (m_clipType == TEXT) {
115             connect(m_clip->thumbProducer(), SIGNAL(thumbReady(int, QImage)), this, SLOT(slotThumbReady(int, QImage)));
116         }
117         //m_startPix = KThumb::getImage(KUrl(clip->getProperty("resource")), (int)(KdenliveSettings::trackheight() * KdenliveSettings::project_display_ratio()), KdenliveSettings::trackheight());
118     } else if (m_clipType == AUDIO) {
119         m_baseColor = QColor(141, 215, 166);
120         connect(m_clip, SIGNAL(gotAudioData()), this, SLOT(slotGotAudioData()));
121     }
122 }
123
124
125 ClipItem::~ClipItem()
126 {
127     blockSignals(true);
128     m_endThumbTimer.stop();
129     m_startThumbTimer.stop();
130     if (scene()) scene()->removeItem(this);
131     if (m_clipType == VIDEO || m_clipType == AV || m_clipType == SLIDESHOW || m_clipType == PLAYLIST) {
132         //disconnect(m_clip->thumbProducer(), SIGNAL(thumbReady(int, QImage)), this, SLOT(slotThumbReady(int, QImage)));
133         //disconnect(m_clip, SIGNAL(gotAudioData()), this, SLOT(slotGotAudioData()));
134     }
135     delete m_timeLine;
136 }
137
138 ClipItem *ClipItem::clone(ItemInfo info) const
139 {
140     ClipItem *duplicate = new ClipItem(m_clip, info, m_fps, m_speed, m_strobe, FRAME_SIZE);
141     if (m_clipType == IMAGE || m_clipType == TEXT) duplicate->slotSetStartThumb(m_startPix);
142     else if (m_clipType != COLOR) {
143         if (info.cropStart == m_info.cropStart) duplicate->slotSetStartThumb(m_startPix);
144         if (info.cropStart + (info.endPos - info.startPos) == m_info.cropStart + m_info.cropDuration) {
145             duplicate->slotSetEndThumb(m_endPix);
146         }
147     }
148     //kDebug() << "// CLoning clip: " << (info.cropStart + (info.endPos - info.startPos)).frames(m_fps) << ", CURRENT end: " << (cropStart() + duration()).frames(m_fps);
149     duplicate->setEffectList(m_effectList);
150     duplicate->setVideoOnly(m_videoOnly);
151     duplicate->setAudioOnly(m_audioOnly);
152     duplicate->setFades(fadeIn(), fadeOut());
153     //duplicate->setSpeed(m_speed);
154     return duplicate;
155 }
156
157 void ClipItem::setEffectList(const EffectsList effectList)
158 {
159     m_effectList.clone(effectList);
160     m_effectNames = m_effectList.effectNames().join(" / ");
161     if (!m_effectList.isEmpty()) {
162         for (int i = 0; i < m_effectList.count(); i++) {
163             QDomElement effect = m_effectList.at(i);
164             QString effectId = effect.attribute("id");
165             // check if it is a fade effect
166             QDomNodeList params = effect.elementsByTagName("parameter");
167             int fade = 0;
168             for (int j = 0; j < params.count(); j++) {
169                 QDomElement e = params.item(j).toElement();
170                 if (!e.isNull()) {
171                     if (effectId == "fadein") {
172                         if (m_effectList.hasEffect(QString(), "fade_from_black") == -1) {
173                             if (e.attribute("name") == "out") fade += e.attribute("value").toInt();
174                             else if (e.attribute("name") == "in") fade -= e.attribute("value").toInt();
175                         } else {
176                             QDomElement fadein = m_effectList.getEffectByTag(QString(), "fade_from_black");
177                             if (fadein.attribute("name") == "out") fade += fadein.attribute("value").toInt();
178                             else if (fadein.attribute("name") == "in") fade -= fadein.attribute("value").toInt();
179                         }
180                     } else if (effectId == "fade_from_black") {
181                         if (m_effectList.hasEffect(QString(), "fadein") == -1) {
182                             if (e.attribute("name") == "out") fade += e.attribute("value").toInt();
183                             else if (e.attribute("name") == "in") fade -= e.attribute("value").toInt();
184                         } else {
185                             QDomElement fadein = m_effectList.getEffectByTag(QString(), "fadein");
186                             if (fadein.attribute("name") == "out") fade += fadein.attribute("value").toInt();
187                             else if (fadein.attribute("name") == "in") fade -= fadein.attribute("value").toInt();
188                         }
189                     } else if (effectId == "fadeout") {
190                         if (m_effectList.hasEffect(QString(), "fade_to_black") == -1) {
191                             if (e.attribute("name") == "out") fade += e.attribute("value").toInt();
192                             else if (e.attribute("name") == "in") fade -= e.attribute("value").toInt();
193                         } else {
194                             QDomElement fadeout = m_effectList.getEffectByTag(QString(), "fade_to_black");
195                             if (fadeout.attribute("name") == "out") fade += fadeout.attribute("value").toInt();
196                             else if (fadeout.attribute("name") == "in") fade -= fadeout.attribute("value").toInt();
197                         }
198                     } else if (effectId == "fade_to_black") {
199                         if (m_effectList.hasEffect(QString(), "fadeout") == -1) {
200                             if (e.attribute("name") == "out") fade += e.attribute("value").toInt();
201                             else if (e.attribute("name") == "in") fade -= e.attribute("value").toInt();
202                         } else {
203                             QDomElement fadeout = m_effectList.getEffectByTag(QString(), "fadeout");
204                             if (fadeout.attribute("name") == "out") fade += fadeout.attribute("value").toInt();
205                             else if (fadeout.attribute("name") == "in") fade -= fadeout.attribute("value").toInt();
206                         }
207                     }
208                 }
209             }
210             if (fade > 0)
211                 m_startFade = fade;
212             else if (fade < 0)
213                 m_endFade = -fade;
214         }
215         setSelectedEffect(0);
216     }
217 }
218
219 const EffectsList ClipItem::effectList() const
220 {
221     return m_effectList;
222 }
223
224 int ClipItem::selectedEffectIndex() const
225 {
226     return m_selectedEffect;
227 }
228
229 void ClipItem::initEffect(QDomElement effect, int diff, int offset)
230 {
231     // the kdenlive_ix int is used to identify an effect in mlt's playlist, should
232     // not be changed
233
234     if (effect.attribute("id") == "freeze" && diff > 0) {
235         EffectsList::setParameter(effect, "frame", QString::number(diff));
236     }
237
238     // Init parameter value & keyframes if required
239     QDomNodeList params = effect.elementsByTagName("parameter");
240     for (int i = 0; i < params.count(); i++) {
241         QDomElement e = params.item(i).toElement();
242
243         if (e.isNull())
244             continue;
245
246         // Check if this effect has a variable parameter
247         if (e.attribute("default").contains('%')) {
248             double evaluatedValue = ProfilesDialog::getStringEval(projectScene()->profile(), e.attribute("default"));
249             e.setAttribute("default", evaluatedValue);
250             if (e.hasAttribute("value") && e.attribute("value").startsWith('%')) {
251                 e.setAttribute("value", evaluatedValue);
252             }
253         }
254
255         if (effect.attribute("id") == "crop") {
256             // default use_profile to 1 for clips with proxies to avoid problems when rendering
257             if (e.attribute("name") == "use_profile" && !(m_clip->getProperty("proxy").isEmpty() || m_clip->getProperty("proxy") == "-"))
258                 e.setAttribute("value", "1");
259         }
260
261         if (e.attribute("type") == "keyframe" || e.attribute("type") == "simplekeyframe") {
262             if (e.attribute("keyframes").isEmpty()) {
263                 // Effect has a keyframe type parameter, we need to set the values
264                 e.setAttribute("keyframes", QString::number(cropStart().frames(m_fps)) + ':' + e.attribute("default"));
265             }
266             else if (offset != 0) {
267                 // adjust keyframes to this clip
268                 QString adjusted = adjustKeyframes(e.attribute("keyframes"), offset - cropStart().frames(m_fps));
269                 e.setAttribute("keyframes", adjusted);
270             }
271         }
272
273         if (e.attribute("type") == "geometry" && !e.hasAttribute("fixed")) {
274             // Effects with a geometry parameter need to sync in / out with parent clip
275             effect.setAttribute("in", QString::number(cropStart().frames(m_fps)));
276             effect.setAttribute("out", QString::number((cropStart() + cropDuration()).frames(m_fps) - 1));
277             effect.setAttribute("_sync_in_out", "1");
278         }
279     }
280     if (effect.attribute("tag") == "volume" || effect.attribute("tag") == "brightness") {
281         if (effect.attribute("id") == "fadeout" || effect.attribute("id") == "fade_to_black") {
282             int end = (cropDuration() + cropStart()).frames(m_fps) - 1;
283             int start = end;
284             if (effect.attribute("id") == "fadeout") {
285                 if (m_effectList.hasEffect(QString(), "fade_to_black") == -1) {
286                     int effectDuration = EffectsList::parameter(effect, "out").toInt() - EffectsList::parameter(effect, "in").toInt();
287                     if (effectDuration > cropDuration().frames(m_fps)) {
288                         effectDuration = cropDuration().frames(m_fps) / 2;
289                     }
290                     start -= effectDuration;
291                 } else {
292                     QDomElement fadeout = m_effectList.getEffectByTag(QString(), "fade_to_black");
293                     start -= EffectsList::parameter(fadeout, "out").toInt() - EffectsList::parameter(fadeout, "in").toInt();
294                 }
295             } else if (effect.attribute("id") == "fade_to_black") {
296                 if (m_effectList.hasEffect(QString(), "fadeout") == -1) {
297                     int effectDuration = EffectsList::parameter(effect, "out").toInt() - EffectsList::parameter(effect, "in").toInt();
298                     if (effectDuration > cropDuration().frames(m_fps)) {
299                         effectDuration = cropDuration().frames(m_fps) / 2;
300                     }
301                     start -= effectDuration;
302                 } else {
303                     QDomElement fadeout = m_effectList.getEffectByTag(QString(), "fadeout");
304                     start -= EffectsList::parameter(fadeout, "out").toInt() - EffectsList::parameter(fadeout, "in").toInt();
305                 }
306             }
307             EffectsList::setParameter(effect, "in", QString::number(start));
308             EffectsList::setParameter(effect, "out", QString::number(end));
309         } else if (effect.attribute("id") == "fadein" || effect.attribute("id") == "fade_from_black") {
310             int start = cropStart().frames(m_fps);
311             int end = start;
312             if (effect.attribute("id") == "fadein") {
313                 if (m_effectList.hasEffect(QString(), "fade_from_black") == -1) {
314                     int effectDuration = EffectsList::parameter(effect, "out").toInt();
315                     if (offset != 0) effectDuration -= offset;
316                     if (effectDuration > cropDuration().frames(m_fps)) {
317                         effectDuration = cropDuration().frames(m_fps) / 2;
318                     }
319                     end += effectDuration;
320                 } else
321                     end += EffectsList::parameter(m_effectList.getEffectByTag(QString(), "fade_from_black"), "out").toInt() - offset;
322             } else if (effect.attribute("id") == "fade_from_black") {
323                 if (m_effectList.hasEffect(QString(), "fadein") == -1) {
324                     int effectDuration = EffectsList::parameter(effect, "out").toInt();
325                     if (offset != 0) effectDuration -= offset;
326                     if (effectDuration > cropDuration().frames(m_fps)) {
327                         effectDuration = cropDuration().frames(m_fps) / 2;
328                     }
329                     end += effectDuration;
330                 } else
331                     end += EffectsList::parameter(m_effectList.getEffectByTag(QString(), "fadein"), "out").toInt() - offset;
332             }
333             EffectsList::setParameter(effect, "in", QString::number(start));
334             EffectsList::setParameter(effect, "out", QString::number(end));
335         }
336     }
337 }
338
339 const QString ClipItem::adjustKeyframes(QString keyframes, int offset)
340 {
341     QStringList result;
342     // Simple keyframes
343     const QStringList list = keyframes.split(';', QString::SkipEmptyParts);
344     foreach(const QString &keyframe, list) {
345         int pos = keyframe.section(':', 0, 0).toInt() - offset;
346         QString newKey = QString::number(pos) + ":" + keyframe.section(':', 1);
347         result.append(newKey);
348     }
349     return result.join(";");
350 }
351
352 bool ClipItem::checkKeyFrames()
353 {
354     bool clipEffectsModified = false;
355     QLocale locale;
356     // go through all effects this clip has
357     for (int ix = 0; ix < m_effectList.count(); ++ix) {
358         QStringList keyframeParams = keyframes(ix);
359         QStringList newKeyFrameParams;
360         bool effModified = false;
361
362         // go through all params which have keyframes
363         foreach(const QString &kfr, keyframeParams) {
364             const QStringList keyframes = kfr.split(';', QString::SkipEmptyParts);
365             QStringList newKeyFrames;
366             bool cutKeyFrame = false;
367             bool modified = false;
368             int lastPos = -1;
369             double lastValue = -1;
370             int start = cropStart().frames(m_fps);
371             int end = (cropStart() + cropDuration()).frames(m_fps);
372
373             // go through all keyframes for one param
374             foreach(const QString &str, keyframes) {
375                 int pos = str.section(':', 0, 0).toInt();
376                 double val = locale.toDouble(str.section(':', 1, 1));
377                 if (pos - start < 0) {
378                     // a keyframe is defined before the start of the clip
379                     cutKeyFrame = true;
380                 } else if (cutKeyFrame) {
381                     // create new keyframe at clip start, calculate interpolated value
382                     if (pos > start) {
383                         int diff = pos - lastPos;
384                         double ratio = (double)(start - lastPos) / diff;
385                         double newValue = lastValue + (val - lastValue) * ratio;
386                         newKeyFrames.append(QString::number(start) + ':' + locale.toString(newValue));
387                         modified = true;
388                     }
389                     cutKeyFrame = false;
390                 }
391                 if (!cutKeyFrame) {
392                     if (pos > end) {
393                         // create new keyframe at clip end, calculate interpolated value
394                         int diff = pos - lastPos;
395                         if (diff != 0) {
396                             double ratio = (double)(end - lastPos) / diff;
397                             double newValue = lastValue + (val - lastValue) * ratio;
398                             newKeyFrames.append(QString::number(end) + ':' + locale.toString(newValue));
399                             modified = true;
400                         }
401                         break;
402                     } else {
403                         newKeyFrames.append(QString::number(pos) + ':' + locale.toString(val));
404                     }
405                 }
406                 lastPos = pos;
407                 lastValue = val;
408             }
409
410             newKeyFrameParams.append(newKeyFrames.join(";"));
411             if (modified)
412                 effModified = true;
413         }
414
415         if (effModified) {
416             // update KeyFrames
417             setKeyframes(ix, newKeyFrameParams);
418             clipEffectsModified = true;
419         }
420     }
421     return clipEffectsModified;
422 }
423
424 void ClipItem::setKeyframes(const int ix, const QStringList keyframes)
425 {
426     QDomElement effect = m_effectList.at(ix);
427     if (effect.attribute("disable") == "1") return;
428     QLocale locale;
429     QDomNodeList params = effect.elementsByTagName("parameter");
430     int keyframeParams = 0;
431     for (int i = 0; i < params.count(); i++) {
432         QDomElement e = params.item(i).toElement();
433         if (!e.isNull() && (e.attribute("type") == "keyframe" || e.attribute("type") == "simplekeyframe") && e.attribute("intimeline") == "1") {
434             e.setAttribute("keyframes", keyframes.at(keyframeParams));
435             if (ix == m_selectedEffect && keyframeParams == 0) {
436                 m_keyframes.clear();
437                 m_visibleParam = i;
438                 double max = locale.toDouble(e.attribute("max"));
439                 double min = locale.toDouble(e.attribute("min"));
440                 m_keyframeFactor = 100.0 / (max - min);
441                 m_keyframeOffset = min;
442                 m_keyframeDefault = locale.toDouble(e.attribute("default"));
443                 m_selectedKeyframe = 0;
444                 // parse keyframes
445                 const QStringList keyframes = e.attribute("keyframes").split(';', QString::SkipEmptyParts);
446                 foreach(const QString &str, keyframes) {
447                     int pos = str.section(':', 0, 0).toInt();
448                     double val = locale.toDouble(str.section(':', 1, 1));
449                     m_keyframes[pos] = val;
450                 }
451                 if (m_keyframes.find(m_editedKeyframe) == m_keyframes.end()) m_editedKeyframe = -1;
452                 if (m_keyframes.find(m_editedKeyframe) == m_keyframes.end()) m_editedKeyframe = -1;
453                 update();
454             }
455             ++keyframeParams;
456         }
457     }
458 }
459
460
461 void ClipItem::setSelectedEffect(const int ix)
462 {
463     m_selectedEffect = ix;
464     QLocale locale;
465     QDomElement effect = effectAtIndex(m_selectedEffect);
466     if (!effect.isNull() && effect.attribute("disable") != "1") {
467         QDomNodeList params = effect.elementsByTagName("parameter");
468         for (int i = 0; i < params.count(); i++) {
469             QDomElement e = params.item(i).toElement();
470             if (!e.isNull() && (e.attribute("type") == "keyframe" || e.attribute("type") == "simplekeyframe") && e.attribute("intimeline") == "1") {
471                 m_keyframes.clear();
472                 m_limitedKeyFrames = e.attribute("type") == "keyframe";
473                 m_visibleParam = i;
474                 double max = locale.toDouble(e.attribute("max"));
475                 double min = locale.toDouble(e.attribute("min"));
476                 m_keyframeFactor = 100.0 / (max - min);
477                 m_keyframeOffset = min;
478                 m_keyframeDefault = locale.toDouble(e.attribute("default"));
479                 m_selectedKeyframe = 0;
480
481                 // parse keyframes
482                 const QStringList keyframes = e.attribute("keyframes").split(';', QString::SkipEmptyParts);
483                 foreach(const QString &str, keyframes) {
484                     int pos = str.section(':', 0, 0).toInt();
485                     double val = locale.toDouble(str.section(':', 1, 1));
486                     m_keyframes[pos] = val;
487                 }
488                 if (m_keyframes.find(m_editedKeyframe) == m_keyframes.end())
489                     m_editedKeyframe = -1;
490                 update();
491                 return;
492             }
493         }
494     }
495
496     if (!m_keyframes.isEmpty()) {
497         m_keyframes.clear();
498         update();
499     }
500 }
501
502 QStringList ClipItem::keyframes(const int index)
503 {
504     QStringList result;
505     QDomElement effect = m_effectList.at(index);
506     QDomNodeList params = effect.elementsByTagName("parameter");
507
508     for (int i = 0; i < params.count(); i++) {
509         QDomElement e = params.item(i).toElement();
510         if (!e.isNull() && (e.attribute("type") == "keyframe" || e.attribute("type") == "simplekeyframe"))
511             result.append(e.attribute("keyframes"));
512     }
513     return result;
514 }
515
516 void ClipItem::updateKeyframeEffect()
517 {
518     // regenerate xml parameter from the clip keyframes
519     QDomElement effect = getEffectAtIndex(m_selectedEffect);
520     if (effect.attribute("disable") == "1") return;
521     QDomNodeList params = effect.elementsByTagName("parameter");
522     QDomElement e = params.item(m_visibleParam).toElement();
523
524     if (!e.isNull()) {
525         QString keyframes;
526         if (m_keyframes.count() > 0) {
527             QMap<int, int>::const_iterator i = m_keyframes.constBegin();
528             while (i != m_keyframes.constEnd()) {
529                 keyframes.append(QString::number(i.key()) + ':' + QString::number(i.value()) + ';');
530                 ++i;
531             }
532         }
533         // Effect has a keyframe type parameter, we need to set the values
534         e.setAttribute("keyframes", keyframes);
535     }
536 }
537
538 QDomElement ClipItem::selectedEffect()
539 {
540     if (m_selectedEffect == -1 || m_effectList.isEmpty()) return QDomElement();
541     return effectAtIndex(m_selectedEffect);
542 }
543
544 void ClipItem::resetThumbs(bool clearExistingThumbs)
545 {
546     if (clearExistingThumbs) {
547         m_startPix = QPixmap();
548         m_endPix = QPixmap();
549         m_audioThumbCachePic.clear();
550     }
551     slotFetchThumbs();
552 }
553
554
555 void ClipItem::refreshClip(bool checkDuration, bool forceResetThumbs)
556 {
557     if (checkDuration && (m_maxDuration != m_clip->maxDuration())) {
558         m_maxDuration = m_clip->maxDuration();
559         if (m_clipType != IMAGE && m_clipType != TEXT && m_clipType != COLOR) {
560             if (m_maxDuration != GenTime() && m_info.cropStart + m_info.cropDuration > m_maxDuration) {
561                 // Clip duration changed, make sure to stay in correct range
562                 if (m_info.cropStart > m_maxDuration) {
563                     m_info.cropStart = GenTime();
564                     m_info.cropDuration = qMin(m_info.cropDuration, m_maxDuration);
565                 } else {
566                     m_info.cropDuration = m_maxDuration;
567                 }
568                 updateRectGeometry();
569             }
570         }
571     }
572     if (m_clipType == COLOR) {
573         QString colour = m_clip->getProperty("colour");
574         colour = colour.replace(0, 2, "#");
575         m_baseColor = QColor(colour.left(7));
576         update();
577     } else resetThumbs(forceResetThumbs);
578 }
579
580 void ClipItem::slotFetchThumbs()
581 {
582     if (scene() == NULL || m_clipType == AUDIO || m_clipType == COLOR) return;
583     if (m_clipType == IMAGE) {
584         if (m_startPix.isNull()) {
585             m_startPix = KThumb::getImage(KUrl(m_clip->getProperty("resource")), (int)(KdenliveSettings::trackheight() * KdenliveSettings::project_display_ratio()), KdenliveSettings::trackheight());
586             update();
587         }
588         return;
589     }
590
591     if (m_clipType == TEXT) {
592         if (m_startPix.isNull()) slotGetStartThumb();
593         return;
594     }
595
596     QList <int> frames;
597     if (m_startPix.isNull()) {
598         m_startThumbRequested = true;
599         frames.append((int)m_speedIndependantInfo.cropStart.frames(m_fps));
600     }
601
602     if (m_endPix.isNull()) {
603         m_endThumbRequested = true;
604         frames.append((int)(m_speedIndependantInfo.cropStart + m_speedIndependantInfo.cropDuration).frames(m_fps) - 1);
605     }
606
607     if (!frames.isEmpty()) m_clip->slotExtractImage(frames);
608 }
609
610 void ClipItem::stopThumbs()
611 {
612     // Clip is about to be deleted, make sure we don't request thumbnails
613     disconnect(&m_startThumbTimer, SIGNAL(timeout()), this, SLOT(slotGetStartThumb()));
614     disconnect(&m_endThumbTimer, SIGNAL(timeout()), this, SLOT(slotGetEndThumb()));
615 }
616
617 void ClipItem::slotGetStartThumb()
618 {
619     m_startThumbRequested = true;
620     m_clip->slotExtractImage(QList<int>() << (int)m_speedIndependantInfo.cropStart.frames(m_fps));
621 }
622
623 void ClipItem::slotGetEndThumb()
624 {
625     m_endThumbRequested = true;
626     m_clip->slotExtractImage(QList<int>() << (int)(m_speedIndependantInfo.cropStart + m_speedIndependantInfo.cropDuration).frames(m_fps) - 1);
627 }
628
629
630 void ClipItem::slotSetStartThumb(QImage img)
631 {
632     if (!img.isNull() && img.format() == QImage::Format_ARGB32) {
633         QPixmap pix = QPixmap::fromImage(img);
634         m_startPix = pix;
635         QRectF r = sceneBoundingRect();
636         r.setRight(pix.width() + 2);
637         update(r);
638     }
639 }
640
641 void ClipItem::slotSetEndThumb(QImage img)
642 {
643     if (!img.isNull() && img.format() == QImage::Format_ARGB32) {
644         QPixmap pix = QPixmap::fromImage(img);
645         m_endPix = pix;
646         QRectF r = sceneBoundingRect();
647         r.setLeft(r.right() - pix.width() - 2);
648         update(r);
649     }
650 }
651
652 void ClipItem::slotThumbReady(int frame, QImage img)
653 {
654     if (scene() == NULL) return;
655     QRectF r = boundingRect();
656     QPixmap pix = QPixmap::fromImage(img);
657     double width = pix.width() / projectScene()->scale().x();
658     if (m_startThumbRequested && frame == m_speedIndependantInfo.cropStart.frames(m_fps)) {
659         m_startPix = pix;
660         m_startThumbRequested = false;
661         update(r.left(), r.top(), width, pix.height());
662         if (m_clipType == IMAGE || m_clipType == TEXT) {
663             update(r.right() - width, r.top(), width, pix.height());
664         }
665     } else if (m_endThumbRequested && frame == (m_speedIndependantInfo.cropStart + m_speedIndependantInfo.cropDuration).frames(m_fps) - 1) {
666         m_endPix = pix;
667         m_endThumbRequested = false;
668         update(r.right() - width, r.top(), width, pix.height());
669     }
670 }
671
672 void ClipItem::slotSetStartThumb(const QPixmap pix)
673 {
674     m_startPix = pix;
675 }
676
677 void ClipItem::slotSetEndThumb(const QPixmap pix)
678 {
679     m_endPix = pix;
680 }
681
682 QPixmap ClipItem::startThumb() const
683 {
684     return m_startPix;
685 }
686
687 QPixmap ClipItem::endThumb() const
688 {
689     return m_endPix;
690 }
691
692 void ClipItem::slotGotAudioData()
693 {
694     m_audioThumbReady = true;
695     if (m_clipType == AV && !isAudioOnly()) {
696         QRectF r = boundingRect();
697         r.setTop(r.top() + r.height() / 2 - 1);
698         update(r);
699     } else update();
700 }
701
702 int ClipItem::type() const
703 {
704     return AVWIDGET;
705 }
706
707 DocClipBase *ClipItem::baseClip() const
708 {
709     return m_clip;
710 }
711
712 QDomElement ClipItem::xml() const
713 {
714     return itemXml();
715 }
716
717 QDomElement ClipItem::itemXml() const
718 {
719     QDomElement xml = m_clip->toXML();
720     if (m_speed != 1.0) xml.setAttribute("speed", m_speed);
721     if (m_strobe > 1) xml.setAttribute("strobe", m_strobe);
722     if (m_audioOnly) xml.setAttribute("audio_only", 1);
723     else if (m_videoOnly) xml.setAttribute("video_only", 1);
724     return xml;
725 }
726
727 int ClipItem::clipType() const
728 {
729     return m_clipType;
730 }
731
732 QString ClipItem::clipName() const
733 {
734     return m_clipName;
735 }
736
737 void ClipItem::setClipName(const QString &name)
738 {
739     m_clipName = name;
740 }
741
742 const QString ClipItem::clipProducer() const
743 {
744     return m_producer;
745 }
746
747 void ClipItem::flashClip()
748 {
749     if (m_timeLine == 0) {
750         m_timeLine = new QTimeLine(750, this);
751         m_timeLine->setUpdateInterval(80);
752         m_timeLine->setCurveShape(QTimeLine::EaseInOutCurve);
753         m_timeLine->setFrameRange(0, 100);
754         connect(m_timeLine, SIGNAL(valueChanged(qreal)), this, SLOT(animate(qreal)));
755     }
756     //m_timeLine->start();
757 }
758
759 void ClipItem::animate(qreal /*value*/)
760 {
761     QRectF r = boundingRect();
762     r.setHeight(20);
763     update(r);
764 }
765
766 // virtual
767 void ClipItem::paint(QPainter *painter,
768                      const QStyleOptionGraphicsItem *option,
769                      QWidget *)
770 {
771     QPalette palette = scene()->palette();
772     QColor paintColor;
773     QColor textColor;
774     QColor textBgColor;
775     QPen framePen;
776     if (parentItem()) paintColor = QColor(255, 248, 149);
777     else paintColor = m_baseColor;
778     if (isSelected() || (parentItem() && parentItem()->isSelected())) {
779         textColor = palette.highlightedText().color();
780         textBgColor = palette.highlight().color();
781         paintColor = paintColor.darker();
782         framePen.setColor(textBgColor);
783     }
784     else {
785         textColor = palette.text().color();
786         textBgColor = palette.window().color();
787         textBgColor.setAlpha(200);
788         framePen.setColor(paintColor.darker());
789     }
790     const QRectF exposed = option->exposedRect;
791     const QRectF mappedExposed = painter->worldTransform().mapRect(exposed);
792     const QRectF mapped = painter->worldTransform().mapRect(rect());
793     painter->setWorldMatrixEnabled(false);
794     QPainterPath p;
795     p.addRect(mappedExposed);
796     QPainterPath q;
797     q.addRoundedRect(mapped.adjusted(0, 0, -0.5, 0), 3, 3);
798     painter->setClipPath(p.intersected(q));
799     painter->setPen(Qt::NoPen);
800     painter->fillRect(mappedExposed, paintColor);
801     painter->setPen(paintColor.darker());
802     // draw thumbnails
803     if (KdenliveSettings::videothumbnails() && !isAudioOnly()) {
804         if ((m_clipType == IMAGE || m_clipType == TEXT) && !m_startPix.isNull()) {
805             const QPointF top = mapped.topRight() - QPointF(m_startPix.width() - 1, 0);
806             painter->drawPixmap(top, m_startPix);
807             QLineF l2(top.x(), mapped.top(), top.x(), mapped.bottom());
808             painter->drawLine(l2);
809         } else if (!m_endPix.isNull()) {
810             const QPointF top = mapped.topRight() - QPointF(m_endPix.width() - 1, 0);
811             painter->drawPixmap(top, m_endPix);
812             QLineF l2(top.x(), mapped.top(), top.x(), mapped.bottom());
813             painter->drawLine(l2);
814         }
815         if (!m_startPix.isNull()) {
816             painter->drawPixmap(mapped.topLeft(), m_startPix);
817             QLineF l2(mapped.left() + m_startPix.width(), mapped.top(), mapped.left() + m_startPix.width(), mapped.bottom());
818             painter->drawLine(l2);
819         }
820
821         // if we are in full zoom, paint thumbnail for every frame
822         if (m_clip->thumbProducer() && clipType() != COLOR && clipType() != AUDIO && !m_audioOnly && painter->worldTransform().m11() == FRAME_SIZE) {
823             int offset = (m_info.startPos - m_info.cropStart).frames(m_fps);
824             int left = qMax((int) m_info.cropStart.frames(m_fps) + 1, (int) mapToScene(exposed.left(), 0).x() - offset);
825             int right = qMin((int)(m_info.cropStart + m_info.cropDuration).frames(m_fps) - 1, (int) mapToScene(exposed.right(), 0).x() - offset);
826             QPointF startPos = mapped.topLeft();
827             int startOffset = m_info.cropStart.frames(m_fps);
828             if (clipType() == IMAGE || clipType() == TEXT) {
829                 for (int i = left; i <= right; i++) {
830                     painter->drawPixmap(startPos + QPointF(FRAME_SIZE *(i - startOffset), 0), m_startPix);
831                 }
832             }
833             else {
834 #if KDE_IS_VERSION(4,5,0)
835                 if (m_clip && m_clip->thumbProducer()) {
836                     QString path = m_clip->fileURL().path() + '_';
837                     QImage img;
838                     QPen pen(Qt::white);
839                     pen.setStyle(Qt::DotLine);
840                     QList <int> missing;
841                     for (int i = left; i <= right; i++) {
842                         img = m_clip->thumbProducer()->findCachedThumb(path + QString::number(i));
843                         QPointF xpos = startPos + QPointF(FRAME_SIZE *(i - startOffset), 0);
844                         if (img.isNull()) missing << i;
845                         else painter->drawImage(xpos, img);
846                         painter->drawLine(xpos, xpos + QPointF(0, mapped.height()));
847                     }
848                     if (!missing.isEmpty()) {
849                         m_clip->thumbProducer()->queryIntraThumbs(missing);
850                         connect(m_clip->thumbProducer(), SIGNAL(thumbsCached()), this, SLOT(slotGotThumbsCache()));
851                     }
852                 }
853 #endif
854             }
855         }
856     }
857
858     // draw audio thumbnails
859     if (KdenliveSettings::audiothumbnails() && m_speed == 1.0 && !isVideoOnly() && ((m_clipType == AV && (exposed.bottom() > (rect().height() / 2) || isAudioOnly())) || m_clipType == AUDIO) && m_audioThumbReady) {
860
861         double startpixel = exposed.left();
862         if (startpixel < 0)
863             startpixel = 0;
864         double endpixel = exposed.right();
865         if (endpixel < 0)
866             endpixel = 0;
867         //kDebug()<<"///  REPAINTING AUDIO THMBS ZONE: "<<startpixel<<"x"<<endpixel;
868
869         /*QPainterPath path = m_clipType == AV ? roundRectPathLower : resultClipPath;*/
870         QRectF mappedRect;
871         if (m_clipType == AV && !isAudioOnly()) {
872             mappedRect = mapped;
873             mappedRect.setTop(mappedRect.bottom() - mapped.height() / 2);
874         } else mappedRect = mapped;
875
876         double scale = painter->worldTransform().m11();
877         int channels = 0;
878         if (isEnabled() && m_clip) channels = m_clip->getProperty("channels").toInt();
879         if (scale != m_framePixelWidth)
880             m_audioThumbCachePic.clear();
881         double cropLeft = m_info.cropStart.frames(m_fps);
882         const int clipStart = mappedRect.x();
883         const int mappedStartPixel =  painter->worldTransform().map(QPointF(startpixel + cropLeft, 0)).x() - clipStart;
884         const int mappedEndPixel =  painter->worldTransform().map(QPointF(endpixel + cropLeft, 0)).x() - clipStart;
885         cropLeft = cropLeft * scale;
886
887         if (channels >= 1) {
888             emit prepareAudioThumb(scale, mappedStartPixel, mappedEndPixel, channels);
889         }
890
891         for (int startCache = mappedStartPixel - (mappedStartPixel) % 100; startCache < mappedEndPixel; startCache += 100) {
892             if (m_audioThumbCachePic.contains(startCache) && !m_audioThumbCachePic[startCache].isNull())
893                 painter->drawPixmap(clipStart + startCache - cropLeft, mappedRect.y(),  m_audioThumbCachePic[startCache]);
894         }
895     }
896
897     // only paint details if clip is big enough
898     if (mapped.width() > 20) {
899
900         // Draw effects names
901         if (!m_effectNames.isEmpty() && mapped.width() > 40) {
902             QRectF txtBounding = painter->boundingRect(mapped, Qt::AlignLeft | Qt::AlignTop, m_effectNames);
903             QColor bColor = palette.window().color();
904             QColor tColor = palette.text().color();
905             tColor.setAlpha(220);
906             if (m_timeLine && m_timeLine->state() == QTimeLine::Running) {
907                 qreal value = m_timeLine->currentValue();
908                 txtBounding.setWidth(txtBounding.width() * value);
909                 bColor.setAlpha(100 + 50 * value);
910             };
911
912             painter->setBrush(bColor);
913             painter->setPen(Qt::NoPen);
914             painter->drawRoundedRect(txtBounding.adjusted(-1, -2, 4, -1), 3, 3);
915             painter->setPen(tColor);
916             painter->drawText(txtBounding.adjusted(2, 0, 1, -1), Qt::AlignCenter, m_effectNames);
917         }
918
919         // Draw clip name
920         const QRectF txtBounding2 = painter->boundingRect(mapped, Qt::AlignRight | Qt::AlignTop, m_clipName + ' ').adjusted(0, -1, 0, -1);
921         painter->setPen(Qt::NoPen);
922         if (m_isMainSelectedClip) {
923             framePen.setColor(Qt::red);
924             textBgColor = Qt::red;
925         }
926         painter->fillRect(txtBounding2.adjusted(-3, 0, 0, 0), textBgColor);
927         painter->setBrush(QBrush(Qt::NoBrush));
928         painter->setPen(textColor);
929         if (m_videoOnly) {
930             painter->drawPixmap(txtBounding2.topLeft() - QPointF(17, -1), m_videoPix);
931         } else if (m_audioOnly) {
932             painter->drawPixmap(txtBounding2.topLeft() - QPointF(17, -1), m_audioPix);
933         }
934         painter->drawText(txtBounding2, Qt::AlignLeft, m_clipName);
935
936
937         // draw markers
938         if (isEnabled() && m_clip) {
939             QList < CommentedTime > markers = m_clip->commentedSnapMarkers();
940             QList < CommentedTime >::Iterator it = markers.begin();
941             GenTime pos;
942             double framepos;
943             QBrush markerBrush(QColor(120, 120, 0, 140));
944             QPen pen = painter->pen();
945
946             for (; it != markers.end(); ++it) {
947                 pos = GenTime((int)((*it).time().frames(m_fps) / qAbs(m_speed) + 0.5), m_fps) - cropStart();
948                 if (pos > GenTime()) {
949                     if (pos > cropDuration()) break;
950                     QLineF l(rect().x() + pos.frames(m_fps), rect().y(), rect().x() + pos.frames(m_fps), rect().bottom());
951                     QLineF l2 = painter->worldTransform().map(l);
952                     pen.setColor(CommentedTime::markerColor((*it).markerType()));
953                     pen.setStyle(Qt::DotLine);
954                     painter->setPen(pen);
955                     painter->drawLine(l2);
956                     if (KdenliveSettings::showmarkers()) {
957                         framepos = rect().x() + pos.frames(m_fps);
958                         const QRectF r1(framepos + 0.04, rect().height()/3, rect().width() - framepos - 2, rect().height() / 2);
959                         const QRectF r2 = painter->worldTransform().mapRect(r1);
960                         const QRectF txtBounding3 = painter->boundingRect(r2, Qt::AlignLeft | Qt::AlignTop, ' ' + (*it).comment() + ' ');
961                         painter->setBrush(markerBrush);
962                         pen.setStyle(Qt::SolidLine);
963                         painter->setPen(pen);
964                         painter->drawRect(txtBounding3);
965                         painter->setBrush(Qt::NoBrush);
966                         painter->setPen(Qt::white);
967                         painter->drawText(txtBounding3, Qt::AlignCenter, (*it).comment());
968                     }
969                     //painter->fillRect(QRect(br.x() + framepos, br.y(), 10, br.height()), QBrush(QColor(0, 0, 0, 150)));
970                 }
971             }
972         }
973
974         // draw start / end fades
975         QBrush fades;
976         if (isSelected()) {
977             fades = QBrush(QColor(200, 50, 50, 150));
978         } else fades = QBrush(QColor(200, 200, 200, 200));
979
980         if (m_startFade != 0) {
981             QPainterPath fadeInPath;
982             fadeInPath.moveTo(0, 0);
983             fadeInPath.lineTo(0, rect().height());
984             fadeInPath.lineTo(m_startFade, 0);
985             fadeInPath.closeSubpath();
986             QPainterPath f1 = painter->worldTransform().map(fadeInPath);
987             painter->fillPath(f1/*.intersected(resultClipPath)*/, fades);
988             /*if (isSelected()) {
989                 QLineF l(m_startFade * scale, 0, 0, itemHeight);
990                 painter->drawLine(l);
991             }*/
992         }
993         if (m_endFade != 0) {
994             QPainterPath fadeOutPath;
995             fadeOutPath.moveTo(rect().width(), 0);
996             fadeOutPath.lineTo(rect().width(), rect().height());
997             fadeOutPath.lineTo(rect().width() - m_endFade, 0);
998             fadeOutPath.closeSubpath();
999             QPainterPath f1 = painter->worldTransform().map(fadeOutPath);
1000             painter->fillPath(f1/*.intersected(resultClipPath)*/, fades);
1001             /*if (isSelected()) {
1002                 QLineF l(itemWidth - m_endFade * scale, 0, itemWidth, itemHeight);
1003                 painter->drawLine(l);
1004             }*/
1005         }
1006
1007
1008         painter->setPen(QPen(Qt::lightGray));
1009         // draw effect or transition keyframes
1010         drawKeyFrames(painter, m_limitedKeyFrames);
1011     }
1012     
1013     // draw clip border
1014     // expand clip rect to allow correct painting of clip border
1015     painter->setClipping(false);
1016     painter->setRenderHint(QPainter::Antialiasing, true);
1017     framePen.setWidthF(1.5);
1018     painter->setPen(framePen);
1019     painter->drawRoundedRect(mapped.adjusted(0, 0, -0.5, -0.5), 3, 3);
1020 }
1021
1022
1023 OPERATIONTYPE ClipItem::operationMode(QPointF pos)
1024 {
1025     if (isItemLocked()) return NONE;
1026     const double scale = projectScene()->scale().x();
1027     double maximumOffset = 6 / scale;
1028     if (isSelected() || (parentItem() && parentItem()->isSelected())) {
1029         int kf = mouseOverKeyFrames(pos, maximumOffset);
1030         if (kf != -1) {
1031             m_editedKeyframe = kf;
1032             return KEYFRAME;
1033         }
1034     }
1035     QRectF rect = sceneBoundingRect();
1036     int addtransitionOffset = 10;
1037     // Don't allow add transition if track height is very small. No transitions for audio only clips
1038     if (rect.height() < 30 || isAudioOnly() || m_clipType == AUDIO) addtransitionOffset = 0;
1039
1040     if (qAbs((int)(pos.x() - (rect.x() + m_startFade))) < maximumOffset  && qAbs((int)(pos.y() - rect.y())) < 6) {
1041         return FADEIN;
1042     } else if ((pos.x() <= rect.x() + rect.width() / 2) && pos.x() - rect.x() < maximumOffset && (rect.bottom() - pos.y() > addtransitionOffset)) {
1043         return RESIZESTART;
1044     } else if (qAbs((int)(pos.x() - (rect.x() + rect.width() - m_endFade))) < maximumOffset && qAbs((int)(pos.y() - rect.y())) < 6) {
1045         return FADEOUT;
1046     } else if ((pos.x() >= rect.x() + rect.width() / 2) && (rect.right() - pos.x() < maximumOffset) && (rect.bottom() - pos.y() > addtransitionOffset)) {
1047         return RESIZEEND;
1048     } else if ((pos.x() - rect.x() < 16 / scale) && (rect.bottom() - pos.y() <= addtransitionOffset)) {
1049         return TRANSITIONSTART;
1050     } else if ((rect.right() - pos.x() < 16 / scale) && (rect.bottom() - pos.y() <= addtransitionOffset)) {
1051         return TRANSITIONEND;
1052     }
1053
1054     return MOVE;
1055 }
1056
1057 int ClipItem::itemHeight()
1058 {
1059     return KdenliveSettings::trackheight() - 2;
1060 }
1061
1062 void ClipItem::resetFrameWidth(int width)
1063 {
1064     FRAME_SIZE = width;
1065     update();
1066 }
1067
1068 QList <GenTime> ClipItem::snapMarkers() const
1069 {
1070     QList < GenTime > snaps;
1071     if (!m_clip) return snaps;
1072     QList < GenTime > markers = m_clip->snapMarkers();
1073     GenTime pos;
1074
1075     for (int i = 0; i < markers.size(); i++) {
1076         pos = GenTime((int)(markers.at(i).frames(m_fps) / qAbs(m_speed) + 0.5), m_fps) - cropStart();
1077         if (pos > GenTime()) {
1078             if (pos > cropDuration()) break;
1079             else snaps.append(pos + startPos());
1080         }
1081     }
1082     return snaps;
1083 }
1084
1085 QList <CommentedTime> ClipItem::commentedSnapMarkers() const
1086 {
1087     QList < CommentedTime > snaps;
1088     if (!m_clip) return snaps;
1089     QList < CommentedTime > markers = m_clip->commentedSnapMarkers();
1090     GenTime pos;
1091
1092     for (int i = 0; i < markers.size(); i++) {
1093         pos = GenTime((int)(markers.at(i).time().frames(m_fps) / qAbs(m_speed) + 0.5), m_fps) - cropStart();
1094         if (pos > GenTime()) {
1095             if (pos > cropDuration()) break;
1096             else snaps.append(CommentedTime(pos + startPos(), markers.at(i).comment(), markers.at(i).markerType()));
1097         }
1098     }
1099     return snaps;
1100 }
1101
1102 void ClipItem::slotPrepareAudioThumb(double pixelForOneFrame, int startpixel, int endpixel, int channels)
1103 {
1104     QRectF re =  sceneBoundingRect();
1105     if (m_clipType == AV && !isAudioOnly()) re.setTop(re.y() + re.height() / 2);
1106
1107     //kDebug() << "// PREP AUDIO THMB FRMO : scale:" << pixelForOneFrame<< ", from: " << startpixel << ", to: " << endpixel;
1108     //if ( (!audioThumbWasDrawn || framePixelWidth!=pixelForOneFrame ) && !baseClip()->audioFrameChache.isEmpty()){
1109
1110     for (int startCache = startpixel - startpixel % 100; startCache < endpixel; startCache += 100) {
1111         //kDebug() << "creating " << startCache;
1112         //if (framePixelWidth!=pixelForOneFrame  ||
1113         if (m_framePixelWidth == pixelForOneFrame && m_audioThumbCachePic.contains(startCache))
1114             continue;
1115         if (m_audioThumbCachePic[startCache].isNull() || m_framePixelWidth != pixelForOneFrame) {
1116             m_audioThumbCachePic[startCache] = QPixmap(100, (int)(re.height()));
1117             m_audioThumbCachePic[startCache].fill(QColor(180, 180, 200, 140));
1118         }
1119         bool fullAreaDraw = pixelForOneFrame < 10;
1120         QMap<int, QPainterPath > positiveChannelPaths;
1121         QMap<int, QPainterPath > negativeChannelPaths;
1122         QPainter pixpainter(&m_audioThumbCachePic[startCache]);
1123         QPen audiopen;
1124         audiopen.setWidth(0);
1125         pixpainter.setPen(audiopen);
1126         //pixpainter.setRenderHint(QPainter::Antialiasing,true);
1127         //pixpainter.drawLine(0,0,100,re.height());
1128         // Bail out, if caller provided invalid data
1129         if (channels <= 0) {
1130             kWarning() << "Unable to draw image with " << channels << "number of channels";
1131             return;
1132         }
1133
1134         int channelHeight = m_audioThumbCachePic[startCache].height() / channels;
1135
1136         for (int i = 0; i < channels; i++) {
1137
1138             positiveChannelPaths[i].moveTo(0, channelHeight*i + channelHeight / 2);
1139             negativeChannelPaths[i].moveTo(0, channelHeight*i + channelHeight / 2);
1140         }
1141
1142         for (int samples = 0; samples <= 100; samples++) {
1143             double frame = (double)(samples + startCache - 0) / pixelForOneFrame;
1144             int sample = (int)((frame - (int)(frame)) * 20);   // AUDIO_FRAME_SIZE
1145             if (frame < 0 || sample < 0 || sample > 19)
1146                 continue;
1147             QMap<int, QByteArray> frame_channel_data = baseClip()->audioFrameCache[(int)frame];
1148
1149             for (int channel = 0; channel < channels && frame_channel_data[channel].size() > 0; channel++) {
1150
1151                 int y = channelHeight * channel + channelHeight / 2;
1152                 int delta = (int)(frame_channel_data[channel][sample] - 127 / 2)  * channelHeight / 64;
1153                 if (fullAreaDraw) {
1154                     positiveChannelPaths[channel].lineTo(samples, 0.1 + y + qAbs(delta));
1155                     negativeChannelPaths[channel].lineTo(samples, 0.1 + y - qAbs(delta));
1156                 } else {
1157                     positiveChannelPaths[channel].lineTo(samples, 0.1 + y + delta);
1158                     negativeChannelPaths[channel].lineTo(samples, 0.1 + y - delta);
1159                 }
1160             }
1161             for (int channel = 0; channel < channels ; channel++)
1162                 if (fullAreaDraw && samples == 100) {
1163                     positiveChannelPaths[channel].lineTo(samples, channelHeight*channel + channelHeight / 2);
1164                     negativeChannelPaths[channel].lineTo(samples, channelHeight*channel + channelHeight / 2);
1165                     positiveChannelPaths[channel].lineTo(0, channelHeight*channel + channelHeight / 2);
1166                     negativeChannelPaths[channel].lineTo(0, channelHeight*channel + channelHeight / 2);
1167                 }
1168
1169         }
1170         pixpainter.setPen(QPen(QColor(0, 0, 0)));
1171         pixpainter.setBrush(QBrush(QColor(60, 60, 60)));
1172
1173         for (int i = 0; i < channels; i++) {
1174             if (fullAreaDraw) {
1175                 //pixpainter.fillPath(positiveChannelPaths[i].united(negativeChannelPaths[i]),QBrush(Qt::SolidPattern));//or singleif looks better
1176                 pixpainter.drawPath(positiveChannelPaths[i].united(negativeChannelPaths[i]));//or singleif looks better
1177             } else
1178                 pixpainter.drawPath(positiveChannelPaths[i]);
1179         }
1180     }
1181     //audioThumbWasDrawn=true;
1182     m_framePixelWidth = pixelForOneFrame;
1183
1184     //}
1185 }
1186
1187 int ClipItem::fadeIn() const
1188 {
1189     return m_startFade;
1190 }
1191
1192 int ClipItem::fadeOut() const
1193 {
1194     return m_endFade;
1195 }
1196
1197
1198 void ClipItem::setFadeIn(int pos)
1199 {
1200     if (pos == m_startFade) return;
1201     int oldIn = m_startFade;
1202     m_startFade = qBound(0, pos, (int)cropDuration().frames(m_fps));
1203     QRectF rect = boundingRect();
1204     update(rect.x(), rect.y(), qMax(oldIn, m_startFade), rect.height());
1205 }
1206
1207 void ClipItem::setFadeOut(int pos)
1208 {
1209     if (pos == m_endFade) return;
1210     int oldOut = m_endFade;
1211     m_endFade = qBound(0, pos, (int)cropDuration().frames(m_fps));
1212     QRectF rect = boundingRect();
1213     update(rect.x() + rect.width() - qMax(oldOut, m_endFade), rect.y(), qMax(oldOut, m_endFade), rect.height());
1214
1215 }
1216
1217 void ClipItem::setFades(int in, int out)
1218 {
1219     m_startFade = in;
1220     m_endFade = out;
1221 }
1222
1223 /*
1224 //virtual
1225 void ClipItem::hoverEnterEvent(QGraphicsSceneHoverEvent *e)
1226 {
1227     //if (e->pos().x() < 20) m_hover = true;
1228     return;
1229     if (isItemLocked()) return;
1230     m_hover = true;
1231     QRectF r = boundingRect();
1232     double width = 35 / projectScene()->scale().x();
1233     double height = r.height() / 2;
1234     //WARNING: seems like it generates a full repaint of the clip, maybe not so good...
1235     update(r.x(), r.y() + height, width, height);
1236     update(r.right() - width, r.y() + height, width, height);
1237 }
1238
1239 //virtual
1240 void ClipItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *)
1241 {
1242     if (isItemLocked()) return;
1243     m_hover = false;
1244     QRectF r = boundingRect();
1245     double width = 35 / projectScene()->scale().x();
1246     double height = r.height() / 2;
1247     //WARNING: seems like it generates a full repaint of the clip, maybe not so good...
1248     update(r.x(), r.y() + height, width, height);
1249     update(r.right() - width, r.y() + height, width, height);
1250 }
1251 */
1252
1253 void ClipItem::resizeStart(int posx, bool /*size*/, bool emitChange)
1254 {
1255     bool sizeLimit = false;
1256     if (clipType() != IMAGE && clipType() != COLOR && clipType() != TEXT) {
1257         const int min = (startPos() - cropStart()).frames(m_fps);
1258         if (posx < min) posx = min;
1259         sizeLimit = true;
1260     }
1261
1262     if (posx == startPos().frames(m_fps)) return;
1263     const int previous = cropStart().frames(m_fps);
1264     AbstractClipItem::resizeStart(posx, sizeLimit);
1265
1266     // set speed independant info
1267     m_speedIndependantInfo = m_info;
1268     m_speedIndependantInfo.cropStart = GenTime((int)(m_info.cropStart.frames(m_fps) * qAbs(m_speed)), m_fps);
1269     m_speedIndependantInfo.cropDuration = GenTime((int)(m_info.cropDuration.frames(m_fps) * qAbs(m_speed)), m_fps);
1270
1271     if ((int) cropStart().frames(m_fps) != previous) {
1272         if (m_hasThumbs && KdenliveSettings::videothumbnails()) {
1273             m_startThumbTimer.start(150);
1274         }
1275     }
1276     if (m_isMainSelectedClip && emitChange) emit updateRange();
1277 }
1278
1279 void ClipItem::resizeEnd(int posx, bool emitChange)
1280 {
1281     const int max = (startPos() - cropStart() + maxDuration()).frames(m_fps);
1282     if (posx > max && maxDuration() != GenTime()) posx = max;
1283     if (posx == endPos().frames(m_fps)) return;
1284     //kDebug() << "// NEW POS: " << posx << ", OLD END: " << endPos().frames(m_fps);
1285     const int previous = cropDuration().frames(m_fps);
1286     AbstractClipItem::resizeEnd(posx);
1287
1288     // set speed independant info
1289     m_speedIndependantInfo = m_info;
1290     m_speedIndependantInfo.cropStart = GenTime((int)(m_info.cropStart.frames(m_fps) * qAbs(m_speed)), m_fps);
1291     m_speedIndependantInfo.cropDuration = GenTime((int)(m_info.cropDuration.frames(m_fps) * qAbs(m_speed)), m_fps);
1292
1293     if ((int) cropDuration().frames(m_fps) != previous) {
1294         if (m_hasThumbs && KdenliveSettings::videothumbnails()) {
1295             m_endThumbTimer.start(150);
1296         }
1297     }
1298     if (m_isMainSelectedClip && emitChange) emit updateRange();
1299 }
1300
1301 //virtual
1302 QVariant ClipItem::itemChange(GraphicsItemChange change, const QVariant &value)
1303 {
1304     if (change == QGraphicsItem::ItemSelectedChange) {
1305         if (value.toBool()) setZValue(10);
1306         else setZValue(2);
1307     }
1308     if (change == ItemPositionChange && scene()) {
1309         // calculate new position.
1310         //if (parentItem()) return pos();
1311         QPointF newPos = value.toPointF();
1312         //kDebug() << "/// MOVING CLIP ITEM.------------\n++++++++++";
1313         int xpos = projectScene()->getSnapPointForPos((int) newPos.x(), KdenliveSettings::snaptopoints());
1314         xpos = qMax(xpos, 0);
1315         newPos.setX(xpos);
1316         // Warning: newPos gives a position relative to the click event, so hack to get absolute pos
1317         int yOffset = property("y_absolute").toInt() + newPos.y();
1318         int newTrack = yOffset / KdenliveSettings::trackheight();
1319         newTrack = qMin(newTrack, projectScene()->tracksCount() - 1);
1320         newTrack = qMax(newTrack, 0);
1321         newPos.setY((int)(newTrack  * KdenliveSettings::trackheight() + 1));
1322         // Only one clip is moving
1323         QRectF sceneShape = rect();
1324         sceneShape.translate(newPos);
1325         QList<QGraphicsItem*> items;
1326         if (projectScene()->editMode() == NORMALEDIT)
1327             items = scene()->items(sceneShape, Qt::IntersectsItemShape);
1328         items.removeAll(this);
1329         bool forwardMove = newPos.x() > pos().x();
1330         int offset = 0;
1331         if (!items.isEmpty()) {
1332             for (int i = 0; i < items.count(); i++) {
1333                 if (!items.at(i)->isEnabled()) continue;
1334                 if (items.at(i)->type() == type()) {
1335                     // Collision!
1336                     QPointF otherPos = items.at(i)->pos();
1337                     if ((int) otherPos.y() != (int) pos().y()) {
1338                         return pos();
1339                     }
1340                     if (forwardMove) {
1341                         offset = qMax(offset, (int)(newPos.x() - (static_cast < AbstractClipItem* >(items.at(i))->startPos() - cropDuration()).frames(m_fps)));
1342                     } else {
1343                         offset = qMax(offset, (int)((static_cast < AbstractClipItem* >(items.at(i))->endPos().frames(m_fps)) - newPos.x()));
1344                     }
1345
1346                     if (offset > 0) {
1347                         if (forwardMove) {
1348                             sceneShape.translate(QPointF(-offset, 0));
1349                             newPos.setX(newPos.x() - offset);
1350                         } else {
1351                             sceneShape.translate(QPointF(offset, 0));
1352                             newPos.setX(newPos.x() + offset);
1353                         }
1354                         QList<QGraphicsItem*> subitems = scene()->items(sceneShape, Qt::IntersectsItemShape);
1355                         subitems.removeAll(this);
1356                         for (int j = 0; j < subitems.count(); j++) {
1357                             if (!subitems.at(j)->isEnabled()) continue;
1358                             if (subitems.at(j)->type() == type()) {
1359                                 // move was not successful, revert to previous pos
1360                                 m_info.startPos = GenTime((int) pos().x(), m_fps);
1361                                 return pos();
1362                             }
1363                         }
1364                     }
1365
1366                     m_info.track = newTrack;
1367                     m_info.startPos = GenTime((int) newPos.x(), m_fps);
1368
1369                     return newPos;
1370                 }
1371             }
1372         }
1373         m_info.track = newTrack;
1374         m_info.startPos = GenTime((int) newPos.x(), m_fps);
1375         //kDebug()<<"// ITEM NEW POS: "<<newPos.x()<<", mapped: "<<mapToScene(newPos.x(), 0).x();
1376         return newPos;
1377     }
1378     return QGraphicsItem::itemChange(change, value);
1379 }
1380
1381 // virtual
1382 /*void ClipItem::mouseMoveEvent(QGraphicsSceneMouseEvent * event) {
1383 }*/
1384
1385 int ClipItem::effectsCounter()
1386 {
1387     return effectsCount() + 1;
1388 }
1389
1390 int ClipItem::effectsCount()
1391 {
1392     return m_effectList.count();
1393 }
1394
1395 int ClipItem::hasEffect(const QString &tag, const QString &id) const
1396 {
1397     return m_effectList.hasEffect(tag, id);
1398 }
1399
1400 QStringList ClipItem::effectNames()
1401 {
1402     return m_effectList.effectNames();
1403 }
1404
1405 QDomElement ClipItem::effect(int ix) const
1406 {
1407     if (ix >= m_effectList.count() || ix < 0) return QDomElement();
1408     return m_effectList.at(ix).cloneNode().toElement();
1409 }
1410
1411 QDomElement ClipItem::effectAtIndex(int ix) const
1412 {
1413     if (ix > m_effectList.count() || ix <= 0) return QDomElement();
1414     return m_effectList.itemFromIndex(ix).cloneNode().toElement();
1415 }
1416
1417 QDomElement ClipItem::getEffectAtIndex(int ix) const
1418 {
1419     if (ix > m_effectList.count() || ix <= 0) return QDomElement();
1420     return m_effectList.itemFromIndex(ix);
1421 }
1422
1423 void ClipItem::updateEffect(QDomElement effect)
1424 {
1425     //kDebug() << "CHange EFFECT AT: " << ix << ", CURR: " << m_effectList.at(ix).attribute("tag") << ", NEW: " << effect.attribute("tag");
1426     m_effectList.updateEffect(effect);
1427     m_effectNames = m_effectList.effectNames().join(" / ");
1428     QString id = effect.attribute("id");
1429     if (id == "fadein" || id == "fadeout" || id == "fade_from_black" || id == "fade_to_black")
1430         update();
1431     else {
1432         QRectF r = boundingRect();
1433         r.setHeight(20);
1434         update(r);
1435     }
1436 }
1437
1438 void ClipItem::enableEffects(QList <int> indexes, bool disable)
1439 {
1440     m_effectList.enableEffects(indexes, disable);
1441 }
1442
1443 bool ClipItem::moveEffect(QDomElement effect, int ix)
1444 {
1445     if (ix <= 0 || ix > (m_effectList.count()) || effect.isNull()) {
1446         kDebug() << "Invalid effect index: " << ix;
1447         return false;
1448     }
1449     m_effectList.removeAt(effect.attribute("kdenlive_ix").toInt());
1450     effect.setAttribute("kdenlive_ix", ix);
1451     m_effectList.insert(effect);
1452     m_effectNames = m_effectList.effectNames().join(" / ");
1453     QString id = effect.attribute("id");
1454     if (id == "fadein" || id == "fadeout" || id == "fade_from_black" || id == "fade_to_black")
1455         update();
1456     else {
1457         QRectF r = boundingRect();
1458         r.setHeight(20);
1459         update(r);
1460     }
1461     return true;
1462 }
1463
1464 EffectsParameterList ClipItem::addEffect(QDomElement effect, bool /*animate*/)
1465 {
1466     bool needRepaint = false;
1467     QLocale locale;
1468     int ix;
1469     QDomElement insertedEffect;
1470     if (!effect.hasAttribute("kdenlive_ix")) {
1471         // effect dropped from effect list
1472         ix = effectsCounter();
1473     } else ix = effect.attribute("kdenlive_ix").toInt();
1474     if (!m_effectList.isEmpty() && ix <= m_effectList.count()) {
1475         needRepaint = true;
1476         insertedEffect = m_effectList.insert(effect);
1477     } else insertedEffect = m_effectList.append(effect);
1478     
1479     // Update index to the real one
1480     effect.setAttribute("kdenlive_ix", insertedEffect.attribute("kdenlive_ix"));
1481     int effectIn;
1482     int effectOut;
1483
1484     if (effect.attribute("tag") == "affine") {
1485         // special case: the affine effect needs in / out points
1486         effectIn = effect.attribute("in").toInt();
1487         effectOut = effect.attribute("out").toInt();
1488     }
1489     else {
1490         effectIn = EffectsList::parameter(effect, "in").toInt();
1491         effectOut = EffectsList::parameter(effect, "out").toInt();
1492     }
1493     
1494     EffectsParameterList parameters;
1495     parameters.addParam("tag", insertedEffect.attribute("tag"));
1496     parameters.addParam("kdenlive_ix", insertedEffect.attribute("kdenlive_ix"));
1497     if (insertedEffect.hasAttribute("src")) parameters.addParam("src", insertedEffect.attribute("src"));
1498     if (insertedEffect.hasAttribute("disable")) parameters.addParam("disable", insertedEffect.attribute("disable"));
1499
1500     QString effectId = insertedEffect.attribute("id");
1501     if (effectId.isEmpty()) effectId = insertedEffect.attribute("tag");
1502     parameters.addParam("id", effectId);
1503
1504     QDomNodeList params = insertedEffect.elementsByTagName("parameter");
1505     int fade = 0;
1506     bool needInOutSync = false;
1507
1508     // check if it is a fade effect
1509     if (effectId == "fadein") {
1510         needRepaint = true;
1511         if (m_effectList.hasEffect(QString(), "fade_from_black") == -1) {
1512             fade = effectOut - effectIn;
1513         }/* else {
1514             QDomElement fadein = m_effectList.getEffectByTag(QString(), "fade_from_black");
1515             if (fadein.attribute("name") == "out") fade += fadein.attribute("value").toInt();
1516             else if (fadein.attribute("name") == "in") fade -= fadein.attribute("value").toInt();
1517         }*/
1518     } else if (effectId == "fade_from_black") {
1519         kDebug()<<"// FOUND FTB:"<<effectOut<<" - "<<effectIn;
1520         needRepaint = true;
1521         if (m_effectList.hasEffect(QString(), "fadein") == -1) {
1522             fade = effectOut - effectIn;
1523         }/* else {
1524             QDomElement fadein = m_effectList.getEffectByTag(QString(), "fadein");
1525             if (fadein.attribute("name") == "out") fade += fadein.attribute("value").toInt();
1526             else if (fadein.attribute("name") == "in") fade -= fadein.attribute("value").toInt();
1527         }*/
1528      } else if (effectId == "fadeout") {
1529         needRepaint = true;
1530         if (m_effectList.hasEffect(QString(), "fade_to_black") == -1) {
1531             fade = effectIn - effectOut;
1532         } /*else {
1533             QDomElement fadeout = m_effectList.getEffectByTag(QString(), "fade_to_black");
1534             if (fadeout.attribute("name") == "out") fade -= fadeout.attribute("value").toInt();
1535             else if (fadeout.attribute("name") == "in") fade += fadeout.attribute("value").toInt();
1536         }*/
1537     } else if (effectId == "fade_to_black") {
1538         needRepaint = true;
1539         if (m_effectList.hasEffect(QString(), "fadeout") == -1) {
1540             fade = effectIn - effectOut;
1541         }/* else {
1542             QDomElement fadeout = m_effectList.getEffectByTag(QString(), "fadeout");
1543             if (fadeout.attribute("name") == "out") fade -= fadeout.attribute("value").toInt();
1544             else if (fadeout.attribute("name") == "in") fade += fadeout.attribute("value").toInt();
1545         }*/
1546     }
1547
1548     for (int i = 0; i < params.count(); i++) {
1549         QDomElement e = params.item(i).toElement();
1550         if (!e.isNull()) {
1551             if (e.attribute("type") == "geometry" && !e.hasAttribute("fixed")) {
1552                 // Effects with a geometry parameter need to sync in / out with parent clip
1553                 needInOutSync = true;
1554             }
1555             if (e.attribute("type") == "simplekeyframe") {
1556                 QStringList values = e.attribute("keyframes").split(';', QString::SkipEmptyParts);
1557                 double factor = locale.toDouble(e.attribute("factor", "1"));
1558                 double offset = e.attribute("offset", "0").toDouble();
1559                 if (factor != 1 || offset != 0) {
1560                     for (int j = 0; j < values.count(); j++) {
1561                         QString pos = values.at(j).section(':', 0, 0);
1562                         double val = (locale.toDouble(values.at(j).section(':', 1, 1)) - offset) / factor;
1563                         values[j] = pos + '=' + locale.toString(val);
1564                     }
1565                 }
1566                 parameters.addParam(e.attribute("name"), values.join(";"));
1567                 /*parameters.addParam("max", e.attribute("max"));
1568                 parameters.addParam("min", e.attribute("min"));
1569                 parameters.addParam("factor", );*/
1570             } else if (e.attribute("type") == "keyframe") {
1571                 parameters.addParam("keyframes", e.attribute("keyframes"));
1572                 parameters.addParam("max", e.attribute("max"));
1573                 parameters.addParam("min", e.attribute("min"));
1574                 parameters.addParam("factor", e.attribute("factor", "1"));
1575                 parameters.addParam("offset", e.attribute("offset", "0"));
1576                 parameters.addParam("starttag", e.attribute("starttag", "start"));
1577                 parameters.addParam("endtag", e.attribute("endtag", "end"));
1578             } else if (e.attribute("factor", "1") == "1" && e.attribute("offset", "0") == "0") {
1579                 parameters.addParam(e.attribute("name"), e.attribute("value"));
1580
1581             } else {
1582                 double fact;
1583                 if (e.attribute("factor").contains('%')) {
1584                     fact = ProfilesDialog::getStringEval(projectScene()->profile(), e.attribute("factor"));
1585                 } else {
1586                     fact = locale.toDouble(e.attribute("factor", "1"));
1587                 }
1588                 double offset = e.attribute("offset", "0").toDouble();
1589                 parameters.addParam(e.attribute("name"), locale.toString((locale.toDouble(e.attribute("value")) - offset) / fact));
1590             }
1591         }
1592     }
1593     if (needInOutSync) {
1594         parameters.addParam("in", QString::number(cropStart().frames(m_fps)));
1595         parameters.addParam("out", QString::number((cropStart() + cropDuration()).frames(m_fps) - 1));
1596         parameters.addParam("_sync_in_out", "1");
1597     }
1598     m_effectNames = m_effectList.effectNames().join(" / ");
1599     if (fade > 0) m_startFade = fade;
1600     else if (fade < 0) m_endFade = -fade;
1601
1602     if (m_selectedEffect == -1) {
1603         setSelectedEffect(0);
1604     } else if (m_selectedEffect == ix - 1) setSelectedEffect(m_selectedEffect);
1605     if (needRepaint) update(boundingRect());
1606     /*if (animate) {
1607         flashClip();
1608     } */
1609     else { /*if (!needRepaint) */
1610         QRectF r = boundingRect();
1611         r.setHeight(20);
1612         update(r);
1613     }
1614     return parameters;
1615 }
1616
1617 void ClipItem::deleteEffect(QString index)
1618 {
1619     bool needRepaint = false;
1620     int ix = index.toInt();
1621
1622     QDomElement effect = m_effectList.itemFromIndex(ix);
1623     QString effectId = effect.attribute("id");
1624     if ((effectId == "fadein" && hasEffect(QString(), "fade_from_black") == -1) ||
1625         (effectId == "fade_from_black" && hasEffect(QString(), "fadein") == -1)) {
1626         m_startFade = 0;
1627         needRepaint = true;
1628     } else if ((effectId == "fadeout" && hasEffect(QString(), "fade_to_black") == -1) ||
1629         (effectId == "fade_to_black" && hasEffect(QString(), "fadeout") == -1)) {
1630         m_endFade = 0;
1631         needRepaint = true;
1632     } else if (EffectsList::hasKeyFrames(effect)) needRepaint = true;
1633     m_effectList.removeAt(ix);
1634     m_effectNames = m_effectList.effectNames().join(" / ");
1635
1636     if (m_effectList.isEmpty() || m_selectedEffect == ix) {
1637         // Current effect was removed
1638         if (ix > m_effectList.count()) {
1639             setSelectedEffect(m_effectList.count());
1640         } else setSelectedEffect(ix);
1641     }
1642     if (needRepaint) update(boundingRect());
1643     else {
1644         QRectF r = boundingRect();
1645         r.setHeight(20);
1646         update(r);
1647     }
1648     //if (!m_effectList.isEmpty()) flashClip();
1649 }
1650
1651 double ClipItem::speed() const
1652 {
1653     return m_speed;
1654 }
1655
1656 int ClipItem::strobe() const
1657 {
1658     return m_strobe;
1659 }
1660
1661 void ClipItem::setSpeed(const double speed, const int strobe)
1662 {
1663     m_speed = speed;
1664     if (m_speed <= 0 && m_speed > -1)
1665         m_speed = -1.0;
1666     m_strobe = strobe;
1667     if (m_speed == 1.0) m_clipName = m_clip->name();
1668     else m_clipName = m_clip->name() + " - " + QString::number(speed * 100, 'f', 0) + '%';
1669     m_info.cropStart = GenTime((int)(m_speedIndependantInfo.cropStart.frames(m_fps) / qAbs(m_speed) + 0.5), m_fps);
1670     m_info.cropDuration = GenTime((int)(m_speedIndependantInfo.cropDuration.frames(m_fps) / qAbs(m_speed) + 0.5), m_fps);
1671     //update();
1672 }
1673
1674 GenTime ClipItem::maxDuration() const
1675 {
1676     return GenTime((int)(m_maxDuration.frames(m_fps) / qAbs(m_speed) + 0.5), m_fps);
1677 }
1678
1679 GenTime ClipItem::speedIndependantCropStart() const
1680 {
1681     return m_speedIndependantInfo.cropStart;
1682 }
1683
1684 GenTime ClipItem::speedIndependantCropDuration() const
1685 {
1686     return m_speedIndependantInfo.cropDuration;
1687 }
1688
1689
1690 const ItemInfo ClipItem::speedIndependantInfo() const
1691 {
1692     return m_speedIndependantInfo;
1693 }
1694
1695 int ClipItem::nextFreeEffectGroupIndex() const
1696 {
1697     int freeGroupIndex = 0;
1698     for (int i = 0; i < m_effectList.count(); i++) {
1699         QDomElement effect = m_effectList.at(i);
1700         EffectInfo effectInfo;
1701         effectInfo.fromString(effect.attribute("kdenlive_info"));
1702         if (effectInfo.groupIndex >= freeGroupIndex) {
1703             freeGroupIndex = effectInfo.groupIndex + 1;
1704         }
1705     }
1706     return freeGroupIndex;
1707 }
1708
1709 //virtual
1710 void ClipItem::dropEvent(QGraphicsSceneDragDropEvent * event)
1711 {
1712     if (event->proposedAction() == Qt::CopyAction && scene() && !scene()->views().isEmpty()) {
1713         const QString effects = QString::fromUtf8(event->mimeData()->data("kdenlive/effectslist"));
1714         event->acceptProposedAction();
1715         QDomDocument doc;
1716         doc.setContent(effects, true);
1717         QDomElement e = doc.documentElement();
1718         if (e.tagName() == "effectgroup") {
1719             // dropped an effect group
1720             QDomNodeList effectlist = e.elementsByTagName("effect");
1721             int freeGroupIndex = nextFreeEffectGroupIndex();
1722             EffectInfo effectInfo;
1723             for (int i = 0; i < effectlist.count(); i++) {
1724                 QDomElement effect = effectlist.at(i).toElement();
1725                 effectInfo.fromString(effect.attribute("kdenlive_info"));
1726                 effectInfo.groupIndex = freeGroupIndex;
1727                 effect.setAttribute("kdenlive_info", effectInfo.toString());
1728                 effect.removeAttribute("kdenlive_ix");
1729             }
1730         } else {
1731             // single effect dropped
1732             e.removeAttribute("kdenlive_ix");
1733         }
1734         CustomTrackView *view = (CustomTrackView *) scene()->views()[0];
1735         if (view) view->slotAddEffect(e, m_info.startPos, track());
1736     }
1737     else return;
1738 }
1739
1740 //virtual
1741 void ClipItem::dragEnterEvent(QGraphicsSceneDragDropEvent *event)
1742 {
1743     if (isItemLocked()) event->setAccepted(false);
1744     else if (event->mimeData()->hasFormat("kdenlive/effectslist")) {
1745         event->acceptProposedAction();
1746     } else event->setAccepted(false);
1747 }
1748
1749 void ClipItem::dragLeaveEvent(QGraphicsSceneDragDropEvent *event)
1750 {
1751     Q_UNUSED(event)
1752 }
1753
1754 void ClipItem::addTransition(Transition* t)
1755 {
1756     m_transitionsList.append(t);
1757     //CustomTrackView *view = (CustomTrackView *) scene()->views()[0];
1758     QDomDocument doc;
1759     QDomElement e = doc.documentElement();
1760     //if (view) view->slotAddTransition(this, t->toXML() , t->startPos(), track());
1761 }
1762
1763 void ClipItem::setVideoOnly(bool force)
1764 {
1765     m_videoOnly = force;
1766 }
1767
1768 void ClipItem::setAudioOnly(bool force)
1769 {
1770     m_audioOnly = force;
1771     if (m_audioOnly) m_baseColor = QColor(141, 215, 166);
1772     else {
1773         if (m_clipType == COLOR) {
1774             QString colour = m_clip->getProperty("colour");
1775             colour = colour.replace(0, 2, "#");
1776             m_baseColor = QColor(colour.left(7));
1777         } else if (m_clipType == AUDIO) m_baseColor = QColor(141, 215, 166);
1778         else m_baseColor = QColor(141, 166, 215);
1779     }
1780     m_audioThumbCachePic.clear();
1781 }
1782
1783 bool ClipItem::isAudioOnly() const
1784 {
1785     return m_audioOnly;
1786 }
1787
1788 bool ClipItem::isVideoOnly() const
1789 {
1790     return m_videoOnly;
1791 }
1792
1793 void ClipItem::insertKeyframe(QDomElement effect, int pos, int val)
1794 {
1795     if (effect.attribute("disable") == "1") return;
1796     QLocale locale;
1797     effect.setAttribute("active_keyframe", pos);
1798     m_editedKeyframe = pos;
1799     QDomNodeList params = effect.elementsByTagName("parameter");
1800     for (int i = 0; i < params.count(); i++) {
1801         QDomElement e = params.item(i).toElement();
1802         if (!e.isNull() && (e.attribute("type") == "keyframe" || e.attribute("type") == "simplekeyframe")) {
1803             QString kfr = e.attribute("keyframes");
1804             const QStringList keyframes = kfr.split(';', QString::SkipEmptyParts);
1805             QStringList newkfr;
1806             bool added = false;
1807             foreach(const QString &str, keyframes) {
1808                 int kpos = str.section(':', 0, 0).toInt();
1809                 double newval = locale.toDouble(str.section(':', 1, 1));
1810                 if (kpos < pos) {
1811                     newkfr.append(str);
1812                 } else if (!added) {
1813                     if (i == m_visibleParam)
1814                         newkfr.append(QString::number(pos) + ':' + QString::number(val));
1815                     else
1816                         newkfr.append(QString::number(pos) + ':' + locale.toString(newval));
1817                     if (kpos > pos) newkfr.append(str);
1818                     added = true;
1819                 } else newkfr.append(str);
1820             }
1821             if (!added) {
1822                 if (i == m_visibleParam)
1823                     newkfr.append(QString::number(pos) + ':' + QString::number(val));
1824                 else
1825                     newkfr.append(QString::number(pos) + ':' + e.attribute("default"));
1826             }
1827             e.setAttribute("keyframes", newkfr.join(";"));
1828         }
1829     }
1830 }
1831
1832 void ClipItem::movedKeyframe(QDomElement effect, int oldpos, int newpos, double value)
1833 {
1834     if (effect.attribute("disable") == "1") return;
1835     QLocale locale;
1836     effect.setAttribute("active_keyframe", newpos);
1837     QDomNodeList params = effect.elementsByTagName("parameter");
1838     int start = cropStart().frames(m_fps);
1839     int end = (cropStart() + cropDuration()).frames(m_fps) - 1;
1840     for (int i = 0; i < params.count(); i++) {
1841         QDomElement e = params.item(i).toElement();
1842         if (!e.isNull() && (e.attribute("type") == "keyframe" || e.attribute("type") == "simplekeyframe")) {
1843             QString kfr = e.attribute("keyframes");
1844             const QStringList keyframes = kfr.split(';', QString::SkipEmptyParts);
1845             QStringList newkfr;
1846             foreach(const QString &str, keyframes) {
1847                 if (str.section(':', 0, 0).toInt() != oldpos) {
1848                     newkfr.append(str);
1849                 } else if (newpos != -1) {
1850                     newpos = qMax(newpos, start);
1851                     newpos = qMin(newpos, end);
1852                     if (i == m_visibleParam)
1853                         newkfr.append(QString::number(newpos) + ':' + locale.toString(value));
1854                     else
1855                         newkfr.append(QString::number(newpos) + ':' + str.section(':', 1, 1));
1856                 }
1857             }
1858             e.setAttribute("keyframes", newkfr.join(";"));
1859         }
1860     }
1861
1862     updateKeyframes(effect);
1863     update();
1864 }
1865
1866 void ClipItem::updateKeyframes(QDomElement effect)
1867 {
1868     m_keyframes.clear();
1869     QLocale locale;
1870     // parse keyframes
1871     QDomNodeList params = effect.elementsByTagName("parameter");
1872     QDomElement e = params.item(m_visibleParam).toElement();
1873     if (e.attribute("intimeline") != "1") {
1874         setSelectedEffect(m_selectedEffect);
1875         return;
1876     }
1877     m_limitedKeyFrames = e.attribute("type") == "keyframe";
1878     const QStringList keyframes = e.attribute("keyframes").split(';', QString::SkipEmptyParts);
1879     foreach(const QString &str, keyframes) {
1880         int pos = str.section(':', 0, 0).toInt();
1881         double val = locale.toDouble(str.section(':', 1, 1));
1882         m_keyframes[pos] = val;
1883     }
1884     if (!m_keyframes.contains(m_selectedKeyframe)) m_selectedKeyframe = -1;
1885 }
1886
1887 Mlt::Producer *ClipItem::getProducer(int track, bool trackSpecific)
1888 {
1889     if (isAudioOnly())
1890         return m_clip->audioProducer(track);
1891     else if (isVideoOnly())
1892         return m_clip->videoProducer(track);
1893     else
1894         return m_clip->getProducer(trackSpecific ? track : -1);
1895 }
1896
1897 QMap<int, QDomElement> ClipItem::adjustEffectsToDuration(int width, int height, ItemInfo oldInfo)
1898 {
1899     QMap<int, QDomElement> effects;
1900     for (int i = 0; i < m_effectList.count(); i++) {
1901         QDomElement effect = m_effectList.at(i);
1902
1903         if (effect.attribute("id").startsWith("fade")) {
1904             QString id = effect.attribute("id");
1905             int in = EffectsList::parameter(effect, "in").toInt();
1906             int out = EffectsList::parameter(effect, "out").toInt();
1907             int clipEnd = (cropStart() + cropDuration()).frames(m_fps) - 1;
1908             if (id == "fade_from_black" || id == "fadein") {
1909                 if (in != cropStart().frames(m_fps)) {
1910                     effects[i] = effect.cloneNode().toElement();
1911                     int duration = out - in;
1912                     in = cropStart().frames(m_fps);
1913                     out = in + duration;
1914                     EffectsList::setParameter(effect, "in", QString::number(in));
1915                     EffectsList::setParameter(effect, "out", QString::number(out));
1916                 }
1917                 if (out > clipEnd) {
1918                     if (!effects.contains(i))
1919                         effects[i] = effect.cloneNode().toElement();
1920                     EffectsList::setParameter(effect, "out", QString::number(clipEnd));
1921                 }
1922                 if (effects.contains(i))
1923                     setFadeIn(out - in);
1924             } else {
1925                 if (out != clipEnd) {
1926                     effects[i] = effect.cloneNode().toElement();
1927                     int diff = out - clipEnd;
1928                     in = qMax(in - diff, (int) cropStart().frames(m_fps));
1929                     out -= diff;
1930                     EffectsList::setParameter(effect, "in", QString::number(in));
1931                     EffectsList::setParameter(effect, "out", QString::number(out));
1932                 }
1933                 if (in < cropStart().frames(m_fps)) {
1934                     if (!effects.contains(i))
1935                         effects[i] = effect.cloneNode().toElement();
1936                     EffectsList::setParameter(effect, "in", QString::number(cropStart().frames(m_fps)));
1937                 }
1938                 if (effects.contains(i))
1939                     setFadeOut(out - in);
1940             }
1941             continue;
1942         } else if (effect.attribute("id") == "freeze" && cropStart() != oldInfo.cropStart) {
1943             effects[i] = effect.cloneNode().toElement();
1944             int diff = (oldInfo.cropStart - cropStart()).frames(m_fps);
1945             int frame = EffectsList::parameter(effect, "frame").toInt();
1946             EffectsList::setParameter(effect, "frame", QString::number(frame - diff));
1947             continue;
1948         } else if (effect.attribute("id") == "pan_zoom") {
1949             effect.setAttribute("in", cropStart().frames(m_fps));
1950             effect.setAttribute("out", (cropStart() + cropDuration()).frames(m_fps) - 1);
1951         }
1952
1953         QDomNodeList params = effect.elementsByTagName("parameter");
1954         for (int j = 0; j < params.count(); j++) {
1955             QDomElement param = params.item(j).toElement();
1956
1957             QString type = param.attribute("type");
1958             if (type == "geometry" && !param.hasAttribute("fixed")) {
1959                 if (!effects.contains(i))
1960                     effects[i] = effect.cloneNode().toElement();
1961                 updateGeometryKeyframes(effect, j, width, height, oldInfo);
1962             } else if (type == "simplekeyframe" || type == "keyframe") {
1963                 if (!effects.contains(i))
1964                     effects[i] = effect.cloneNode().toElement();
1965                 updateNormalKeyframes(param, oldInfo);
1966 #ifdef USE_QJSON
1967             } else if (type == "roto-spline") {
1968                 if (!effects.contains(i))
1969                     effects[i] = effect.cloneNode().toElement();
1970                 QString value = param.attribute("value");
1971                 if (adjustRotoDuration(&value, cropStart().frames(m_fps), (cropStart() + cropDuration()).frames(m_fps) - 1))
1972                     param.setAttribute("value", value);
1973 #endif    
1974             }
1975         }
1976     }
1977     return effects;
1978 }
1979
1980 bool ClipItem::updateNormalKeyframes(QDomElement parameter, ItemInfo oldInfo)
1981 {
1982     int in = cropStart().frames(m_fps);
1983     int out = (cropStart() + cropDuration()).frames(m_fps) - 1;
1984     int oldin = oldInfo.cropStart.frames(m_fps);
1985     QLocale locale;
1986     bool keyFrameUpdated = false;
1987
1988     const QStringList data = parameter.attribute("keyframes").split(';', QString::SkipEmptyParts);
1989     QMap <int, double> keyframes;
1990     foreach (QString keyframe, data) {
1991         int keyframepos = keyframe.section(':', 0, 0).toInt();
1992         // if keyframe was at clip start, update it
1993         if (keyframepos == oldin) {
1994             keyframepos = in;
1995             keyFrameUpdated = true;
1996         }
1997         keyframes[keyframepos] = locale.toDouble(keyframe.section(':', 1, 1));
1998     }
1999
2000
2001     QMap<int, double>::iterator i = keyframes.end();
2002     int lastPos = -1;
2003     double lastValue = 0;
2004     qreal relPos;
2005
2006     /*
2007      * Take care of resize from start
2008      */
2009     bool startFound = false;
2010     while (i-- != keyframes.begin()) {
2011         if (i.key() < in && !startFound) {
2012             startFound = true;
2013             if (lastPos < 0) {
2014                 keyframes[in] = i.value();
2015             } else {
2016                 relPos = (in - i.key()) / (qreal)(lastPos - i.key() + 1);
2017                 keyframes[in] = i.value() + (lastValue - i.value()) * relPos;
2018             }
2019         }
2020         lastPos = i.key();
2021         lastValue = i.value();
2022         if (startFound)
2023             i = keyframes.erase(i);
2024     }
2025
2026     /*
2027      * Take care of resize from end
2028      */
2029     i = keyframes.begin();
2030     lastPos = -1;
2031     bool endFound = false;
2032     while (i != keyframes.end()) {
2033         if (i.key() > out && !endFound) {
2034             endFound = true;
2035             if (lastPos < 0) {
2036                 keyframes[out] = i.value();
2037             } else {
2038                 relPos = (out - lastPos) / (qreal)(i.key() - lastPos + 1);
2039                 keyframes[out] = lastValue + (i.value() - lastValue) * relPos;
2040             }
2041          }
2042         lastPos = i.key();
2043         lastValue = i.value();
2044         if (endFound)
2045             i = keyframes.erase(i);
2046         else
2047             ++i;
2048     }
2049
2050     if (startFound || endFound || keyFrameUpdated) {
2051         QString newkfr;
2052         QMap<int, double>::const_iterator k = keyframes.constBegin();
2053         while (k != keyframes.constEnd()) {
2054             newkfr.append(QString::number(k.key()) + ':' + QString::number(qRound(k.value())) + ';');
2055             ++k;
2056         }
2057         parameter.setAttribute("keyframes", newkfr);
2058         return true;
2059     }
2060
2061     return false;
2062 }
2063
2064 void ClipItem::updateGeometryKeyframes(QDomElement effect, int paramIndex, int width, int height, ItemInfo oldInfo)
2065 {
2066     QDomElement param = effect.elementsByTagName("parameter").item(paramIndex).toElement();
2067     int offset = oldInfo.cropStart.frames(m_fps);
2068     QString data = param.attribute("value");
2069     if (offset > 0) {
2070         QStringList kfrs = data.split(';');
2071         data.clear();
2072         foreach (const QString &keyframe, kfrs) {
2073             if (keyframe.contains('=')) {
2074                 int pos = keyframe.section('=', 0, 0).toInt();
2075                 pos += offset;
2076                 data.append(QString::number(pos) + '=' + keyframe.section('=', 1) + ";");
2077             }
2078             else data.append(keyframe + ';');
2079         }
2080     }
2081     Mlt::Geometry geometry(data.toUtf8().data(), oldInfo.cropDuration.frames(m_fps), width, height);
2082     param.setAttribute("value", geometry.serialise(cropStart().frames(m_fps), (cropStart() + cropDuration()).frames(m_fps) - 1));
2083 }
2084
2085 void ClipItem::slotGotThumbsCache()
2086 {
2087     disconnect(m_clip->thumbProducer(), SIGNAL(thumbsCached()), this, SLOT(slotGotThumbsCache()));
2088     update();
2089 }
2090
2091
2092 #include "clipitem.moc"
2093