]> git.sesse.net Git - kdenlive/blob - src/clipitem.cpp
Fix fadeout interpreted as fadein (fade>0)
[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         int newTrack = newPos.y() / KdenliveSettings::trackheight();
1305         newTrack = qMin(newTrack, projectScene()->tracksCount() - 1);
1306         newTrack = qMax(newTrack, 0);
1307         newPos.setY((int)(newTrack  * KdenliveSettings::trackheight() + 1));
1308         // Only one clip is moving
1309         QRectF sceneShape = rect();
1310         sceneShape.translate(newPos);
1311         QList<QGraphicsItem*> items;
1312         if (projectScene()->editMode() == NORMALEDIT)
1313             items = scene()->items(sceneShape, Qt::IntersectsItemShape);
1314         items.removeAll(this);
1315         bool forwardMove = newPos.x() > pos().x();
1316         int offset = 0;
1317         if (!items.isEmpty()) {
1318             for (int i = 0; i < items.count(); i++) {
1319                 if (!items.at(i)->isEnabled()) continue;
1320                 if (items.at(i)->type() == type()) {
1321                     // Collision!
1322                     QPointF otherPos = items.at(i)->pos();
1323                     if ((int) otherPos.y() != (int) pos().y()) {
1324                         return pos();
1325                     }
1326                     if (forwardMove) {
1327                         offset = qMax(offset, (int)(newPos.x() - (static_cast < AbstractClipItem* >(items.at(i))->startPos() - cropDuration()).frames(m_fps)));
1328                     } else {
1329                         offset = qMax(offset, (int)((static_cast < AbstractClipItem* >(items.at(i))->endPos().frames(m_fps)) - newPos.x()));
1330                     }
1331
1332                     if (offset > 0) {
1333                         if (forwardMove) {
1334                             sceneShape.translate(QPointF(-offset, 0));
1335                             newPos.setX(newPos.x() - offset);
1336                         } else {
1337                             sceneShape.translate(QPointF(offset, 0));
1338                             newPos.setX(newPos.x() + offset);
1339                         }
1340                         QList<QGraphicsItem*> subitems = scene()->items(sceneShape, Qt::IntersectsItemShape);
1341                         subitems.removeAll(this);
1342                         for (int j = 0; j < subitems.count(); j++) {
1343                             if (!subitems.at(j)->isEnabled()) continue;
1344                             if (subitems.at(j)->type() == type()) {
1345                                 // move was not successful, revert to previous pos
1346                                 m_info.startPos = GenTime((int) pos().x(), m_fps);
1347                                 return pos();
1348                             }
1349                         }
1350                     }
1351
1352                     m_info.track = newTrack;
1353                     m_info.startPos = GenTime((int) newPos.x(), m_fps);
1354
1355                     return newPos;
1356                 }
1357             }
1358         }
1359         m_info.track = newTrack;
1360         m_info.startPos = GenTime((int) newPos.x(), m_fps);
1361         //kDebug()<<"// ITEM NEW POS: "<<newPos.x()<<", mapped: "<<mapToScene(newPos.x(), 0).x();
1362         return newPos;
1363     }
1364     return QGraphicsItem::itemChange(change, value);
1365 }
1366
1367 // virtual
1368 /*void ClipItem::mouseMoveEvent(QGraphicsSceneMouseEvent * event) {
1369 }*/
1370
1371 int ClipItem::effectsCounter()
1372 {
1373     return effectsCount() + 1;
1374 }
1375
1376 int ClipItem::effectsCount()
1377 {
1378     return m_effectList.count();
1379 }
1380
1381 int ClipItem::hasEffect(const QString &tag, const QString &id) const
1382 {
1383     return m_effectList.hasEffect(tag, id);
1384 }
1385
1386 QStringList ClipItem::effectNames()
1387 {
1388     return m_effectList.effectNames();
1389 }
1390
1391 QDomElement ClipItem::effect(int ix) const
1392 {
1393     if (ix >= m_effectList.count() || ix < 0) return QDomElement();
1394     return m_effectList.at(ix).cloneNode().toElement();
1395 }
1396
1397 QDomElement ClipItem::effectAtIndex(int ix) const
1398 {
1399     if (ix > m_effectList.count() || ix <= 0) return QDomElement();
1400     return m_effectList.itemFromIndex(ix).cloneNode().toElement();
1401 }
1402
1403 QDomElement ClipItem::getEffectAtIndex(int ix) const
1404 {
1405     if (ix > m_effectList.count() || ix <= 0) return QDomElement();
1406     return m_effectList.itemFromIndex(ix);
1407 }
1408
1409 void ClipItem::updateEffect(QDomElement effect)
1410 {
1411     //kDebug() << "CHange EFFECT AT: " << ix << ", CURR: " << m_effectList.at(ix).attribute("tag") << ", NEW: " << effect.attribute("tag");
1412     m_effectList.updateEffect(effect);
1413     m_effectNames = m_effectList.effectNames().join(" / ");
1414     QString id = effect.attribute("id");
1415     if (id == "fadein" || id == "fadeout" || id == "fade_from_black" || id == "fade_to_black")
1416         update();
1417     else {
1418         QRectF r = boundingRect();
1419         r.setHeight(20);
1420         update(r);
1421     }
1422 }
1423
1424 void ClipItem::enableEffects(QList <int> indexes, bool disable)
1425 {
1426     m_effectList.enableEffects(indexes, disable);
1427 }
1428
1429 bool ClipItem::moveEffect(QDomElement effect, int ix)
1430 {
1431     if (ix <= 0 || ix > (m_effectList.count()) || effect.isNull()) {
1432         kDebug() << "Invalid effect index: " << ix;
1433         return false;
1434     }
1435     m_effectList.removeAt(effect.attribute("kdenlive_ix").toInt());
1436     effect.setAttribute("kdenlive_ix", ix);
1437     m_effectList.insert(effect);
1438     m_effectNames = m_effectList.effectNames().join(" / ");
1439     QString id = effect.attribute("id");
1440     if (id == "fadein" || id == "fadeout" || id == "fade_from_black" || id == "fade_to_black")
1441         update();
1442     else {
1443         QRectF r = boundingRect();
1444         r.setHeight(20);
1445         update(r);
1446     }
1447     return true;
1448 }
1449
1450 EffectsParameterList ClipItem::addEffect(QDomElement effect, bool /*animate*/)
1451 {
1452     bool needRepaint = false;
1453     QLocale locale;
1454     int ix;
1455     QDomElement insertedEffect;
1456     if (!effect.hasAttribute("kdenlive_ix")) {
1457         // effect dropped from effect list
1458         ix = effectsCounter();
1459     } else ix = effect.attribute("kdenlive_ix").toInt();
1460     if (!m_effectList.isEmpty() && ix <= m_effectList.count()) {
1461         needRepaint = true;
1462         insertedEffect = m_effectList.insert(effect);
1463     } else insertedEffect = m_effectList.append(effect);
1464     
1465     // Update index to the real one
1466     effect.setAttribute("kdenlive_ix", insertedEffect.attribute("kdenlive_ix"));
1467     int effectIn;
1468     int effectOut;
1469
1470     if (effect.attribute("tag") == "affine") {
1471         // special case: the affine effect needs in / out points
1472         effectIn = effect.attribute("in").toInt();
1473         effectOut = effect.attribute("out").toInt();
1474     }
1475     else {
1476         effectIn = EffectsList::parameter(effect, "in").toInt();
1477         effectOut = EffectsList::parameter(effect, "out").toInt();
1478     }
1479     
1480     EffectsParameterList parameters;
1481     parameters.addParam("tag", insertedEffect.attribute("tag"));
1482     parameters.addParam("kdenlive_ix", insertedEffect.attribute("kdenlive_ix"));
1483     if (insertedEffect.hasAttribute("src")) parameters.addParam("src", insertedEffect.attribute("src"));
1484     if (insertedEffect.hasAttribute("disable")) parameters.addParam("disable", insertedEffect.attribute("disable"));
1485
1486     QString effectId = insertedEffect.attribute("id");
1487     if (effectId.isEmpty()) effectId = insertedEffect.attribute("tag");
1488     parameters.addParam("id", effectId);
1489
1490     QDomNodeList params = insertedEffect.elementsByTagName("parameter");
1491     int fade = 0;
1492     bool needInOutSync = false;
1493
1494     // check if it is a fade effect
1495     if (effectId == "fadein") {
1496         needRepaint = true;
1497         if (m_effectList.hasEffect(QString(), "fade_from_black") == -1) {
1498             fade = effectOut - effectIn;
1499         }/* else {
1500             QDomElement fadein = m_effectList.getEffectByTag(QString(), "fade_from_black");
1501             if (fadein.attribute("name") == "out") fade += fadein.attribute("value").toInt();
1502             else if (fadein.attribute("name") == "in") fade -= fadein.attribute("value").toInt();
1503         }*/
1504     } else if (effectId == "fade_from_black") {
1505         kDebug()<<"// FOUND FTB:"<<effectOut<<" - "<<effectIn;
1506         needRepaint = true;
1507         if (m_effectList.hasEffect(QString(), "fadein") == -1) {
1508             fade = effectOut - effectIn;
1509         }/* else {
1510             QDomElement fadein = m_effectList.getEffectByTag(QString(), "fadein");
1511             if (fadein.attribute("name") == "out") fade += fadein.attribute("value").toInt();
1512             else if (fadein.attribute("name") == "in") fade -= fadein.attribute("value").toInt();
1513         }*/
1514      } else if (effectId == "fadeout") {
1515         needRepaint = true;
1516         if (m_effectList.hasEffect(QString(), "fade_to_black") == -1) {
1517             fade = effectIn - effectOut;
1518         } /*else {
1519             QDomElement fadeout = m_effectList.getEffectByTag(QString(), "fade_to_black");
1520             if (fadeout.attribute("name") == "out") fade -= fadeout.attribute("value").toInt();
1521             else if (fadeout.attribute("name") == "in") fade += fadeout.attribute("value").toInt();
1522         }*/
1523     } else if (effectId == "fade_to_black") {
1524         needRepaint = true;
1525         if (m_effectList.hasEffect(QString(), "fadeout") == -1) {
1526             fade = effectIn - effectOut;
1527         }/* else {
1528             QDomElement fadeout = m_effectList.getEffectByTag(QString(), "fadeout");
1529             if (fadeout.attribute("name") == "out") fade -= fadeout.attribute("value").toInt();
1530             else if (fadeout.attribute("name") == "in") fade += fadeout.attribute("value").toInt();
1531         }*/
1532     }
1533
1534     for (int i = 0; i < params.count(); i++) {
1535         QDomElement e = params.item(i).toElement();
1536         if (!e.isNull()) {
1537             if (e.attribute("type") == "geometry" && !e.hasAttribute("fixed")) {
1538                 // Effects with a geometry parameter need to sync in / out with parent clip
1539                 needInOutSync = true;
1540             }
1541             if (e.attribute("type") == "simplekeyframe") {
1542                 QStringList values = e.attribute("keyframes").split(";", QString::SkipEmptyParts);
1543                 double factor = locale.toDouble(e.attribute("factor", "1"));
1544                 double offset = e.attribute("offset", "0").toDouble();
1545                 if (factor != 1 || offset != 0) {
1546                     for (int j = 0; j < values.count(); j++) {
1547                         QString pos = values.at(j).section(':', 0, 0);
1548                         double val = (locale.toDouble(values.at(j).section(':', 1, 1)) - offset) / factor;
1549                         values[j] = pos + "=" + locale.toString(val);
1550                     }
1551                 }
1552                 parameters.addParam(e.attribute("name"), values.join(";"));
1553                 /*parameters.addParam("max", e.attribute("max"));
1554                 parameters.addParam("min", e.attribute("min"));
1555                 parameters.addParam("factor", );*/
1556             } else if (e.attribute("type") == "keyframe") {
1557                 parameters.addParam("keyframes", e.attribute("keyframes"));
1558                 parameters.addParam("max", e.attribute("max"));
1559                 parameters.addParam("min", e.attribute("min"));
1560                 parameters.addParam("factor", e.attribute("factor", "1"));
1561                 parameters.addParam("offset", e.attribute("offset", "0"));
1562                 parameters.addParam("starttag", e.attribute("starttag", "start"));
1563                 parameters.addParam("endtag", e.attribute("endtag", "end"));
1564             } else if (e.attribute("factor", "1") == "1" && e.attribute("offset", "0") == "0") {
1565                 parameters.addParam(e.attribute("name"), e.attribute("value"));
1566
1567             } else {
1568                 double fact;
1569                 if (e.attribute("factor").contains('%')) {
1570                     fact = ProfilesDialog::getStringEval(projectScene()->profile(), e.attribute("factor"));
1571                 } else {
1572                     fact = locale.toDouble(e.attribute("factor", "1"));
1573                 }
1574                 double offset = e.attribute("offset", "0").toDouble();
1575                 parameters.addParam(e.attribute("name"), locale.toString((locale.toDouble(e.attribute("value")) - offset) / fact));
1576             }
1577         }
1578     }
1579     if (needInOutSync) {
1580         parameters.addParam("in", QString::number(cropStart().frames(m_fps)));
1581         parameters.addParam("out", QString::number((cropStart() + cropDuration()).frames(m_fps) - 1));
1582         parameters.addParam("_sync_in_out", "1");
1583     }
1584     m_effectNames = m_effectList.effectNames().join(" / ");
1585     if (fade > 0) m_startFade = fade;
1586     else if (fade < 0) m_endFade = -fade;
1587
1588     if (m_selectedEffect == -1) {
1589         setSelectedEffect(0);
1590     } else if (m_selectedEffect == ix - 1) setSelectedEffect(m_selectedEffect);
1591     if (needRepaint) update(boundingRect());
1592     /*if (animate) {
1593         flashClip();
1594     } */
1595     else { /*if (!needRepaint) */
1596         QRectF r = boundingRect();
1597         r.setHeight(20);
1598         update(r);
1599     }
1600     return parameters;
1601 }
1602
1603 void ClipItem::deleteEffect(QString index)
1604 {
1605     bool needRepaint = false;
1606     int ix = index.toInt();
1607
1608     QDomElement effect = m_effectList.itemFromIndex(ix);
1609     QString effectId = effect.attribute("id");
1610     if ((effectId == "fadein" && hasEffect(QString(), "fade_from_black") == -1) ||
1611         (effectId == "fade_from_black" && hasEffect(QString(), "fadein") == -1)) {
1612         m_startFade = 0;
1613         needRepaint = true;
1614     } else if ((effectId == "fadeout" && hasEffect(QString(), "fade_to_black") == -1) ||
1615         (effectId == "fade_to_black" && hasEffect(QString(), "fadeout") == -1)) {
1616         m_endFade = 0;
1617         needRepaint = true;
1618     } else if (EffectsList::hasKeyFrames(effect)) needRepaint = true;
1619     m_effectList.removeAt(ix);
1620     m_effectNames = m_effectList.effectNames().join(" / ");
1621
1622     if (m_effectList.isEmpty() || m_selectedEffect == ix) {
1623         // Current effect was removed
1624         if (ix > m_effectList.count()) {
1625             setSelectedEffect(m_effectList.count());
1626         } else setSelectedEffect(ix);
1627     }
1628     if (needRepaint) update(boundingRect());
1629     else {
1630         QRectF r = boundingRect();
1631         r.setHeight(20);
1632         update(r);
1633     }
1634     //if (!m_effectList.isEmpty()) flashClip();
1635 }
1636
1637 double ClipItem::speed() const
1638 {
1639     return m_speed;
1640 }
1641
1642 int ClipItem::strobe() const
1643 {
1644     return m_strobe;
1645 }
1646
1647 void ClipItem::setSpeed(const double speed, const int strobe)
1648 {
1649     m_speed = speed;
1650     if (m_speed <= 0 && m_speed > -1)
1651         m_speed = -1.0;
1652     m_strobe = strobe;
1653     if (m_speed == 1.0) m_clipName = baseClip()->name();
1654     else m_clipName = baseClip()->name() + " - " + QString::number(speed * 100, 'f', 0) + '%';
1655     m_info.cropStart = GenTime((int)(m_speedIndependantInfo.cropStart.frames(m_fps) / qAbs(m_speed) + 0.5), m_fps);
1656     m_info.cropDuration = GenTime((int)(m_speedIndependantInfo.cropDuration.frames(m_fps) / qAbs(m_speed) + 0.5), m_fps);
1657     //update();
1658 }
1659
1660 GenTime ClipItem::maxDuration() const
1661 {
1662     return GenTime((int)(m_maxDuration.frames(m_fps) / qAbs(m_speed) + 0.5), m_fps);
1663 }
1664
1665 GenTime ClipItem::speedIndependantCropStart() const
1666 {
1667     return m_speedIndependantInfo.cropStart;
1668 }
1669
1670 GenTime ClipItem::speedIndependantCropDuration() const
1671 {
1672     return m_speedIndependantInfo.cropDuration;
1673 }
1674
1675
1676 const ItemInfo ClipItem::speedIndependantInfo() const
1677 {
1678     return m_speedIndependantInfo;
1679 }
1680
1681 int ClipItem::nextFreeEffectGroupIndex() const
1682 {
1683     int freeGroupIndex = 0;
1684     for (int i = 0; i < m_effectList.count(); i++) {
1685         QDomElement effect = m_effectList.at(i);
1686         EffectInfo effectInfo;
1687         effectInfo.fromString(effect.attribute("kdenlive_info"));
1688         if (effectInfo.groupIndex >= freeGroupIndex) {
1689             freeGroupIndex = effectInfo.groupIndex + 1;
1690         }
1691     }
1692     return freeGroupIndex;
1693 }
1694
1695 //virtual
1696 void ClipItem::dropEvent(QGraphicsSceneDragDropEvent * event)
1697 {
1698     if (event->proposedAction() == Qt::CopyAction && scene() && !scene()->views().isEmpty()) {
1699         const QString effects = QString::fromUtf8(event->mimeData()->data("kdenlive/effectslist"));
1700         event->acceptProposedAction();
1701         QDomDocument doc;
1702         doc.setContent(effects, true);
1703         QDomElement e = doc.documentElement();
1704         if (e.tagName() == "effectgroup") {
1705             // dropped an effect group
1706             QDomNodeList effectlist = e.elementsByTagName("effect");
1707             int freeGroupIndex = nextFreeEffectGroupIndex();
1708             EffectInfo effectInfo;
1709             for (int i = 0; i < effectlist.count(); i++) {
1710                 QDomElement effect = effectlist.at(i).toElement();
1711                 effectInfo.fromString(effect.attribute("kdenlive_info"));
1712                 effectInfo.groupIndex = freeGroupIndex;
1713                 effect.setAttribute("kdenlive_info", effectInfo.toString());
1714                 effect.removeAttribute("kdenlive_ix");
1715             }
1716         } else {
1717             // single effect dropped
1718             e.removeAttribute("kdenlive_ix");
1719         }
1720         CustomTrackView *view = (CustomTrackView *) scene()->views()[0];
1721         if (view) view->slotAddEffect(e, m_info.startPos, track());
1722     }
1723     else return;
1724 }
1725
1726 //virtual
1727 void ClipItem::dragEnterEvent(QGraphicsSceneDragDropEvent *event)
1728 {
1729     if (isItemLocked()) event->setAccepted(false);
1730     else if (event->mimeData()->hasFormat("kdenlive/effectslist")) {
1731         event->acceptProposedAction();
1732     } else event->setAccepted(false);
1733 }
1734
1735 void ClipItem::dragLeaveEvent(QGraphicsSceneDragDropEvent *event)
1736 {
1737     Q_UNUSED(event)
1738 }
1739
1740 void ClipItem::addTransition(Transition* t)
1741 {
1742     m_transitionsList.append(t);
1743     //CustomTrackView *view = (CustomTrackView *) scene()->views()[0];
1744     QDomDocument doc;
1745     QDomElement e = doc.documentElement();
1746     //if (view) view->slotAddTransition(this, t->toXML() , t->startPos(), track());
1747 }
1748
1749 void ClipItem::setVideoOnly(bool force)
1750 {
1751     m_videoOnly = force;
1752 }
1753
1754 void ClipItem::setAudioOnly(bool force)
1755 {
1756     m_audioOnly = force;
1757     if (m_audioOnly) m_baseColor = QColor(141, 215, 166);
1758     else {
1759         if (m_clipType == COLOR) {
1760             QString colour = m_clip->getProperty("colour");
1761             colour = colour.replace(0, 2, "#");
1762             m_baseColor = QColor(colour.left(7));
1763         } else if (m_clipType == AUDIO) m_baseColor = QColor(141, 215, 166);
1764         else m_baseColor = QColor(141, 166, 215);
1765     }
1766     m_audioThumbCachePic.clear();
1767 }
1768
1769 bool ClipItem::isAudioOnly() const
1770 {
1771     return m_audioOnly;
1772 }
1773
1774 bool ClipItem::isVideoOnly() const
1775 {
1776     return m_videoOnly;
1777 }
1778
1779 void ClipItem::insertKeyframe(QDomElement effect, int pos, int val)
1780 {
1781     if (effect.attribute("disable") == "1") return;
1782     QLocale locale;
1783     effect.setAttribute("active_keyframe", pos);
1784     m_editedKeyframe = pos;
1785     QDomNodeList params = effect.elementsByTagName("parameter");
1786     for (int i = 0; i < params.count(); i++) {
1787         QDomElement e = params.item(i).toElement();
1788         if (!e.isNull() && (e.attribute("type") == "keyframe" || e.attribute("type") == "simplekeyframe")) {
1789             QString kfr = e.attribute("keyframes");
1790             const QStringList keyframes = kfr.split(';', QString::SkipEmptyParts);
1791             QStringList newkfr;
1792             bool added = false;
1793             foreach(const QString &str, keyframes) {
1794                 int kpos = str.section(':', 0, 0).toInt();
1795                 double newval = locale.toDouble(str.section(':', 1, 1));
1796                 if (kpos < pos) {
1797                     newkfr.append(str);
1798                 } else if (!added) {
1799                     if (i == m_visibleParam)
1800                         newkfr.append(QString::number(pos) + ":" + QString::number(val));
1801                     else
1802                         newkfr.append(QString::number(pos) + ":" + locale.toString(newval));
1803                     if (kpos > pos) newkfr.append(str);
1804                     added = true;
1805                 } else newkfr.append(str);
1806             }
1807             if (!added) {
1808                 if (i == m_visibleParam)
1809                     newkfr.append(QString::number(pos) + ":" + QString::number(val));
1810                 else
1811                     newkfr.append(QString::number(pos) + ":" + e.attribute("default"));
1812             }
1813             e.setAttribute("keyframes", newkfr.join(";"));
1814         }
1815     }
1816 }
1817
1818 void ClipItem::movedKeyframe(QDomElement effect, int oldpos, int newpos, double value)
1819 {
1820     if (effect.attribute("disable") == "1") return;
1821     QLocale locale;
1822     effect.setAttribute("active_keyframe", newpos);
1823     QDomNodeList params = effect.elementsByTagName("parameter");
1824     int start = cropStart().frames(m_fps);
1825     int end = (cropStart() + cropDuration()).frames(m_fps) - 1;
1826     for (int i = 0; i < params.count(); i++) {
1827         QDomElement e = params.item(i).toElement();
1828         if (!e.isNull() && (e.attribute("type") == "keyframe" || e.attribute("type") == "simplekeyframe")) {
1829             QString kfr = e.attribute("keyframes");
1830             const QStringList keyframes = kfr.split(';', QString::SkipEmptyParts);
1831             QStringList newkfr;
1832             foreach(const QString &str, keyframes) {
1833                 if (str.section(':', 0, 0).toInt() != oldpos) {
1834                     newkfr.append(str);
1835                 } else if (newpos != -1) {
1836                     newpos = qMax(newpos, start);
1837                     newpos = qMin(newpos, end);
1838                     if (i == m_visibleParam)
1839                         newkfr.append(QString::number(newpos) + ":" + locale.toString(value));
1840                     else
1841                         newkfr.append(QString::number(newpos) + ":" + str.section(':', 1, 1));
1842                 }
1843             }
1844             e.setAttribute("keyframes", newkfr.join(";"));
1845         }
1846     }
1847
1848     updateKeyframes(effect);
1849     update();
1850 }
1851
1852 void ClipItem::updateKeyframes(QDomElement effect)
1853 {
1854     m_keyframes.clear();
1855     QLocale locale;
1856     // parse keyframes
1857     QDomNodeList params = effect.elementsByTagName("parameter");
1858     QDomElement e = params.item(m_visibleParam).toElement();
1859     if (e.attribute("intimeline") != "1") {
1860         setSelectedEffect(m_selectedEffect);
1861         return;
1862     }
1863     m_limitedKeyFrames = e.attribute("type") == "keyframe";
1864     const QStringList keyframes = e.attribute("keyframes").split(';', QString::SkipEmptyParts);
1865     foreach(const QString &str, keyframes) {
1866         int pos = str.section(':', 0, 0).toInt();
1867         double val = locale.toDouble(str.section(':', 1, 1));
1868         m_keyframes[pos] = val;
1869     }
1870     if (!m_keyframes.contains(m_selectedKeyframe)) m_selectedKeyframe = -1;
1871 }
1872
1873 Mlt::Producer *ClipItem::getProducer(int track, bool trackSpecific)
1874 {
1875     if (isAudioOnly())
1876         return m_clip->audioProducer(track);
1877     else if (isVideoOnly())
1878         return m_clip->videoProducer();
1879     else
1880         return m_clip->getProducer(trackSpecific ? track : -1);
1881 }
1882
1883 QMap<int, QDomElement> ClipItem::adjustEffectsToDuration(int width, int height, ItemInfo oldInfo)
1884 {
1885     QMap<int, QDomElement> effects;
1886     for (int i = 0; i < m_effectList.count(); i++) {
1887         QDomElement effect = m_effectList.at(i);
1888
1889         if (effect.attribute("id").startsWith("fade")) {
1890             QString id = effect.attribute("id");
1891             int in = EffectsList::parameter(effect, "in").toInt();
1892             int out = EffectsList::parameter(effect, "out").toInt();
1893             int clipEnd = (cropStart() + cropDuration()).frames(m_fps) - 1;
1894             if (id == "fade_from_black" || id == "fadein") {
1895                 if (in != cropStart().frames(m_fps)) {
1896                     effects[i] = effect.cloneNode().toElement();
1897                     int duration = out - in;
1898                     in = cropStart().frames(m_fps);
1899                     out = in + duration;
1900                     EffectsList::setParameter(effect, "in", QString::number(in));
1901                     EffectsList::setParameter(effect, "out", QString::number(out));
1902                 }
1903                 if (out > clipEnd) {
1904                     if (!effects.contains(i))
1905                         effects[i] = effect.cloneNode().toElement();
1906                     EffectsList::setParameter(effect, "out", QString::number(clipEnd));
1907                 }
1908                 if (effects.contains(i))
1909                     setFadeIn(out - in);
1910             } else {
1911                 if (out != clipEnd) {
1912                     effects[i] = effect.cloneNode().toElement();
1913                     int diff = out - clipEnd;
1914                     in = qMax(in - diff, (int) cropStart().frames(m_fps));
1915                     out -= diff;
1916                     EffectsList::setParameter(effect, "in", QString::number(in));
1917                     EffectsList::setParameter(effect, "out", QString::number(out));
1918                 }
1919                 if (in < cropStart().frames(m_fps)) {
1920                     if (!effects.contains(i))
1921                         effects[i] = effect.cloneNode().toElement();
1922                     EffectsList::setParameter(effect, "in", QString::number(cropStart().frames(m_fps)));
1923                 }
1924                 if (effects.contains(i))
1925                     setFadeOut(out - in);
1926             }
1927             continue;
1928         } else if (effect.attribute("id") == "freeze" && cropStart() != oldInfo.cropStart) {
1929             effects[i] = effect.cloneNode().toElement();
1930             int diff = (oldInfo.cropStart - cropStart()).frames(m_fps);
1931             int frame = EffectsList::parameter(effect, "frame").toInt();
1932             EffectsList::setParameter(effect, "frame", QString::number(frame - diff));
1933             continue;
1934         } else if (effect.attribute("id") == "pan_zoom") {
1935             effect.setAttribute("in", cropStart().frames(m_fps));
1936             effect.setAttribute("out", (cropStart() + cropDuration()).frames(m_fps) - 1);
1937         }
1938
1939         QDomNodeList params = effect.elementsByTagName("parameter");
1940         for (int j = 0; j < params.count(); j++) {
1941             QDomElement param = params.item(j).toElement();
1942
1943             QString type = param.attribute("type");
1944             if (type == "geometry" && !param.hasAttribute("fixed")) {
1945                 if (!effects.contains(i))
1946                     effects[i] = effect.cloneNode().toElement();
1947                 updateGeometryKeyframes(effect, j, width, height, oldInfo);
1948             } else if (type == "simplekeyframe" || type == "keyframe") {
1949                 if (!effects.contains(i))
1950                     effects[i] = effect.cloneNode().toElement();
1951                 updateNormalKeyframes(param, oldInfo);
1952 #ifdef USE_QJSON
1953             } else if (type == "roto-spline") {
1954                 if (!effects.contains(i))
1955                     effects[i] = effect.cloneNode().toElement();
1956                 QString value = param.attribute("value");
1957                 if (adjustRotoDuration(&value, cropStart().frames(m_fps), (cropStart() + cropDuration()).frames(m_fps) - 1))
1958                     param.setAttribute("value", value);
1959 #endif    
1960             }
1961         }
1962     }
1963     return effects;
1964 }
1965
1966 bool ClipItem::updateNormalKeyframes(QDomElement parameter, ItemInfo oldInfo)
1967 {
1968     int in = cropStart().frames(m_fps);
1969     int out = (cropStart() + cropDuration()).frames(m_fps) - 1;
1970     int oldin = oldInfo.cropStart.frames(m_fps);
1971     QLocale locale;
1972     bool keyFrameUpdated = false;
1973
1974     const QStringList data = parameter.attribute("keyframes").split(';', QString::SkipEmptyParts);
1975     QMap <int, double> keyframes;
1976     foreach (QString keyframe, data) {
1977         int keyframepos = keyframe.section(':', 0, 0).toInt();
1978         // if keyframe was at clip start, update it
1979         if (keyframepos == oldin) {
1980             keyframepos = in;
1981             keyFrameUpdated = true;
1982         }
1983         keyframes[keyframepos] = locale.toDouble(keyframe.section(':', 1, 1));
1984     }
1985
1986
1987     QMap<int, double>::iterator i = keyframes.end();
1988     int lastPos = -1;
1989     double lastValue = 0;
1990     qreal relPos;
1991
1992     /*
1993      * Take care of resize from start
1994      */
1995     bool startFound = false;
1996     while (i-- != keyframes.begin()) {
1997         if (i.key() < in && !startFound) {
1998             startFound = true;
1999             if (lastPos < 0) {
2000                 keyframes[in] = i.value();
2001             } else {
2002                 relPos = (in - i.key()) / (qreal)(lastPos - i.key() + 1);
2003                 keyframes[in] = i.value() + (lastValue - i.value()) * relPos;
2004             }
2005         }
2006         lastPos = i.key();
2007         lastValue = i.value();
2008         if (startFound)
2009             i = keyframes.erase(i);
2010     }
2011
2012     /*
2013      * Take care of resize from end
2014      */
2015     i = keyframes.begin();
2016     lastPos = -1;
2017     bool endFound = false;
2018     while (i != keyframes.end()) {
2019         if (i.key() > out && !endFound) {
2020             endFound = true;
2021             if (lastPos < 0) {
2022                 keyframes[out] = i.value();
2023             } else {
2024                 relPos = (out - lastPos) / (qreal)(i.key() - lastPos + 1);
2025                 keyframes[out] = lastValue + (i.value() - lastValue) * relPos;
2026             }
2027          }
2028         lastPos = i.key();
2029         lastValue = i.value();
2030         if (endFound)
2031             i = keyframes.erase(i);
2032         else
2033             ++i;
2034     }
2035
2036     if (startFound || endFound || keyFrameUpdated) {
2037         QString newkfr;
2038         QMap<int, double>::const_iterator k = keyframes.constBegin();
2039         while (k != keyframes.constEnd()) {
2040             newkfr.append(QString::number(k.key()) + ':' + QString::number(qRound(k.value())) + ';');
2041             ++k;
2042         }
2043         parameter.setAttribute("keyframes", newkfr);
2044         return true;
2045     }
2046
2047     return false;
2048 }
2049
2050 void ClipItem::updateGeometryKeyframes(QDomElement effect, int paramIndex, int width, int height, ItemInfo oldInfo)
2051 {
2052     QDomElement param = effect.elementsByTagName("parameter").item(paramIndex).toElement();
2053     int offset = oldInfo.cropStart.frames(m_fps);
2054     QString data = param.attribute("value");
2055     if (offset > 0) {
2056         QStringList kfrs = data.split(';');
2057         data.clear();
2058         foreach (QString keyframe, kfrs) {
2059             if (keyframe.contains('=')) {
2060                 int pos = keyframe.section('=', 0, 0).toInt();
2061                 pos += offset;
2062                 data.append(QString::number(pos) + "=" + keyframe.section('=', 1) + ";");
2063             }
2064             else data.append(keyframe + ";");
2065         }
2066     }
2067     Mlt::Geometry geometry(data.toUtf8().data(), oldInfo.cropDuration.frames(m_fps), width, height);
2068     param.setAttribute("value", geometry.serialise(cropStart().frames(m_fps), (cropStart() + cropDuration()).frames(m_fps) - 1));
2069 }
2070
2071 void ClipItem::slotGotThumbsCache()
2072 {
2073     disconnect(m_clip->thumbProducer(), SIGNAL(thumbsCached()), this, SLOT(slotGotThumbsCache()));
2074     update();
2075 }
2076
2077 #include "clipitem.moc"
2078