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