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