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