]> git.sesse.net Git - kdenlive/blob - src/clipitem.cpp
Scale audio / video thumbnails to track size. Requires slightly more resources but...
[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, int)) , this, SLOT(slotPrepareAudioThumb(double, int, 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, 3, 3);
798     painter->setRenderHints(QPainter::Antialiasing | QPainter::SmoothPixmapTransform, false);
799     painter->setClipPath(p.intersected(q));
800     painter->setPen(Qt::NoPen);
801     painter->fillRect(mappedExposed, paintColor);
802     painter->setPen(paintColor.darker());
803     // draw thumbnails
804     if (KdenliveSettings::videothumbnails() && !isAudioOnly()) {
805         QRectF thumbRect;
806         if ((m_clipType == IMAGE || m_clipType == TEXT) && !m_startPix.isNull()) {
807             if (thumbRect.isNull()) thumbRect = QRectF(0, 0, mapped.height() / m_startPix.height() * m_startPix.width(), mapped.height());
808             thumbRect.moveTopRight(mapped.topRight());
809             painter->drawPixmap(thumbRect, m_startPix, m_startPix.rect());
810             //const QPointF top = mapped.topRight() - QPointF(m_startPix.width() - 1, 0);
811             //painter->drawPixmap(top, m_startPix);
812             //QLineF l2(top.x(), mapped.top(), top.x(), mapped.bottom());
813             //painter->drawLine(l2);
814         } else if (!m_endPix.isNull()) {
815             if (thumbRect.isNull()) thumbRect = QRectF(0, 0, mapped.height() / m_endPix.height() * m_endPix.width(), mapped.height());
816             thumbRect.moveTopRight(mapped.topRight());
817             painter->drawPixmap(thumbRect, m_endPix, m_endPix.rect());
818             //const QPointF top = mapped.topRight() - QPointF(m_endPix.width() - 1, 0);
819             //painter->drawPixmap(top, m_endPix);
820             //QLineF l2(top.x(), mapped.top(), top.x(), mapped.bottom());
821             //painter->drawLine(l2);
822         }
823         if (!m_startPix.isNull()) {
824             if (thumbRect.isNull()) thumbRect = QRectF(0, 0, mapped.height() / m_startPix.height() * m_startPix.width(), mapped.height());
825             thumbRect.moveTopLeft(mapped.topLeft());
826             painter->drawPixmap(thumbRect, m_startPix, m_startPix.rect());
827             //painter->drawPixmap(mapped.topLeft(), m_startPix);
828             //QLineF l2(mapped.left() + m_startPix.width(), mapped.top(), mapped.left() + m_startPix.width(), mapped.bottom());
829             //painter->drawLine(l2);
830         }
831
832         // if we are in full zoom, paint thumbnail for every frame
833         if (m_clip->thumbProducer() && clipType() != COLOR && clipType() != AUDIO && !m_audioOnly && painter->worldTransform().m11() == FRAME_SIZE) {
834             int offset = (m_info.startPos - m_info.cropStart).frames(m_fps);
835             int left = qMax((int) m_info.cropStart.frames(m_fps) + 1, (int) mapToScene(exposed.left(), 0).x() - offset);
836             int right = qMin((int)(m_info.cropStart + m_info.cropDuration).frames(m_fps) - 1, (int) mapToScene(exposed.right(), 0).x() - offset);
837             QPointF startPos = mapped.topLeft();
838             int startOffset = m_info.cropStart.frames(m_fps);
839             if (clipType() == IMAGE || clipType() == TEXT) {
840                 for (int i = left; i <= right; i++) {
841                     painter->drawPixmap(startPos + QPointF(FRAME_SIZE *(i - startOffset), 0), m_startPix);
842                 }
843             }
844             else {
845 #if KDE_IS_VERSION(4,5,0)
846                 if (m_clip && m_clip->thumbProducer()) {
847                     QString path = m_clip->fileURL().path() + '_';
848                     QImage img;
849                     QPen pen(Qt::white);
850                     pen.setStyle(Qt::DotLine);
851                     QList <int> missing;
852                     for (int i = left; i <= right; i++) {
853                         img = m_clip->thumbProducer()->findCachedThumb(path + QString::number(i));
854                         QPointF xpos = startPos + QPointF(FRAME_SIZE *(i - startOffset), 0);
855                         if (img.isNull()) missing << i;
856                         else {
857                             painter->drawImage(xpos, img);
858                         }
859                         painter->drawLine(xpos, xpos + QPointF(0, mapped.height()));
860                     }
861                     if (!missing.isEmpty()) {
862                         m_clip->thumbProducer()->queryIntraThumbs(missing);
863                         connect(m_clip->thumbProducer(), SIGNAL(thumbsCached()), this, SLOT(slotGotThumbsCache()));
864                     }
865                 }
866 #endif
867             }
868         }
869     }
870     // draw audio thumbnails
871     if (KdenliveSettings::audiothumbnails() && m_speed == 1.0 && !isVideoOnly() && ((m_clipType == AV && (exposed.bottom() > (rect().height() / 2) || isAudioOnly())) || m_clipType == AUDIO) && m_audioThumbReady) {
872
873         double startpixel = exposed.left();
874         if (startpixel < 0)
875             startpixel = 0;
876         double endpixel = exposed.right();
877         if (endpixel < 0)
878             endpixel = 0;
879         //kDebug()<<"///  REPAINTING AUDIO THMBS ZONE: "<<startpixel<<"x"<<endpixel;
880
881         /*QPainterPath path = m_clipType == AV ? roundRectPathLower : resultClipPath;*/
882         QRectF mappedRect;
883         if (m_clipType == AV && !isAudioOnly()) {
884             mappedRect = mapped;
885             mappedRect.setTop(mappedRect.bottom() - mapped.height() / 2);
886         } else mappedRect = mapped;
887
888         double scale = painter->worldTransform().m11();
889         int channels = 0;
890         if (isEnabled() && m_clip) channels = m_clip->getProperty("channels").toInt();
891         if (scale != m_framePixelWidth)
892             m_audioThumbCachePic.clear();
893         double cropLeft = m_info.cropStart.frames(m_fps);
894         const int clipStart = mappedRect.x();
895         const int mappedStartPixel =  painter->worldTransform().map(QPointF(startpixel + cropLeft, 0)).x() - clipStart;
896         const int mappedEndPixel =  painter->worldTransform().map(QPointF(endpixel + cropLeft, 0)).x() - clipStart;
897         cropLeft = cropLeft * scale;
898
899         if (channels >= 1) {
900             emit prepareAudioThumb(scale, mappedStartPixel, mappedEndPixel, channels, (int) (mappedRect.height() + 0.5));
901         }
902         QRectF pixmapRect(0, mappedRect.y(), 100, mappedRect.height());
903         for (int startCache = mappedStartPixel - (mappedStartPixel) % 100; startCache < mappedEndPixel; startCache += 100) {
904             if (!m_audioThumbCachePic.value(startCache).isNull()) {
905                 //painter->drawPixmap(clipStart + startCache - cropLeft, mappedRect.y(),  m_audioThumbCachePic.value(startCache));
906                 QPixmap pix(m_audioThumbCachePic.value(startCache));
907                 pixmapRect.moveLeft(clipStart + startCache - cropLeft);
908                 painter->drawPixmap(pixmapRect,  pix, pix.rect());
909             }
910         }
911     }
912     
913     if (m_isMainSelectedClip) {
914         framePen.setColor(Qt::red);
915         textBgColor = Qt::red;
916     }
917
918     // only paint details if clip is big enough
919     if (mapped.width() > 20) {
920
921         // Draw effects names
922         if (!m_effectNames.isEmpty() && mapped.width() > 40) {
923             QRectF txtBounding = painter->boundingRect(mapped, Qt::AlignLeft | Qt::AlignTop, m_effectNames);
924             QColor bColor = palette.window().color();
925             QColor tColor = palette.text().color();
926             tColor.setAlpha(220);
927             if (m_timeLine && m_timeLine->state() == QTimeLine::Running) {
928                 qreal value = m_timeLine->currentValue();
929                 txtBounding.setWidth(txtBounding.width() * value);
930                 bColor.setAlpha(100 + 50 * value);
931             };
932
933             painter->setBrush(bColor);
934             painter->setPen(Qt::NoPen);
935             painter->drawRoundedRect(txtBounding.adjusted(-1, -2, 4, -1), 3, 3);
936             painter->setPen(tColor);
937             painter->drawText(txtBounding.adjusted(2, 0, 1, -1), Qt::AlignCenter, m_effectNames);
938         }
939
940         // Draw clip name
941         const QRectF txtBounding2 = painter->boundingRect(mapped, Qt::AlignRight | Qt::AlignTop, m_clipName + ' ').adjusted(0, -1, 0, -1);
942         painter->setPen(Qt::NoPen);
943         painter->fillRect(txtBounding2.adjusted(-3, 0, 0, 0), textBgColor);
944         painter->setBrush(QBrush(Qt::NoBrush));
945         painter->setPen(textColor);
946         if (m_videoOnly) {
947             painter->drawPixmap(txtBounding2.topLeft() - QPointF(17, -1), m_videoPix);
948         } else if (m_audioOnly) {
949             painter->drawPixmap(txtBounding2.topLeft() - QPointF(17, -1), m_audioPix);
950         }
951         painter->drawText(txtBounding2, Qt::AlignLeft, m_clipName);
952
953
954         // draw markers
955         if (isEnabled() && m_clip) {
956             QList < CommentedTime > markers = m_clip->commentedSnapMarkers();
957             QList < CommentedTime >::Iterator it = markers.begin();
958             GenTime pos;
959             double framepos;
960             QBrush markerBrush(QColor(120, 120, 0, 140));
961             QPen pen = painter->pen();
962
963             for (; it != markers.end(); ++it) {
964                 pos = GenTime((int)((*it).time().frames(m_fps) / qAbs(m_speed) + 0.5), m_fps) - cropStart();
965                 if (pos > GenTime()) {
966                     if (pos > cropDuration()) break;
967                     QLineF l(rect().x() + pos.frames(m_fps), rect().y(), rect().x() + pos.frames(m_fps), rect().bottom());
968                     QLineF l2 = painter->worldTransform().map(l);
969                     pen.setColor(CommentedTime::markerColor((*it).markerType()));
970                     pen.setStyle(Qt::DotLine);
971                     painter->setPen(pen);
972                     painter->drawLine(l2);
973                     if (KdenliveSettings::showmarkers()) {
974                         framepos = rect().x() + pos.frames(m_fps);
975                         const QRectF r1(framepos + 0.04, rect().height()/3, rect().width() - framepos - 2, rect().height() / 2);
976                         const QRectF r2 = painter->worldTransform().mapRect(r1);
977                         const QRectF txtBounding3 = painter->boundingRect(r2, Qt::AlignLeft | Qt::AlignTop, ' ' + (*it).comment() + ' ');
978                         painter->setBrush(markerBrush);
979                         pen.setStyle(Qt::SolidLine);
980                         painter->setPen(pen);
981                         painter->drawRect(txtBounding3);
982                         painter->setBrush(Qt::NoBrush);
983                         painter->setPen(Qt::white);
984                         painter->drawText(txtBounding3, Qt::AlignCenter, (*it).comment());
985                     }
986                     //painter->fillRect(QRect(br.x() + framepos, br.y(), 10, br.height()), QBrush(QColor(0, 0, 0, 150)));
987                 }
988             }
989         }
990
991         // draw start / end fades
992         QBrush fades;
993         if (isSelected()) {
994             fades = QBrush(QColor(200, 50, 50, 150));
995         } else fades = QBrush(QColor(200, 200, 200, 200));
996
997         if (m_startFade != 0) {
998             QPainterPath fadeInPath;
999             fadeInPath.moveTo(0, 0);
1000             fadeInPath.lineTo(0, rect().height());
1001             fadeInPath.lineTo(m_startFade, 0);
1002             fadeInPath.closeSubpath();
1003             QPainterPath f1 = painter->worldTransform().map(fadeInPath);
1004             painter->fillPath(f1/*.intersected(resultClipPath)*/, fades);
1005             /*if (isSelected()) {
1006                 QLineF l(m_startFade * scale, 0, 0, itemHeight);
1007                 painter->drawLine(l);
1008             }*/
1009         }
1010         if (m_endFade != 0) {
1011             QPainterPath fadeOutPath;
1012             fadeOutPath.moveTo(rect().width(), 0);
1013             fadeOutPath.lineTo(rect().width(), rect().height());
1014             fadeOutPath.lineTo(rect().width() - m_endFade, 0);
1015             fadeOutPath.closeSubpath();
1016             QPainterPath f1 = painter->worldTransform().map(fadeOutPath);
1017             painter->fillPath(f1/*.intersected(resultClipPath)*/, fades);
1018             /*if (isSelected()) {
1019                 QLineF l(itemWidth - m_endFade * scale, 0, itemWidth, itemHeight);
1020                 painter->drawLine(l);
1021             }*/
1022         }
1023
1024
1025         painter->setPen(QPen(Qt::lightGray));
1026         // draw effect or transition keyframes
1027         drawKeyFrames(painter, m_limitedKeyFrames);
1028     }
1029     
1030     // draw clip border
1031     // expand clip rect to allow correct painting of clip border
1032     painter->setClipping(false);
1033     painter->setRenderHint(QPainter::Antialiasing, true);
1034     framePen.setWidthF(1.5);
1035     painter->setPen(framePen);
1036     painter->drawRoundedRect(mapped.adjusted(0.5, 0, -0.5, 0), 3, 3);
1037 }
1038
1039
1040 OPERATIONTYPE ClipItem::operationMode(QPointF pos)
1041 {
1042     if (isItemLocked()) return NONE;
1043     const double scale = projectScene()->scale().x();
1044     double maximumOffset = 6 / scale;
1045     if (isSelected() || (parentItem() && parentItem()->isSelected())) {
1046         int kf = mouseOverKeyFrames(pos, maximumOffset);
1047         if (kf != -1) {
1048             m_editedKeyframe = kf;
1049             return KEYFRAME;
1050         }
1051     }
1052     QRectF rect = sceneBoundingRect();
1053     int addtransitionOffset = 10;
1054     // Don't allow add transition if track height is very small. No transitions for audio only clips
1055     if (rect.height() < 30 || isAudioOnly() || m_clipType == AUDIO) addtransitionOffset = 0;
1056
1057     if (qAbs((int)(pos.x() - (rect.x() + m_startFade))) < maximumOffset  && qAbs((int)(pos.y() - rect.y())) < 6) {
1058         return FADEIN;
1059     } else if ((pos.x() <= rect.x() + rect.width() / 2) && pos.x() - rect.x() < maximumOffset && (rect.bottom() - pos.y() > addtransitionOffset)) {
1060         return RESIZESTART;
1061     } else if (qAbs((int)(pos.x() - (rect.x() + rect.width() - m_endFade))) < maximumOffset && qAbs((int)(pos.y() - rect.y())) < 6) {
1062         return FADEOUT;
1063     } else if ((pos.x() >= rect.x() + rect.width() / 2) && (rect.right() - pos.x() < maximumOffset) && (rect.bottom() - pos.y() > addtransitionOffset)) {
1064         return RESIZEEND;
1065     } else if ((pos.x() - rect.x() < 16 / scale) && (rect.bottom() - pos.y() <= addtransitionOffset)) {
1066         return TRANSITIONSTART;
1067     } else if ((rect.right() - pos.x() < 16 / scale) && (rect.bottom() - pos.y() <= addtransitionOffset)) {
1068         return TRANSITIONEND;
1069     }
1070
1071     return MOVE;
1072 }
1073
1074 int ClipItem::itemHeight()
1075 {
1076     return KdenliveSettings::trackheight() - 2;
1077 }
1078
1079 void ClipItem::resetFrameWidth(int width)
1080 {
1081     FRAME_SIZE = width;
1082     update();
1083 }
1084
1085 QList <GenTime> ClipItem::snapMarkers() const
1086 {
1087     QList < GenTime > snaps;
1088     if (!m_clip) return snaps;
1089     QList < GenTime > markers = m_clip->snapMarkers();
1090     GenTime pos;
1091
1092     for (int i = 0; i < markers.size(); i++) {
1093         pos = GenTime((int)(markers.at(i).frames(m_fps) / qAbs(m_speed) + 0.5), m_fps) - cropStart();
1094         if (pos > GenTime()) {
1095             if (pos > cropDuration()) break;
1096             else snaps.append(pos + startPos());
1097         }
1098     }
1099     return snaps;
1100 }
1101
1102 QList <CommentedTime> ClipItem::commentedSnapMarkers() const
1103 {
1104     QList < CommentedTime > snaps;
1105     if (!m_clip) return snaps;
1106     QList < CommentedTime > markers = m_clip->commentedSnapMarkers();
1107     GenTime pos;
1108
1109     for (int i = 0; i < markers.size(); i++) {
1110         pos = GenTime((int)(markers.at(i).time().frames(m_fps) / qAbs(m_speed) + 0.5), m_fps) - cropStart();
1111         if (pos > GenTime()) {
1112             if (pos > cropDuration()) break;
1113             else snaps.append(CommentedTime(pos + startPos(), markers.at(i).comment(), markers.at(i).markerType()));
1114         }
1115     }
1116     return snaps;
1117 }
1118
1119 void ClipItem::slotPrepareAudioThumb(double pixelForOneFrame, int startpixel, int endpixel, int channels, int pixelHeight)
1120 {
1121     // Bail out, if caller provided invalid data
1122     if (channels <= 0) {
1123         kWarning() << "Unable to draw image with " << channels << "number of channels";
1124         return;
1125     }
1126     int factor = 64;
1127     if (KdenliveSettings::normaliseaudiothumbs()) {
1128         factor = m_clip->getProperty("audio_max").toInt();
1129     }
1130
1131     //kDebug() << "// PREP AUDIO THMB FRMO : scale:" << pixelForOneFrame<< ", from: " << startpixel << ", to: " << endpixel;
1132     //if ( (!audioThumbWasDrawn || framePixelWidth!=pixelForOneFrame ) && !baseClip()->audioFrameChache.isEmpty()){
1133     bool fullAreaDraw = pixelForOneFrame < 10;
1134     bool simplifiedAudio = !KdenliveSettings::displayallchannels();
1135     QPen audiopen;
1136     audiopen.setWidth(0);
1137     if (simplifiedAudio) channels = 1;
1138     int channelHeight = pixelHeight / channels;
1139     QMap<int, QPainterPath > positiveChannelPaths;
1140     QMap<int, QPainterPath > negativeChannelPaths;
1141
1142     for (int startCache = startpixel - startpixel % 100; startCache < endpixel; startCache += 100) {
1143         if (m_framePixelWidth == pixelForOneFrame && m_audioThumbCachePic.contains(startCache))
1144             continue;
1145         if (m_audioThumbCachePic.value(startCache).isNull() || m_framePixelWidth != pixelForOneFrame) {
1146             QPixmap pix(100, pixelHeight);
1147             pix.fill(QColor(180, 180, 180, 150));
1148             m_audioThumbCachePic[startCache] = pix;
1149         }
1150         positiveChannelPaths.clear();
1151         negativeChannelPaths.clear();
1152         
1153         QPainter pixpainter(&m_audioThumbCachePic[startCache]);
1154
1155         for (int i = 0; i < channels; i++) {
1156             if (simplifiedAudio) {
1157                 positiveChannelPaths[i].moveTo(-1, channelHeight);
1158             }
1159             else if (fullAreaDraw) {
1160                 positiveChannelPaths[i].moveTo(-1, channelHeight*i + channelHeight / 2);
1161                 negativeChannelPaths[i].moveTo(-1, channelHeight*i + channelHeight / 2);
1162             }
1163             else {
1164                 positiveChannelPaths[i].moveTo(-1, channelHeight*i + channelHeight / 2);
1165                 audiopen.setColor(QColor(60, 60, 60, 50));
1166                 pixpainter.setPen(audiopen);
1167                 pixpainter.drawLine(0, channelHeight*i + channelHeight / 2, 100, channelHeight*i + channelHeight / 2);
1168             }
1169         }
1170
1171         for (int samples = 0; samples <= 100; samples++) {
1172             double frame = (double)(samples + startCache - 0) / pixelForOneFrame;
1173             int sample = (int)((frame - (int)(frame)) * 20);   // AUDIO_FRAME_SIZE
1174             if (frame < 0 || sample < 0 || sample > 19)
1175                 continue;
1176             const QMap<int, QByteArray> frame_channel_data = baseClip()->audioFrameCache.value((int)frame);
1177
1178             for (int channel = 0; channel < channels && !frame_channel_data.value(channel).isEmpty(); channel++) {
1179                 int y = channelHeight * channel + channelHeight / 2;
1180                 if (simplifiedAudio) {
1181                     double delta = qAbs((frame_channel_data.value(channel).at(sample) - 63.5)  * channelHeight / factor);
1182                     positiveChannelPaths[channel].lineTo(samples, channelHeight - delta);
1183                 } else if (fullAreaDraw) {
1184                     double delta = qAbs((frame_channel_data.value(channel).at(sample) - 63.5)  * channelHeight / (2 * factor));
1185                     positiveChannelPaths[channel].lineTo(samples, y + delta);
1186                     negativeChannelPaths[channel].lineTo(samples, y - delta);
1187                 } else {
1188                     double delta = (frame_channel_data.value(channel).at(sample) - 63.5)  * channelHeight / (2 * factor);
1189                     positiveChannelPaths[channel].lineTo(samples, y + delta);
1190                 }
1191             }
1192         }
1193         for (int channel = 0; channel < channels; channel++) {
1194             if (simplifiedAudio) {
1195                 positiveChannelPaths[channel].lineTo(101, channelHeight);
1196             } else if (fullAreaDraw) {
1197                 int y = channelHeight * channel + channelHeight / 2;
1198                 positiveChannelPaths[channel].lineTo(101, y);
1199                 negativeChannelPaths[channel].lineTo(101, y);
1200             }
1201         }
1202         if (fullAreaDraw || simplifiedAudio) {
1203             audiopen.setColor(QColor(80, 80, 80, 200));
1204             pixpainter.setPen(audiopen);
1205             pixpainter.setBrush(QBrush(QColor(120, 120, 120, 200)));
1206         }
1207         else {
1208             audiopen.setColor(QColor(60, 60, 60, 100));
1209             pixpainter.setPen(audiopen);
1210             pixpainter.setBrush(Qt::NoBrush);
1211         }
1212         pixpainter.setRenderHint(QPainter::Antialiasing, false);
1213         for (int i = 0; i < channels; i++) {
1214             if (fullAreaDraw) {
1215                 pixpainter.drawPath(positiveChannelPaths[i].united(negativeChannelPaths.value(i)));
1216             } else
1217                 pixpainter.drawPath(positiveChannelPaths.value(i));
1218         }
1219     }
1220     m_framePixelWidth = pixelForOneFrame;
1221 }
1222
1223 int ClipItem::fadeIn() const
1224 {
1225     return m_startFade;
1226 }
1227
1228 int ClipItem::fadeOut() const
1229 {
1230     return m_endFade;
1231 }
1232
1233
1234 void ClipItem::setFadeIn(int pos)
1235 {
1236     if (pos == m_startFade) return;
1237     int oldIn = m_startFade;
1238     m_startFade = qBound(0, pos, (int)cropDuration().frames(m_fps));
1239     QRectF rect = boundingRect();
1240     update(rect.x(), rect.y(), qMax(oldIn, m_startFade), rect.height());
1241 }
1242
1243 void ClipItem::setFadeOut(int pos)
1244 {
1245     if (pos == m_endFade) return;
1246     int oldOut = m_endFade;
1247     m_endFade = qBound(0, pos, (int)cropDuration().frames(m_fps));
1248     QRectF rect = boundingRect();
1249     update(rect.x() + rect.width() - qMax(oldOut, m_endFade), rect.y(), qMax(oldOut, m_endFade), rect.height());
1250
1251 }
1252
1253 void ClipItem::setFades(int in, int out)
1254 {
1255     m_startFade = in;
1256     m_endFade = out;
1257 }
1258
1259 /*
1260 //virtual
1261 void ClipItem::hoverEnterEvent(QGraphicsSceneHoverEvent *e)
1262 {
1263     //if (e->pos().x() < 20) m_hover = true;
1264     return;
1265     if (isItemLocked()) return;
1266     m_hover = true;
1267     QRectF r = boundingRect();
1268     double width = 35 / projectScene()->scale().x();
1269     double height = r.height() / 2;
1270     //WARNING: seems like it generates a full repaint of the clip, maybe not so good...
1271     update(r.x(), r.y() + height, width, height);
1272     update(r.right() - width, r.y() + height, width, height);
1273 }
1274
1275 //virtual
1276 void ClipItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *)
1277 {
1278     if (isItemLocked()) return;
1279     m_hover = false;
1280     QRectF r = boundingRect();
1281     double width = 35 / projectScene()->scale().x();
1282     double height = r.height() / 2;
1283     //WARNING: seems like it generates a full repaint of the clip, maybe not so good...
1284     update(r.x(), r.y() + height, width, height);
1285     update(r.right() - width, r.y() + height, width, height);
1286 }
1287 */
1288
1289 void ClipItem::resizeStart(int posx, bool /*size*/, bool emitChange)
1290 {
1291     bool sizeLimit = false;
1292     if (clipType() != IMAGE && clipType() != COLOR && clipType() != TEXT) {
1293         const int min = (startPos() - cropStart()).frames(m_fps);
1294         if (posx < min) posx = min;
1295         sizeLimit = true;
1296     }
1297
1298     if (posx == startPos().frames(m_fps)) return;
1299     const int previous = cropStart().frames(m_fps);
1300     AbstractClipItem::resizeStart(posx, sizeLimit);
1301
1302     // set speed independant info
1303     m_speedIndependantInfo = m_info;
1304     m_speedIndependantInfo.cropStart = GenTime((int)(m_info.cropStart.frames(m_fps) * qAbs(m_speed)), m_fps);
1305     m_speedIndependantInfo.cropDuration = GenTime((int)(m_info.cropDuration.frames(m_fps) * qAbs(m_speed)), m_fps);
1306
1307     if ((int) cropStart().frames(m_fps) != previous) {
1308         if (m_hasThumbs && KdenliveSettings::videothumbnails()) {
1309             m_startThumbTimer.start(150);
1310         }
1311     }
1312     if (emitChange) slotUpdateRange();
1313 }
1314
1315 void ClipItem::slotUpdateRange()
1316 {
1317     if (m_isMainSelectedClip) emit updateRange();
1318 }
1319
1320 void ClipItem::resizeEnd(int posx, bool emitChange)
1321 {
1322     const int max = (startPos() - cropStart() + maxDuration()).frames(m_fps);
1323     if (posx > max && maxDuration() != GenTime()) posx = max;
1324     if (posx == endPos().frames(m_fps)) return;
1325     //kDebug() << "// NEW POS: " << posx << ", OLD END: " << endPos().frames(m_fps);
1326     const int previous = cropDuration().frames(m_fps);
1327     AbstractClipItem::resizeEnd(posx);
1328
1329     // set speed independant info
1330     m_speedIndependantInfo = m_info;
1331     m_speedIndependantInfo.cropStart = GenTime((int)(m_info.cropStart.frames(m_fps) * qAbs(m_speed)), m_fps);
1332     m_speedIndependantInfo.cropDuration = GenTime((int)(m_info.cropDuration.frames(m_fps) * qAbs(m_speed)), m_fps);
1333
1334     if ((int) cropDuration().frames(m_fps) != previous) {
1335         if (m_hasThumbs && KdenliveSettings::videothumbnails()) {
1336             m_endThumbTimer.start(150);
1337         }
1338     }
1339     if (emitChange) slotUpdateRange();
1340 }
1341
1342 //virtual
1343 QVariant ClipItem::itemChange(GraphicsItemChange change, const QVariant &value)
1344 {
1345     if (change == QGraphicsItem::ItemSelectedChange) {
1346         if (value.toBool()) setZValue(10);
1347         else setZValue(2);
1348     }
1349     if (change == ItemPositionChange && scene()) {
1350         // calculate new position.
1351         //if (parentItem()) return pos();
1352         QPointF newPos = value.toPointF();
1353         //kDebug() << "/// MOVING CLIP ITEM.------------\n++++++++++";
1354         int xpos = projectScene()->getSnapPointForPos((int) newPos.x(), KdenliveSettings::snaptopoints());
1355         xpos = qMax(xpos, 0);
1356         newPos.setX(xpos);
1357         // Warning: newPos gives a position relative to the click event, so hack to get absolute pos
1358         int yOffset = property("y_absolute").toInt() + newPos.y();
1359         int newTrack = yOffset / KdenliveSettings::trackheight();
1360         newTrack = qMin(newTrack, projectScene()->tracksCount() - 1);
1361         newTrack = qMax(newTrack, 0);
1362         QStringList lockedTracks = property("locked_tracks").toStringList();
1363         if (lockedTracks.contains(QString::number(newTrack))) {
1364             // Trying to move to a locked track
1365             return pos();
1366         }
1367         newPos.setY((int)(newTrack  * KdenliveSettings::trackheight() + 1));
1368         // Only one clip is moving
1369         QRectF sceneShape = rect();
1370         sceneShape.translate(newPos);
1371         QList<QGraphicsItem*> items;
1372         if (projectScene()->editMode() == NORMALEDIT)
1373             items = scene()->items(sceneShape, Qt::IntersectsItemShape);
1374         items.removeAll(this);
1375         bool forwardMove = newPos.x() > pos().x();
1376         int offset = 0;
1377         if (!items.isEmpty()) {
1378             for (int i = 0; i < items.count(); i++) {
1379                 if (!items.at(i)->isEnabled()) continue;
1380                 if (items.at(i)->type() == type()) {
1381                     // Collision!
1382                     QPointF otherPos = items.at(i)->pos();
1383                     if ((int) otherPos.y() != (int) pos().y()) {
1384                         return pos();
1385                     }
1386                     if (forwardMove) {
1387                         offset = qMax(offset, (int)(newPos.x() - (static_cast < AbstractClipItem* >(items.at(i))->startPos() - cropDuration()).frames(m_fps)));
1388                     } else {
1389                         offset = qMax(offset, (int)((static_cast < AbstractClipItem* >(items.at(i))->endPos().frames(m_fps)) - newPos.x()));
1390                     }
1391
1392                     if (offset > 0) {
1393                         if (forwardMove) {
1394                             sceneShape.translate(QPointF(-offset, 0));
1395                             newPos.setX(newPos.x() - offset);
1396                         } else {
1397                             sceneShape.translate(QPointF(offset, 0));
1398                             newPos.setX(newPos.x() + offset);
1399                         }
1400                         QList<QGraphicsItem*> subitems = scene()->items(sceneShape, Qt::IntersectsItemShape);
1401                         subitems.removeAll(this);
1402                         for (int j = 0; j < subitems.count(); j++) {
1403                             if (!subitems.at(j)->isEnabled()) continue;
1404                             if (subitems.at(j)->type() == type()) {
1405                                 // move was not successful, revert to previous pos
1406                                 m_info.startPos = GenTime((int) pos().x(), m_fps);
1407                                 return pos();
1408                             }
1409                         }
1410                     }
1411
1412                     m_info.track = newTrack;
1413                     m_info.startPos = GenTime((int) newPos.x(), m_fps);
1414
1415                     return newPos;
1416                 }
1417             }
1418         }
1419         m_info.track = newTrack;
1420         m_info.startPos = GenTime((int) newPos.x(), m_fps);
1421         //kDebug()<<"// ITEM NEW POS: "<<newPos.x()<<", mapped: "<<mapToScene(newPos.x(), 0).x();
1422         return newPos;
1423     }
1424     return QGraphicsItem::itemChange(change, value);
1425 }
1426
1427 // virtual
1428 /*void ClipItem::mouseMoveEvent(QGraphicsSceneMouseEvent * event) {
1429 }*/
1430
1431 int ClipItem::effectsCounter()
1432 {
1433     return effectsCount() + 1;
1434 }
1435
1436 int ClipItem::effectsCount()
1437 {
1438     return m_effectList.count();
1439 }
1440
1441 int ClipItem::hasEffect(const QString &tag, const QString &id) const
1442 {
1443     return m_effectList.hasEffect(tag, id);
1444 }
1445
1446 QStringList ClipItem::effectNames()
1447 {
1448     return m_effectList.effectNames();
1449 }
1450
1451 QDomElement ClipItem::effect(int ix) const
1452 {
1453     if (ix >= m_effectList.count() || ix < 0) return QDomElement();
1454     return m_effectList.at(ix).cloneNode().toElement();
1455 }
1456
1457 QDomElement ClipItem::effectAtIndex(int ix) const
1458 {
1459     if (ix > m_effectList.count() || ix <= 0) return QDomElement();
1460     return m_effectList.itemFromIndex(ix).cloneNode().toElement();
1461 }
1462
1463 QDomElement ClipItem::getEffectAtIndex(int ix) const
1464 {
1465     if (ix > m_effectList.count() || ix <= 0) return QDomElement();
1466     return m_effectList.itemFromIndex(ix);
1467 }
1468
1469 void ClipItem::updateEffect(QDomElement effect)
1470 {
1471     //kDebug() << "CHange EFFECT AT: " << ix << ", CURR: " << m_effectList.at(ix).attribute("tag") << ", NEW: " << effect.attribute("tag");
1472     m_effectList.updateEffect(effect);
1473     m_effectNames = m_effectList.effectNames().join(" / ");
1474     QString id = effect.attribute("id");
1475     if (id == "fadein" || id == "fadeout" || id == "fade_from_black" || id == "fade_to_black")
1476         update();
1477     else {
1478         QRectF r = boundingRect();
1479         r.setHeight(20);
1480         update(r);
1481     }
1482 }
1483
1484 void ClipItem::enableEffects(QList <int> indexes, bool disable)
1485 {
1486     m_effectList.enableEffects(indexes, disable);
1487 }
1488
1489 bool ClipItem::moveEffect(QDomElement effect, int ix)
1490 {
1491     if (ix <= 0 || ix > (m_effectList.count()) || effect.isNull()) {
1492         kDebug() << "Invalid effect index: " << ix;
1493         return false;
1494     }
1495     m_effectList.removeAt(effect.attribute("kdenlive_ix").toInt());
1496     effect.setAttribute("kdenlive_ix", ix);
1497     m_effectList.insert(effect);
1498     m_effectNames = m_effectList.effectNames().join(" / ");
1499     QString id = effect.attribute("id");
1500     if (id == "fadein" || id == "fadeout" || id == "fade_from_black" || id == "fade_to_black")
1501         update();
1502     else {
1503         QRectF r = boundingRect();
1504         r.setHeight(20);
1505         update(r);
1506     }
1507     return true;
1508 }
1509
1510 EffectsParameterList ClipItem::addEffect(QDomElement effect, bool /*animate*/)
1511 {
1512     bool needRepaint = false;
1513     QLocale locale;
1514     int ix;
1515     QDomElement insertedEffect;
1516     if (!effect.hasAttribute("kdenlive_ix")) {
1517         // effect dropped from effect list
1518         ix = effectsCounter();
1519     } else ix = effect.attribute("kdenlive_ix").toInt();
1520     if (!m_effectList.isEmpty() && ix <= m_effectList.count()) {
1521         needRepaint = true;
1522         insertedEffect = m_effectList.insert(effect);
1523     } else insertedEffect = m_effectList.append(effect);
1524     
1525     // Update index to the real one
1526     effect.setAttribute("kdenlive_ix", insertedEffect.attribute("kdenlive_ix"));
1527     int effectIn;
1528     int effectOut;
1529
1530     if (effect.attribute("tag") == "affine") {
1531         // special case: the affine effect needs in / out points
1532         effectIn = effect.attribute("in").toInt();
1533         effectOut = effect.attribute("out").toInt();
1534     }
1535     else {
1536         effectIn = EffectsList::parameter(effect, "in").toInt();
1537         effectOut = EffectsList::parameter(effect, "out").toInt();
1538     }
1539     
1540     EffectsParameterList parameters;
1541     parameters.addParam("tag", insertedEffect.attribute("tag"));
1542     parameters.addParam("kdenlive_ix", insertedEffect.attribute("kdenlive_ix"));
1543     if (insertedEffect.hasAttribute("src")) parameters.addParam("src", insertedEffect.attribute("src"));
1544     if (insertedEffect.hasAttribute("disable")) parameters.addParam("disable", insertedEffect.attribute("disable"));
1545
1546     QString effectId = insertedEffect.attribute("id");
1547     if (effectId.isEmpty()) effectId = insertedEffect.attribute("tag");
1548     parameters.addParam("id", effectId);
1549
1550     QDomNodeList params = insertedEffect.elementsByTagName("parameter");
1551     int fade = 0;
1552     bool needInOutSync = false;
1553
1554     // check if it is a fade effect
1555     if (effectId == "fadein") {
1556         needRepaint = true;
1557         if (m_effectList.hasEffect(QString(), "fade_from_black") == -1) {
1558             fade = effectOut - effectIn;
1559         }/* else {
1560             QDomElement fadein = m_effectList.getEffectByTag(QString(), "fade_from_black");
1561             if (fadein.attribute("name") == "out") fade += fadein.attribute("value").toInt();
1562             else if (fadein.attribute("name") == "in") fade -= fadein.attribute("value").toInt();
1563         }*/
1564     } else if (effectId == "fade_from_black") {
1565         needRepaint = true;
1566         if (m_effectList.hasEffect(QString(), "fadein") == -1) {
1567             fade = effectOut - effectIn;
1568         }/* else {
1569             QDomElement fadein = m_effectList.getEffectByTag(QString(), "fadein");
1570             if (fadein.attribute("name") == "out") fade += fadein.attribute("value").toInt();
1571             else if (fadein.attribute("name") == "in") fade -= fadein.attribute("value").toInt();
1572         }*/
1573      } else if (effectId == "fadeout") {
1574         needRepaint = true;
1575         if (m_effectList.hasEffect(QString(), "fade_to_black") == -1) {
1576             fade = effectIn - effectOut;
1577         } /*else {
1578             QDomElement fadeout = m_effectList.getEffectByTag(QString(), "fade_to_black");
1579             if (fadeout.attribute("name") == "out") fade -= fadeout.attribute("value").toInt();
1580             else if (fadeout.attribute("name") == "in") fade += fadeout.attribute("value").toInt();
1581         }*/
1582     } else if (effectId == "fade_to_black") {
1583         needRepaint = true;
1584         if (m_effectList.hasEffect(QString(), "fadeout") == -1) {
1585             fade = effectIn - effectOut;
1586         }/* else {
1587             QDomElement fadeout = m_effectList.getEffectByTag(QString(), "fadeout");
1588             if (fadeout.attribute("name") == "out") fade -= fadeout.attribute("value").toInt();
1589             else if (fadeout.attribute("name") == "in") fade += fadeout.attribute("value").toInt();
1590         }*/
1591     }
1592
1593     for (int i = 0; i < params.count(); i++) {
1594         QDomElement e = params.item(i).toElement();
1595         if (!e.isNull()) {
1596             if (e.attribute("type") == "geometry" && !e.hasAttribute("fixed")) {
1597                 // Effects with a geometry parameter need to sync in / out with parent clip
1598                 needInOutSync = true;
1599             }
1600             if (e.attribute("type") == "simplekeyframe") {
1601                 QStringList values = e.attribute("keyframes").split(';', QString::SkipEmptyParts);
1602                 double factor = locale.toDouble(e.attribute("factor", "1"));
1603                 double offset = e.attribute("offset", "0").toDouble();
1604                 if (factor != 1 || offset != 0) {
1605                     for (int j = 0; j < values.count(); j++) {
1606                         QString pos = values.at(j).section(':', 0, 0);
1607                         double val = (locale.toDouble(values.at(j).section(':', 1, 1)) - offset) / factor;
1608                         values[j] = pos + '=' + locale.toString(val);
1609                     }
1610                 }
1611                 parameters.addParam(e.attribute("name"), values.join(";"));
1612                 /*parameters.addParam("max", e.attribute("max"));
1613                 parameters.addParam("min", e.attribute("min"));
1614                 parameters.addParam("factor", );*/
1615             } else if (e.attribute("type") == "keyframe") {
1616                 parameters.addParam("keyframes", e.attribute("keyframes"));
1617                 parameters.addParam("max", e.attribute("max"));
1618                 parameters.addParam("min", e.attribute("min"));
1619                 parameters.addParam("factor", e.attribute("factor", "1"));
1620                 parameters.addParam("offset", e.attribute("offset", "0"));
1621                 parameters.addParam("starttag", e.attribute("starttag", "start"));
1622                 parameters.addParam("endtag", e.attribute("endtag", "end"));
1623             } else if (e.attribute("factor", "1") == "1" && e.attribute("offset", "0") == "0") {
1624                 parameters.addParam(e.attribute("name"), e.attribute("value"));
1625
1626             } else {
1627                 double fact;
1628                 if (e.attribute("factor").contains('%')) {
1629                     fact = ProfilesDialog::getStringEval(projectScene()->profile(), e.attribute("factor"));
1630                 } else {
1631                     fact = locale.toDouble(e.attribute("factor", "1"));
1632                 }
1633                 double offset = e.attribute("offset", "0").toDouble();
1634                 parameters.addParam(e.attribute("name"), locale.toString((locale.toDouble(e.attribute("value")) - offset) / fact));
1635             }
1636         }
1637     }
1638     if (needInOutSync) {
1639         parameters.addParam("in", QString::number(cropStart().frames(m_fps)));
1640         parameters.addParam("out", QString::number((cropStart() + cropDuration()).frames(m_fps) - 1));
1641         parameters.addParam("_sync_in_out", "1");
1642     }
1643     m_effectNames = m_effectList.effectNames().join(" / ");
1644     if (fade > 0) m_startFade = fade;
1645     else if (fade < 0) m_endFade = -fade;
1646
1647     if (m_selectedEffect == -1) {
1648         setSelectedEffect(0);
1649     } else if (m_selectedEffect == ix - 1) setSelectedEffect(m_selectedEffect);
1650     if (needRepaint) update(boundingRect());
1651     /*if (animate) {
1652         flashClip();
1653     } */
1654     else { /*if (!needRepaint) */
1655         QRectF r = boundingRect();
1656         r.setHeight(20);
1657         update(r);
1658     }
1659     return parameters;
1660 }
1661
1662 void ClipItem::deleteEffect(QString index)
1663 {
1664     bool needRepaint = false;
1665     int ix = index.toInt();
1666
1667     QDomElement effect = m_effectList.itemFromIndex(ix);
1668     QString effectId = effect.attribute("id");
1669     if ((effectId == "fadein" && hasEffect(QString(), "fade_from_black") == -1) ||
1670         (effectId == "fade_from_black" && hasEffect(QString(), "fadein") == -1)) {
1671         m_startFade = 0;
1672         needRepaint = true;
1673     } else if ((effectId == "fadeout" && hasEffect(QString(), "fade_to_black") == -1) ||
1674         (effectId == "fade_to_black" && hasEffect(QString(), "fadeout") == -1)) {
1675         m_endFade = 0;
1676         needRepaint = true;
1677     } else if (EffectsList::hasKeyFrames(effect)) needRepaint = true;
1678     m_effectList.removeAt(ix);
1679     m_effectNames = m_effectList.effectNames().join(" / ");
1680
1681     if (m_effectList.isEmpty() || m_selectedEffect == ix) {
1682         // Current effect was removed
1683         if (ix > m_effectList.count()) {
1684             setSelectedEffect(m_effectList.count());
1685         } else setSelectedEffect(ix);
1686     }
1687     if (needRepaint) update(boundingRect());
1688     else {
1689         QRectF r = boundingRect();
1690         r.setHeight(20);
1691         update(r);
1692     }
1693     //if (!m_effectList.isEmpty()) flashClip();
1694 }
1695
1696 double ClipItem::speed() const
1697 {
1698     return m_speed;
1699 }
1700
1701 int ClipItem::strobe() const
1702 {
1703     return m_strobe;
1704 }
1705
1706 void ClipItem::setSpeed(const double speed, const int strobe)
1707 {
1708     m_speed = speed;
1709     if (m_speed <= 0 && m_speed > -1)
1710         m_speed = -1.0;
1711     m_strobe = strobe;
1712     if (m_speed == 1.0) m_clipName = m_clip->name();
1713     else m_clipName = m_clip->name() + " - " + QString::number(speed * 100, 'f', 0) + '%';
1714     m_info.cropStart = GenTime((int)(m_speedIndependantInfo.cropStart.frames(m_fps) / qAbs(m_speed) + 0.5), m_fps);
1715     m_info.cropDuration = GenTime((int)(m_speedIndependantInfo.cropDuration.frames(m_fps) / qAbs(m_speed) + 0.5), m_fps);
1716     //update();
1717 }
1718
1719 GenTime ClipItem::maxDuration() const
1720 {
1721     return GenTime((int)(m_maxDuration.frames(m_fps) / qAbs(m_speed) + 0.5), m_fps);
1722 }
1723
1724 GenTime ClipItem::speedIndependantCropStart() const
1725 {
1726     return m_speedIndependantInfo.cropStart;
1727 }
1728
1729 GenTime ClipItem::speedIndependantCropDuration() const
1730 {
1731     return m_speedIndependantInfo.cropDuration;
1732 }
1733
1734
1735 const ItemInfo ClipItem::speedIndependantInfo() const
1736 {
1737     return m_speedIndependantInfo;
1738 }
1739
1740 int ClipItem::nextFreeEffectGroupIndex() const
1741 {
1742     int freeGroupIndex = 0;
1743     for (int i = 0; i < m_effectList.count(); i++) {
1744         QDomElement effect = m_effectList.at(i);
1745         EffectInfo effectInfo;
1746         effectInfo.fromString(effect.attribute("kdenlive_info"));
1747         if (effectInfo.groupIndex >= freeGroupIndex) {
1748             freeGroupIndex = effectInfo.groupIndex + 1;
1749         }
1750     }
1751     return freeGroupIndex;
1752 }
1753
1754 //virtual
1755 void ClipItem::dropEvent(QGraphicsSceneDragDropEvent * event)
1756 {
1757     if (event->proposedAction() == Qt::CopyAction && scene() && !scene()->views().isEmpty()) {
1758         const QString effects = QString::fromUtf8(event->mimeData()->data("kdenlive/effectslist"));
1759         event->acceptProposedAction();
1760         QDomDocument doc;
1761         doc.setContent(effects, true);
1762         QDomElement e = doc.documentElement();
1763         if (e.tagName() == "effectgroup") {
1764             // dropped an effect group
1765             QDomNodeList effectlist = e.elementsByTagName("effect");
1766             int freeGroupIndex = nextFreeEffectGroupIndex();
1767             EffectInfo effectInfo;
1768             for (int i = 0; i < effectlist.count(); i++) {
1769                 QDomElement effect = effectlist.at(i).toElement();
1770                 effectInfo.fromString(effect.attribute("kdenlive_info"));
1771                 effectInfo.groupIndex = freeGroupIndex;
1772                 effect.setAttribute("kdenlive_info", effectInfo.toString());
1773                 effect.removeAttribute("kdenlive_ix");
1774             }
1775         } else {
1776             // single effect dropped
1777             e.removeAttribute("kdenlive_ix");
1778         }
1779         CustomTrackView *view = (CustomTrackView *) scene()->views()[0];
1780         if (view) view->slotAddEffect(e, m_info.startPos, track());
1781     }
1782     else return;
1783 }
1784
1785 //virtual
1786 void ClipItem::dragEnterEvent(QGraphicsSceneDragDropEvent *event)
1787 {
1788     if (isItemLocked()) event->setAccepted(false);
1789     else if (event->mimeData()->hasFormat("kdenlive/effectslist")) {
1790         event->acceptProposedAction();
1791     } else event->setAccepted(false);
1792 }
1793
1794 void ClipItem::dragLeaveEvent(QGraphicsSceneDragDropEvent *event)
1795 {
1796     Q_UNUSED(event)
1797 }
1798
1799 void ClipItem::addTransition(Transition* t)
1800 {
1801     m_transitionsList.append(t);
1802     //CustomTrackView *view = (CustomTrackView *) scene()->views()[0];
1803     QDomDocument doc;
1804     QDomElement e = doc.documentElement();
1805     //if (view) view->slotAddTransition(this, t->toXML() , t->startPos(), track());
1806 }
1807
1808 void ClipItem::setVideoOnly(bool force)
1809 {
1810     m_videoOnly = force;
1811 }
1812
1813 void ClipItem::setAudioOnly(bool force)
1814 {
1815     m_audioOnly = force;
1816     if (m_audioOnly) m_baseColor = QColor(141, 215, 166);
1817     else {
1818         if (m_clipType == COLOR) {
1819             QString colour = m_clip->getProperty("colour");
1820             colour = colour.replace(0, 2, "#");
1821             m_baseColor = QColor(colour.left(7));
1822         } else if (m_clipType == AUDIO) m_baseColor = QColor(141, 215, 166);
1823         else m_baseColor = QColor(141, 166, 215);
1824     }
1825     m_audioThumbCachePic.clear();
1826 }
1827
1828 bool ClipItem::isAudioOnly() const
1829 {
1830     return m_audioOnly;
1831 }
1832
1833 bool ClipItem::isVideoOnly() const
1834 {
1835     return m_videoOnly;
1836 }
1837
1838 void ClipItem::insertKeyframe(QDomElement effect, int pos, int val)
1839 {
1840     if (effect.attribute("disable") == "1") return;
1841     QLocale locale;
1842     effect.setAttribute("active_keyframe", pos);
1843     m_editedKeyframe = pos;
1844     QDomNodeList params = effect.elementsByTagName("parameter");
1845     for (int i = 0; i < params.count(); i++) {
1846         QDomElement e = params.item(i).toElement();
1847         if (!e.isNull() && (e.attribute("type") == "keyframe" || e.attribute("type") == "simplekeyframe")) {
1848             QString kfr = e.attribute("keyframes");
1849             const QStringList keyframes = kfr.split(';', QString::SkipEmptyParts);
1850             QStringList newkfr;
1851             bool added = false;
1852             foreach(const QString &str, keyframes) {
1853                 int kpos = str.section(':', 0, 0).toInt();
1854                 double newval = locale.toDouble(str.section(':', 1, 1));
1855                 if (kpos < pos) {
1856                     newkfr.append(str);
1857                 } else if (!added) {
1858                     if (i == m_visibleParam)
1859                         newkfr.append(QString::number(pos) + ':' + QString::number(val));
1860                     else
1861                         newkfr.append(QString::number(pos) + ':' + locale.toString(newval));
1862                     if (kpos > pos) newkfr.append(str);
1863                     added = true;
1864                 } else newkfr.append(str);
1865             }
1866             if (!added) {
1867                 if (i == m_visibleParam)
1868                     newkfr.append(QString::number(pos) + ':' + QString::number(val));
1869                 else
1870                     newkfr.append(QString::number(pos) + ':' + e.attribute("default"));
1871             }
1872             e.setAttribute("keyframes", newkfr.join(";"));
1873         }
1874     }
1875 }
1876
1877 void ClipItem::movedKeyframe(QDomElement effect, int oldpos, int newpos, double value)
1878 {
1879     if (effect.attribute("disable") == "1") return;
1880     QLocale locale;
1881     effect.setAttribute("active_keyframe", newpos);
1882     QDomNodeList params = effect.elementsByTagName("parameter");
1883     int start = cropStart().frames(m_fps);
1884     int end = (cropStart() + cropDuration()).frames(m_fps) - 1;
1885     for (int i = 0; i < params.count(); i++) {
1886         QDomElement e = params.item(i).toElement();
1887         if (!e.isNull() && (e.attribute("type") == "keyframe" || e.attribute("type") == "simplekeyframe")) {
1888             QString kfr = e.attribute("keyframes");
1889             const QStringList keyframes = kfr.split(';', QString::SkipEmptyParts);
1890             QStringList newkfr;
1891             foreach(const QString &str, keyframes) {
1892                 if (str.section(':', 0, 0).toInt() != oldpos) {
1893                     newkfr.append(str);
1894                 } else if (newpos != -1) {
1895                     newpos = qMax(newpos, start);
1896                     newpos = qMin(newpos, end);
1897                     if (i == m_visibleParam)
1898                         newkfr.append(QString::number(newpos) + ':' + locale.toString(value));
1899                     else
1900                         newkfr.append(QString::number(newpos) + ':' + str.section(':', 1, 1));
1901                 }
1902             }
1903             e.setAttribute("keyframes", newkfr.join(";"));
1904         }
1905     }
1906
1907     updateKeyframes(effect);
1908     update();
1909 }
1910
1911 void ClipItem::updateKeyframes(QDomElement effect)
1912 {
1913     m_keyframes.clear();
1914     QLocale locale;
1915     // parse keyframes
1916     QDomNodeList params = effect.elementsByTagName("parameter");
1917     QDomElement e = params.item(m_visibleParam).toElement();
1918     if (e.attribute("intimeline") != "1") {
1919         setSelectedEffect(m_selectedEffect);
1920         return;
1921     }
1922     m_limitedKeyFrames = e.attribute("type") == "keyframe";
1923     const QStringList keyframes = e.attribute("keyframes").split(';', QString::SkipEmptyParts);
1924     foreach(const QString &str, keyframes) {
1925         int pos = str.section(':', 0, 0).toInt();
1926         double val = locale.toDouble(str.section(':', 1, 1));
1927         m_keyframes[pos] = val;
1928     }
1929     if (!m_keyframes.contains(m_selectedKeyframe)) m_selectedKeyframe = -1;
1930 }
1931
1932 Mlt::Producer *ClipItem::getProducer(int track, bool trackSpecific)
1933 {
1934     if (isAudioOnly())
1935         return m_clip->audioProducer(track);
1936     else if (isVideoOnly())
1937         return m_clip->videoProducer(track);
1938     else
1939         return m_clip->getProducer(trackSpecific ? track : -1);
1940 }
1941
1942 QMap<int, QDomElement> ClipItem::adjustEffectsToDuration(int width, int height, ItemInfo oldInfo)
1943 {
1944     QMap<int, QDomElement> effects;
1945     for (int i = 0; i < m_effectList.count(); i++) {
1946         QDomElement effect = m_effectList.at(i);
1947
1948         if (effect.attribute("id").startsWith("fade")) {
1949             QString id = effect.attribute("id");
1950             int in = EffectsList::parameter(effect, "in").toInt();
1951             int out = EffectsList::parameter(effect, "out").toInt();
1952             int clipEnd = (cropStart() + cropDuration()).frames(m_fps) - 1;
1953             if (id == "fade_from_black" || id == "fadein") {
1954                 if (in != cropStart().frames(m_fps)) {
1955                     effects[i] = effect.cloneNode().toElement();
1956                     int duration = out - in;
1957                     in = cropStart().frames(m_fps);
1958                     out = in + duration;
1959                     EffectsList::setParameter(effect, "in", QString::number(in));
1960                     EffectsList::setParameter(effect, "out", QString::number(out));
1961                 }
1962                 if (out > clipEnd) {
1963                     if (!effects.contains(i))
1964                         effects[i] = effect.cloneNode().toElement();
1965                     EffectsList::setParameter(effect, "out", QString::number(clipEnd));
1966                 }
1967                 if (effects.contains(i)) {
1968                     setFadeIn(out - in);
1969                 }
1970             } else {
1971                 if (out != clipEnd) {
1972                     effects[i] = effect.cloneNode().toElement();
1973                     int diff = out - clipEnd;
1974                     in = qMax(in - diff, (int) cropStart().frames(m_fps));
1975                     out -= diff;
1976                     EffectsList::setParameter(effect, "in", QString::number(in));
1977                     EffectsList::setParameter(effect, "out", QString::number(out));
1978                 }
1979                 if (in < cropStart().frames(m_fps)) {
1980                     if (!effects.contains(i))
1981                         effects[i] = effect.cloneNode().toElement();
1982                     EffectsList::setParameter(effect, "in", QString::number(cropStart().frames(m_fps)));
1983                 }
1984                 if (effects.contains(i))
1985                     setFadeOut(out - in);
1986             }
1987             continue;
1988         } else if (effect.attribute("id") == "freeze" && cropStart() != oldInfo.cropStart) {
1989             effects[i] = effect.cloneNode().toElement();
1990             int diff = (oldInfo.cropStart - cropStart()).frames(m_fps);
1991             int frame = EffectsList::parameter(effect, "frame").toInt();
1992             EffectsList::setParameter(effect, "frame", QString::number(frame - diff));
1993             continue;
1994         } else if (effect.attribute("id") == "pan_zoom") {
1995             effect.setAttribute("in", cropStart().frames(m_fps));
1996             effect.setAttribute("out", (cropStart() + cropDuration()).frames(m_fps) - 1);
1997         }
1998
1999         QDomNodeList params = effect.elementsByTagName("parameter");
2000         for (int j = 0; j < params.count(); j++) {
2001             QDomElement param = params.item(j).toElement();
2002
2003             QString type = param.attribute("type");
2004             if (type == "geometry" && !param.hasAttribute("fixed")) {
2005                 if (!effects.contains(i))
2006                     effects[i] = effect.cloneNode().toElement();
2007                 updateGeometryKeyframes(effect, j, width, height, oldInfo);
2008             } else if (type == "simplekeyframe" || type == "keyframe") {
2009                 if (!effects.contains(i))
2010                     effects[i] = effect.cloneNode().toElement();
2011                 updateNormalKeyframes(param, oldInfo);
2012 #ifdef USE_QJSON
2013             } else if (type == "roto-spline") {
2014                 if (!effects.contains(i))
2015                     effects[i] = effect.cloneNode().toElement();
2016                 QString value = param.attribute("value");
2017                 if (adjustRotoDuration(&value, cropStart().frames(m_fps), (cropStart() + cropDuration()).frames(m_fps) - 1))
2018                     param.setAttribute("value", value);
2019 #endif    
2020             }
2021         }
2022     }
2023     return effects;
2024 }
2025
2026 bool ClipItem::updateNormalKeyframes(QDomElement parameter, ItemInfo oldInfo)
2027 {
2028     int in = cropStart().frames(m_fps);
2029     int out = (cropStart() + cropDuration()).frames(m_fps) - 1;
2030     int oldin = oldInfo.cropStart.frames(m_fps);
2031     QLocale locale;
2032     bool keyFrameUpdated = false;
2033
2034     const QStringList data = parameter.attribute("keyframes").split(';', QString::SkipEmptyParts);
2035     QMap <int, double> keyframes;
2036     foreach (QString keyframe, data) {
2037         int keyframepos = keyframe.section(':', 0, 0).toInt();
2038         // if keyframe was at clip start, update it
2039         if (keyframepos == oldin) {
2040             keyframepos = in;
2041             keyFrameUpdated = true;
2042         }
2043         keyframes[keyframepos] = locale.toDouble(keyframe.section(':', 1, 1));
2044     }
2045
2046
2047     QMap<int, double>::iterator i = keyframes.end();
2048     int lastPos = -1;
2049     double lastValue = 0;
2050     qreal relPos;
2051
2052     /*
2053      * Take care of resize from start
2054      */
2055     bool startFound = false;
2056     while (i-- != keyframes.begin()) {
2057         if (i.key() < in && !startFound) {
2058             startFound = true;
2059             if (lastPos < 0) {
2060                 keyframes[in] = i.value();
2061             } else {
2062                 relPos = (in - i.key()) / (qreal)(lastPos - i.key() + 1);
2063                 keyframes[in] = i.value() + (lastValue - i.value()) * relPos;
2064             }
2065         }
2066         lastPos = i.key();
2067         lastValue = i.value();
2068         if (startFound)
2069             i = keyframes.erase(i);
2070     }
2071
2072     /*
2073      * Take care of resize from end
2074      */
2075     i = keyframes.begin();
2076     lastPos = -1;
2077     bool endFound = false;
2078     while (i != keyframes.end()) {
2079         if (i.key() > out && !endFound) {
2080             endFound = true;
2081             if (lastPos < 0) {
2082                 keyframes[out] = i.value();
2083             } else {
2084                 relPos = (out - lastPos) / (qreal)(i.key() - lastPos + 1);
2085                 keyframes[out] = lastValue + (i.value() - lastValue) * relPos;
2086             }
2087          }
2088         lastPos = i.key();
2089         lastValue = i.value();
2090         if (endFound)
2091             i = keyframes.erase(i);
2092         else
2093             ++i;
2094     }
2095
2096     if (startFound || endFound || keyFrameUpdated) {
2097         QString newkfr;
2098         QMap<int, double>::const_iterator k = keyframes.constBegin();
2099         while (k != keyframes.constEnd()) {
2100             newkfr.append(QString::number(k.key()) + ':' + QString::number(qRound(k.value())) + ';');
2101             ++k;
2102         }
2103         parameter.setAttribute("keyframes", newkfr);
2104         return true;
2105     }
2106
2107     return false;
2108 }
2109
2110 void ClipItem::updateGeometryKeyframes(QDomElement effect, int paramIndex, int width, int height, ItemInfo oldInfo)
2111 {
2112     QDomElement param = effect.elementsByTagName("parameter").item(paramIndex).toElement();
2113     int offset = oldInfo.cropStart.frames(m_fps);
2114     QString data = param.attribute("value");
2115     if (offset > 0) {
2116         QStringList kfrs = data.split(';');
2117         data.clear();
2118         foreach (const QString &keyframe, kfrs) {
2119             if (keyframe.contains('=')) {
2120                 int pos = keyframe.section('=', 0, 0).toInt();
2121                 pos += offset;
2122                 data.append(QString::number(pos) + '=' + keyframe.section('=', 1) + ";");
2123             }
2124             else data.append(keyframe + ';');
2125         }
2126     }
2127     Mlt::Geometry geometry(data.toUtf8().data(), oldInfo.cropDuration.frames(m_fps), width, height);
2128     param.setAttribute("value", geometry.serialise(cropStart().frames(m_fps), (cropStart() + cropDuration()).frames(m_fps) - 1));
2129 }
2130
2131 void ClipItem::slotGotThumbsCache()
2132 {
2133     disconnect(m_clip->thumbProducer(), SIGNAL(thumbsCached()), this, SLOT(slotGotThumbsCache()));
2134     update();
2135 }
2136
2137
2138 #include "clipitem.moc"
2139