]> git.sesse.net Git - kdenlive/blob - src/clipitem.cpp
Some work on speed effect, should fix most of bug
[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
22 #include <QPainter>
23 #include <QTimer>
24 #include <QStyleOptionGraphicsItem>
25 #include <QGraphicsScene>
26 #include <QGraphicsView>
27 #include <QScrollBar>
28 #include <QMimeData>
29 #include <QApplication>
30
31 #include <KDebug>
32
33 #include "clipitem.h"
34 #include "customtrackview.h"
35 #include "customtrackscene.h"
36 #include "renderer.h"
37 #include "docclipbase.h"
38 #include "transition.h"
39 #include "kdenlivesettings.h"
40 #include "kthumb.h"
41
42
43 ClipItem::ClipItem(DocClipBase *clip, ItemInfo info, double fps, bool generateThumbs)
44         : AbstractClipItem(info, QRectF(), fps), m_clip(clip), m_resizeMode(NONE), m_grabPoint(0), m_maxTrack(0), m_hasThumbs(false), startThumbTimer(NULL), endThumbTimer(NULL), audioThumbWasDrawn(false), m_opacity(1.0), m_timeLine(0), m_startThumbRequested(false), m_endThumbRequested(false), m_startFade(0), m_endFade(0), m_hover(false), m_selectedEffect(-1), m_speed(1.0), framePixelWidth(0), m_startPix(QPixmap()), m_endPix(QPixmap()) {
45     setRect(0, 0, (info.endPos - info.startPos).frames(fps) - 0.02, (qreal)(KdenliveSettings::trackheight() - 2));
46     setPos((qreal) info.startPos.frames(fps), (qreal)(info.track * KdenliveSettings::trackheight()) + 1);
47
48     m_clipName = clip->name();
49     m_producer = clip->getId();
50     m_clipType = clip->clipType();
51     m_cropStart = info.cropStart;
52     m_maxDuration = clip->maxDuration();
53     setAcceptDrops(true);
54     audioThumbReady = clip->audioThumbCreated();
55
56     /*
57       m_cropStart = xml.attribute("in", 0).toInt();
58       m_maxDuration = xml.attribute("duration", 0).toInt();
59       if (m_maxDuration == 0) m_maxDuration = xml.attribute("out", 0).toInt() - m_cropStart;
60
61       if (duration != -1) m_cropDuration = duration;
62       else m_cropDuration = m_maxDuration;*/
63
64
65     setFlags(QGraphicsItem::ItemClipsToShape | QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);
66     setAcceptsHoverEvents(true);
67     connect(this , SIGNAL(prepareAudioThumb(double, int, int, int)) , this, SLOT(slotPrepareAudioThumb(double, int, int, int)));
68
69     setBrush(QColor(141, 166, 215));
70     if (m_clipType == VIDEO || m_clipType == AV || m_clipType == SLIDESHOW || m_clipType == PLAYLIST) {
71         m_hasThumbs = true;
72         startThumbTimer = new QTimer(this);
73         startThumbTimer->setSingleShot(true);
74         connect(startThumbTimer, SIGNAL(timeout()), this, SLOT(slotGetStartThumb()));
75         endThumbTimer = new QTimer(this);
76         endThumbTimer->setSingleShot(true);
77         connect(endThumbTimer, SIGNAL(timeout()), this, SLOT(slotGetEndThumb()));
78
79         connect(this, SIGNAL(getThumb(int, int)), clip->thumbProducer(), SLOT(extractImage(int, int)));
80         //connect(this, SIGNAL(getThumb(int, int)), clip->thumbProducer(), SLOT(getVideoThumbs(int, int)));
81
82         connect(clip->thumbProducer(), SIGNAL(thumbReady(int, QPixmap)), this, SLOT(slotThumbReady(int, QPixmap)));
83         connect(clip, SIGNAL(gotAudioData()), this, SLOT(slotGotAudioData()));
84         if (generateThumbs) QTimer::singleShot(200, this, SLOT(slotFetchThumbs()));
85
86         /*if (m_clip->producer()) {
87             videoThumbProducer.init(this, m_clip->producer(), KdenliveSettings::trackheight() * KdenliveSettings::project_display_ratio(), KdenliveSettings::trackheight());
88             slotFetchThumbs();
89         }*/
90     } else if (m_clipType == COLOR) {
91         QString colour = clip->getProperty("colour");
92         colour = colour.replace(0, 2, "#");
93         setBrush(QColor(colour.left(7)));
94     } else if (m_clipType == IMAGE || m_clipType == TEXT) {
95         m_startPix = KThumb::getImage(KUrl(clip->getProperty("resource")), (int)(KdenliveSettings::trackheight() * KdenliveSettings::project_display_ratio()), KdenliveSettings::trackheight());
96         m_endPix = m_startPix;
97     } else if (m_clipType == AUDIO) {
98         connect(clip, SIGNAL(gotAudioData()), this, SLOT(slotGotAudioData()));
99     }
100 }
101
102
103 ClipItem::~ClipItem() {
104     if (startThumbTimer) delete startThumbTimer;
105     if (endThumbTimer) delete endThumbTimer;
106     if (m_timeLine) m_timeLine;
107 }
108
109 ClipItem *ClipItem::clone(ItemInfo info) const {
110     ClipItem *duplicate = new ClipItem(m_clip, info, m_fps);
111     if (info.cropStart == cropStart()) duplicate->slotSetStartThumb(m_startPix);
112     if (info.cropStart + (info.endPos - info.startPos) == m_cropStart + m_cropDuration) duplicate->slotSetEndThumb(m_endPix);
113     kDebug() << "// CLoning clip: " << (info.cropStart + (info.endPos - info.startPos)).frames(m_fps) << ", CURRENT end: " << (cropStart() + duration()).frames(m_fps);
114     duplicate->setEffectList(m_effectList.clone());
115     duplicate->setSpeed(m_speed);
116     return duplicate;
117 }
118
119 void ClipItem::setEffectList(const EffectsList effectList) {
120     m_effectList = effectList;
121     m_effectNames = m_effectList.effectNames().join(" / ");
122 }
123
124 const EffectsList ClipItem::effectList() {
125     return m_effectList;
126 }
127
128 int ClipItem::selectedEffectIndex() const {
129     return m_selectedEffect;
130 }
131
132 void ClipItem::initEffect(QDomElement effect) {
133     // the kdenlive_ix int is used to identify an effect in mlt's playlist, should
134     // not be changed
135     if (effect.attribute("kdenlive_ix").toInt() == 0)
136         effect.setAttribute("kdenlive_ix", QString::number(effectsCounter()));
137     // init keyframes if required
138     QDomNodeList params = effect.elementsByTagName("parameter");
139     for (int i = 0; i < params.count(); i++) {
140         QDomElement e = params.item(i).toElement();
141         if (!e.isNull() && e.attribute("type") == "keyframe") {
142             QString def = e.attribute("default");
143             // Effect has a keyframe type parameter, we need to set the values
144             if (e.attribute("keyframes").isEmpty()) {
145                 e.setAttribute("keyframes", QString::number(m_cropStart.frames(m_fps)) + ":" + def + ";" + QString::number((m_cropStart + m_cropDuration).frames(m_fps)) + ":" + def);
146                 //kDebug() << "///// EFFECT KEYFRAMES INITED: " << e.attribute("keyframes");
147                 break;
148             }
149         }
150     }
151 }
152
153 bool ClipItem::checkKeyFrames() {
154     bool clipEffectsModified = false;
155     for (int ix = 0; ix < m_effectList.count(); ix ++) {
156         QString kfr = keyframes(ix);
157         if (!kfr.isEmpty()) {
158             const QStringList keyframes = kfr.split(";", QString::SkipEmptyParts);
159             QStringList newKeyFrames;
160             bool cutKeyFrame = false;
161             bool modified = false;
162             int lastPos = -1;
163             double lastValue = -1;
164             int start = m_cropStart.frames(m_fps);
165             int end = (m_cropStart + m_cropDuration).frames(m_fps);
166             foreach(const QString str, keyframes) {
167                 int pos = str.section(":", 0, 0).toInt();
168                 double val = str.section(":", 1, 1).toDouble();
169                 if (pos - start < 0) {
170                     // a keyframe is defined before the start of the clip
171                     cutKeyFrame = true;
172                 } else if (cutKeyFrame) {
173                     // create new keyframe at clip start, calculate interpolated value
174                     if (pos > start) {
175                         int diff = pos - lastPos;
176                         double ratio = (double)(start - lastPos) / diff;
177                         double newValue = lastValue + (val - lastValue) * ratio;
178                         newKeyFrames.append(QString::number(start) + ":" + QString::number(newValue));
179                         modified = true;
180                     }
181                     cutKeyFrame = false;
182                 }
183                 if (!cutKeyFrame) {
184                     if (pos > end) {
185                         // create new keyframe at clip end, calculate interpolated value
186                         int diff = pos - lastPos;
187                         if (diff != 0) {
188                             double ratio = (double)(end - lastPos) / diff;
189                             double newValue = lastValue + (val - lastValue) * ratio;
190                             newKeyFrames.append(QString::number(end) + ":" + QString::number(newValue));
191                             modified = true;
192                         }
193                         break;
194                     } else {
195                         newKeyFrames.append(QString::number(pos) + ":" + QString::number(val));
196                     }
197                 }
198                 lastPos = pos;
199                 lastValue = val;
200             }
201             if (modified) {
202                 // update KeyFrames
203                 setKeyframes(ix, newKeyFrames.join(";"));
204                 clipEffectsModified = true;
205             }
206         }
207     }
208     return clipEffectsModified;
209 }
210
211 void ClipItem::setKeyframes(const int ix, const QString keyframes) {
212     QDomElement effect = effectAt(ix);
213     if (effect.attribute("disabled") == "1") return;
214     QDomNodeList params = effect.elementsByTagName("parameter");
215     for (int i = 0; i < params.count(); i++) {
216         QDomElement e = params.item(i).toElement();
217         if (!e.isNull() && e.attribute("type") == "keyframe") {
218             e.setAttribute("keyframes", keyframes);
219             if (ix == m_selectedEffect) {
220                 m_keyframes.clear();
221                 double max = e.attribute("max").toDouble();
222                 double min = e.attribute("min").toDouble();
223                 m_keyframeFactor = 100.0 / (max - min);
224                 m_keyframeDefault = e.attribute("default").toDouble();
225                 // parse keyframes
226                 const QStringList keyframes = e.attribute("keyframes").split(";", QString::SkipEmptyParts);
227                 foreach(const QString str, keyframes) {
228                     int pos = str.section(":", 0, 0).toInt();
229                     double val = str.section(":", 1, 1).toDouble();
230                     m_keyframes[pos] = val;
231                 }
232                 update();
233                 return;
234             }
235             break;
236         }
237     }
238 }
239
240
241 void ClipItem::setSelectedEffect(const int ix) {
242     m_selectedEffect = ix;
243     QDomElement effect = effectAt(m_selectedEffect);
244     QDomNodeList params = effect.elementsByTagName("parameter");
245     if (effect.attribute("disabled") != "1")
246         for (int i = 0; i < params.count(); i++) {
247             QDomElement e = params.item(i).toElement();
248             if (!e.isNull() && e.attribute("type") == "keyframe") {
249                 m_keyframes.clear();
250                 double max = e.attribute("max").toDouble();
251                 double min = e.attribute("min").toDouble();
252                 m_keyframeFactor = 100.0 / (max - min);
253                 m_keyframeDefault = e.attribute("default").toDouble();
254                 // parse keyframes
255                 const QStringList keyframes = e.attribute("keyframes").split(";", QString::SkipEmptyParts);
256                 foreach(const QString str, keyframes) {
257                     int pos = str.section(":", 0, 0).toInt();
258                     double val = str.section(":", 1, 1).toDouble();
259                     m_keyframes[pos] = val;
260                 }
261                 update();
262                 return;
263             }
264         }
265     if (!m_keyframes.isEmpty()) {
266         m_keyframes.clear();
267         update();
268     }
269 }
270
271 QString ClipItem::keyframes(const int index) {
272     QString result;
273     QDomElement effect = effectAt(index);
274     QDomNodeList params = effect.elementsByTagName("parameter");
275
276     for (int i = 0; i < params.count(); i++) {
277         QDomElement e = params.item(i).toElement();
278         if (!e.isNull() && e.attribute("type") == "keyframe") {
279             result = e.attribute("keyframes");
280             break;
281         }
282     }
283     return result;
284 }
285
286 void ClipItem::updateKeyframeEffect() {
287     // regenerate xml parameter from the clip keyframes
288     QDomElement effect = effectAt(m_selectedEffect);
289     if (effect.attribute("disabled") == "1") return;
290     QDomNodeList params = effect.elementsByTagName("parameter");
291
292     for (int i = 0; i < params.count(); i++) {
293         QDomElement e = params.item(i).toElement();
294         if (!e.isNull() && e.attribute("type") == "keyframe") {
295             QString keyframes;
296             if (m_keyframes.count() > 1) {
297                 QMap<int, double>::const_iterator i = m_keyframes.constBegin();
298                 double x1;
299                 double y1;
300                 while (i != m_keyframes.constEnd()) {
301                     keyframes.append(QString::number(i.key()) + ":" + QString::number(i.value()) + ";");
302                     ++i;
303                 }
304             }
305             // Effect has a keyframe type parameter, we need to set the values
306             //kDebug() << ":::::::::::::::   SETTING EFFECT KEYFRAMES: " << keyframes;
307             e.setAttribute("keyframes", keyframes);
308             break;
309         }
310     }
311 }
312
313 QDomElement ClipItem::selectedEffect() {
314     if (m_selectedEffect == -1 || m_effectList.isEmpty()) return QDomElement();
315     return effectAt(m_selectedEffect);
316 }
317
318 void ClipItem::resetThumbs() {
319     m_startPix = QPixmap();
320     m_endPix = QPixmap();
321     slotFetchThumbs();
322     audioThumbCachePic.clear();
323 }
324
325
326 void ClipItem::refreshClip() {
327     m_maxDuration = m_clip->maxDuration();
328     if (m_clipType == COLOR) {
329         QString colour = m_clip->getProperty("colour");
330         colour = colour.replace(0, 2, "#");
331         setBrush(QColor(colour.left(7)));
332     } else slotFetchThumbs();
333 }
334
335 void ClipItem::slotFetchThumbs() {
336     if (m_endPix.isNull() && m_startPix.isNull()) {
337         m_startThumbRequested = true;
338         m_endThumbRequested = true;
339         emit getThumb((int)cropStart().frames(m_fps), (int)(cropStart() + cropDuration()).frames(m_fps) - 1);
340     } else {
341         if (m_endPix.isNull()) {
342             slotGetEndThumb();
343         }
344         if (m_startPix.isNull()) {
345             slotGetStartThumb();
346         }
347     }
348     /*
349         if (m_hasThumbs) {
350             if (m_endPix.isNull() && m_startPix.isNull()) {
351                 int frame1 = (int)m_cropStart.frames(m_fps);
352                 int frame2 = (int)(m_cropStart + m_cropDuration).frames(m_fps) - 1;
353                 //videoThumbProducer.setThumbFrames(m_clip->producer(), frame1, frame2);
354                 //videoThumbProducer.start(QThread::LowestPriority);
355             } else {
356                 if (m_endPix.isNull()) slotGetEndThumb();
357                 else slotGetStartThumb();
358             }
359
360         } else if (m_startPix.isNull()) slotGetStartThumb();*/
361 }
362
363 void ClipItem::slotGetStartThumb() {
364     m_startThumbRequested = true;
365     emit getThumb((int)cropStart().frames(m_fps), -1);
366     //videoThumbProducer.setThumbFrames(m_clip->producer(), (int)m_cropStart.frames(m_fps),  - 1);
367     //videoThumbProducer.start(QThread::LowestPriority);
368 }
369
370 void ClipItem::slotGetEndThumb() {
371     m_endThumbRequested = true;
372     emit getThumb(-1, (int)(cropStart() + cropDuration()).frames(m_fps) - 1);
373     //videoThumbProducer.setThumbFrames(m_clip->producer(), -1, (int)(m_cropStart + m_cropDuration).frames(m_fps) - 1);
374     //videoThumbProducer.start(QThread::LowestPriority);
375 }
376
377
378 void ClipItem::slotSetStartThumb(QImage img) {
379     if (!img.isNull() && img.format() == QImage::Format_ARGB32) {
380         QPixmap pix = QPixmap::fromImage(img);
381         m_startPix = pix;
382         QRectF r = sceneBoundingRect();
383         r.setRight(pix.width() + 2);
384         update(r);
385     }
386 }
387
388 void ClipItem::slotSetEndThumb(QImage img) {
389     if (!img.isNull() && img.format() == QImage::Format_ARGB32) {
390         QPixmap pix = QPixmap::fromImage(img);
391         m_endPix = pix;
392         QRectF r = sceneBoundingRect();
393         r.setLeft(r.right() - pix.width() - 2);
394         update(r);
395     }
396 }
397
398 void ClipItem::slotThumbReady(int frame, QPixmap pix) {
399     if (scene() == NULL) return;
400     QRectF r = sceneBoundingRect();
401     double width = m_startPix.width() / projectScene()->scale();
402     if (m_startThumbRequested && frame == cropStart().frames(m_fps)) {
403         m_startPix = pix;
404         m_startThumbRequested = false;
405         double height = r.height();
406         update(r.x(), r.y(), width, height);
407     } else if (m_endThumbRequested && frame == (cropStart() + cropDuration()).frames(m_fps) - 1) {
408         m_endPix = pix;
409         m_endThumbRequested = false;
410         double height = r.height();
411         update(r.right() - width, r.y(), width, height);
412     }
413 }
414
415 void ClipItem::slotSetStartThumb(QPixmap pix) {
416     m_startPix = pix;
417 }
418
419 void ClipItem::slotSetEndThumb(QPixmap pix) {
420     m_endPix = pix;
421 }
422
423 void ClipItem::slotGotAudioData() {
424     audioThumbReady = true;
425     if (m_clipType == AV) {
426         QRectF r = boundingRect();
427         r.setTop(r.top() + r.height() / 2 - 1);
428         update(r);
429     } else update();
430 }
431
432 int ClipItem::type() const {
433     return AVWIDGET;
434 }
435
436 DocClipBase *ClipItem::baseClip() const {
437     return m_clip;
438 }
439
440 QDomElement ClipItem::xml() const {
441     return m_clip->toXML();
442 }
443
444 int ClipItem::clipType() const {
445     return m_clipType;
446 }
447
448 QString ClipItem::clipName() const {
449     return m_clipName;
450 }
451
452 const QString &ClipItem::clipProducer() const {
453     return m_producer;
454 }
455
456 void ClipItem::flashClip() {
457     if (m_timeLine == 0) {
458         m_timeLine = new QTimeLine(750, this);
459         m_timeLine->setCurveShape(QTimeLine::EaseInOutCurve);
460         connect(m_timeLine, SIGNAL(valueChanged(qreal)), this, SLOT(animate(qreal)));
461     }
462     m_timeLine->start();
463 }
464
465 void ClipItem::animate(qreal value) {
466     QRectF r = boundingRect();
467     r.setHeight(20);
468     update(r);
469 }
470
471 // virtual
472 void ClipItem::paint(QPainter *painter,
473                      const QStyleOptionGraphicsItem *option,
474                      QWidget *) {
475     painter->setOpacity(m_opacity);
476     QBrush paintColor = brush();
477     if (isSelected()) paintColor = QBrush(QColor(79, 93, 121));
478     QRectF br = rect();
479     QRectF exposed = option->exposedRect;
480     QRectF mapped = painter->matrix().mapRect(br);
481
482     const double itemWidth = br.width();
483     const double itemHeight = br.height();
484     const double scale = option->matrix.m11();
485
486
487     //painter->setRenderHints(QPainter::Antialiasing);
488
489     //QPainterPath roundRectPathUpper = upperRectPart(br), roundRectPathLower = lowerRectPart(br);
490     painter->setClipRect(exposed);
491
492     //build path around clip
493     //QPainterPath resultClipPath = roundRectPathUpper.united(roundRectPathLower);
494     //painter->fillPath(resultClipPath, paintColor);
495     painter->fillRect(br, paintColor);
496
497     //painter->setClipPath(resultClipPath, Qt::IntersectClip);
498
499     // draw thumbnails
500     painter->setMatrixEnabled(false);
501
502     if (KdenliveSettings::videothumbnails()) {
503         QPen pen = painter->pen();
504         pen.setStyle(Qt::DotLine);
505         pen.setColor(Qt::white);
506         painter->setPen(pen);
507         if (m_clipType == IMAGE && !m_startPix.isNull()) {
508             QPointF p1 = painter->matrix().map(QPointF(itemWidth, 0)) - QPointF(m_startPix.width(), 0);
509             QPointF p2 = painter->matrix().map(QPointF(itemWidth, itemHeight)) - QPointF(m_startPix.width(), 0);
510             painter->drawPixmap(p1, m_startPix);
511             QLineF l(p1, p2);
512             painter->drawLine(l);
513         } else if (!m_endPix.isNull()) {
514             QPointF p1 = painter->matrix().map(QPointF(itemWidth, 0)) - QPointF(m_endPix.width(), 0);
515             QPointF p2 = painter->matrix().map(QPointF(itemWidth, itemHeight)) - QPointF(m_endPix.width(), 0);
516             painter->drawPixmap(p1, m_endPix);
517             QLineF l(p1, p2);
518             painter->drawLine(l);
519         }
520         if (!m_startPix.isNull()) {
521             QPointF p1 = painter->matrix().map(QPointF(0, 0));
522             QPointF p2 = painter->matrix().map(QPointF(0, itemHeight));
523             painter->drawPixmap(p1, m_startPix);
524             QLineF l2(p1.x() + m_startPix.width(), p1.y(), p2.x() + m_startPix.width(), p2.y());
525             painter->drawLine(l2);
526         }
527         painter->setPen(Qt::black);
528     }
529
530     // draw audio thumbnails
531     if (KdenliveSettings::audiothumbnails() && m_speed == 1.0 && ((m_clipType == AV && exposed.bottom() > (itemHeight / 2)) || m_clipType == AUDIO) && audioThumbReady) {
532
533         double startpixel = exposed.left();
534         if (startpixel < 0)
535             startpixel = 0;
536         double endpixel = exposed.right();
537         if (endpixel < 0)
538             endpixel = 0;
539         //kDebug()<<"///  REPAINTING AUDIO THMBS ZONE: "<<startpixel<<"x"<<endpixel;
540
541         /*QPainterPath path = m_clipType == AV ? roundRectPathLower : resultClipPath;*/
542         QRectF mappedRect;
543         if (m_clipType == AV) {
544             QRectF re =  br;
545             re.setTop(re.y() + re.height() / 2);
546             mappedRect = painter->matrix().mapRect(re);
547             //painter->fillRect(mappedRect, QBrush(QColor(200, 200, 200, 140)));
548         } else mappedRect = mapped;
549
550         int channels = baseClip()->getProperty("channels").toInt();
551         if (scale != framePixelWidth)
552             audioThumbCachePic.clear();
553         double cropLeft = m_cropStart.frames(m_fps);
554         const int clipStart = mappedRect.x();
555         const int mappedStartPixel =  painter->matrix().map(QPointF(startpixel + cropLeft, 0)).x() - clipStart;
556         const int mappedEndPixel =  painter->matrix().map(QPointF(endpixel + cropLeft, 0)).x() - clipStart;
557         cropLeft = cropLeft * scale;
558
559         if (channels >= 1) {
560             emit prepareAudioThumb(scale, mappedStartPixel, mappedEndPixel, channels);
561         }
562
563         for (int startCache = mappedStartPixel - (mappedStartPixel) % 100; startCache < mappedEndPixel; startCache += 100) {
564             if (audioThumbCachePic.contains(startCache) && !audioThumbCachePic[startCache].isNull())
565                 painter->drawPixmap(clipStart + startCache - cropLeft, mappedRect.y(),  audioThumbCachePic[startCache]);
566         }
567     }
568
569     // draw markers
570     QList < CommentedTime > markers = baseClip()->commentedSnapMarkers();
571     QList < CommentedTime >::Iterator it = markers.begin();
572     GenTime pos;
573     double framepos;
574     const int markerwidth = 4;
575     QBrush markerBrush;
576     markerBrush = QBrush(QColor(120, 120, 0, 140));
577     QPen pen = painter->pen();
578     pen.setColor(QColor(255, 255, 255, 200));
579     pen.setStyle(Qt::DotLine);
580     painter->setPen(pen);
581     for (; it != markers.end(); ++it) {
582         pos = (*it).time() - cropStart();
583         if (pos > GenTime()) {
584             if (pos > duration()) break;
585             QLineF l(br.x() + pos.frames(m_fps), br.y() + 5, br.x() + pos.frames(m_fps), br.bottom() - 5);
586             QLineF l2 = painter->matrix().map(l);
587             //framepos = scale * pos.frames(m_fps);
588             //QLineF l(framepos, 5, framepos, itemHeight - 5);
589             painter->drawLine(l2);
590             if (KdenliveSettings::showmarkers()) {
591                 framepos = br.x() + pos.frames(m_fps);
592                 const QRectF r1(framepos + 0.04, 10, itemWidth - framepos - 2, itemHeight - 10);
593                 const QRectF r2 = painter->matrix().mapRect(r1);
594                 const QRectF txtBounding = painter->boundingRect(r2, Qt::AlignLeft | Qt::AlignTop, " " + (*it).comment() + " ");
595
596                 QPainterPath path;
597                 path.addRoundedRect(txtBounding, 3, 3);
598                 painter->fillPath(path, markerBrush);
599                 painter->drawText(txtBounding, Qt::AlignCenter, (*it).comment());
600             }
601             //painter->fillRect(QRect(br.x() + framepos, br.y(), 10, br.height()), QBrush(QColor(0, 0, 0, 150)));
602         }
603     }
604     pen.setColor(Qt::black);
605     pen.setStyle(Qt::SolidLine);
606     painter->setPen(pen);
607
608     // draw start / end fades
609     QBrush fades;
610     if (isSelected()) {
611         fades = QBrush(QColor(200, 50, 50, 150));
612     } else fades = QBrush(QColor(200, 200, 200, 200));
613
614     if (m_startFade != 0) {
615         QPainterPath fadeInPath;
616         fadeInPath.moveTo(0, 0);
617         fadeInPath.lineTo(0, itemHeight);
618         fadeInPath.lineTo(m_startFade, 0);
619         fadeInPath.closeSubpath();
620         QPainterPath f1 = painter->matrix().map(fadeInPath);
621         painter->fillPath(f1/*.intersected(resultClipPath)*/, fades);
622         /*if (isSelected()) {
623             QLineF l(m_startFade * scale, 0, 0, itemHeight);
624             painter->drawLine(l);
625         }*/
626     }
627     if (m_endFade != 0) {
628         QPainterPath fadeOutPath;
629         fadeOutPath.moveTo(itemWidth, 0);
630         fadeOutPath.lineTo(itemWidth, itemHeight);
631         fadeOutPath.lineTo(itemWidth - m_endFade, 0);
632         fadeOutPath.closeSubpath();
633         QPainterPath f1 = painter->matrix().map(fadeOutPath);
634         painter->fillPath(f1/*.intersected(resultClipPath)*/, fades);
635         /*if (isSelected()) {
636             QLineF l(itemWidth - m_endFade * scale, 0, itemWidth, itemHeight);
637             painter->drawLine(l);
638         }*/
639     }
640
641     // Draw effects names
642     if (!m_effectNames.isEmpty() && itemWidth * scale > 40) {
643         QRectF txtBounding = painter->boundingRect(mapped, Qt::AlignLeft | Qt::AlignTop, m_effectNames);
644         txtBounding.setRight(txtBounding.right() + 15);
645         painter->setPen(Qt::white);
646         QBrush markerBrush(Qt::SolidPattern);
647         if (m_timeLine && m_timeLine->state() == QTimeLine::Running) {
648             qreal value = m_timeLine->currentValue();
649             txtBounding.setWidth(txtBounding.width() * value);
650             markerBrush.setColor(QColor(50 + 200 * (1.0 - value), 50, 50, 100 + 50 * value));
651         } else markerBrush.setColor(QColor(50, 50, 50, 150));
652         QPainterPath path;
653         path.addRoundedRect(txtBounding, 4, 4);
654         painter->fillPath(path/*.intersected(resultClipPath)*/, markerBrush);
655         painter->drawText(txtBounding, Qt::AlignCenter, m_effectNames);
656         painter->setPen(Qt::black);
657     }
658
659     // Draw clip name
660     QRectF txtBounding = painter->boundingRect(mapped, Qt::AlignHCenter | Qt::AlignVCenter, " " + m_clipName + " ");
661     painter->fillRect(txtBounding, QBrush(QColor(0, 0, 0, 150)));
662     //painter->setPen(QColor(0, 0, 0, 180));
663     //painter->drawText(txtBounding, Qt::AlignCenter, m_clipName);
664     txtBounding.translate(QPointF(1, 1));
665     painter->setPen(QColor(255, 255, 255, 255));
666     painter->drawText(txtBounding, Qt::AlignCenter, m_clipName);
667
668
669     // draw transition handles on hover
670     if (m_hover && itemWidth * scale > 40) {
671         QPointF p1 = painter->matrix().map(QPointF(0, itemHeight / 2)) + QPointF(10, 0);
672         painter->drawPixmap(p1, projectScene()->m_transitionPixmap);
673         p1 = painter->matrix().map(QPointF(itemWidth, itemHeight / 2)) - QPointF(22, 0);
674         painter->drawPixmap(p1, projectScene()->m_transitionPixmap);
675     }
676
677
678     // draw frame around clip
679     if (isSelected()) {
680         pen.setColor(Qt::red);
681         //pen.setWidth(2);
682     } else {
683         pen.setColor(Qt::black);
684         //pen.setWidth(1);
685     }
686
687     // draw effect or transition keyframes
688     if (itemWidth > 20) drawKeyFrames(painter, exposed);
689
690     painter->setMatrixEnabled(true);
691
692     // draw clip border
693
694     //kDebug()<<"/// ITEM PAINTING:: exposed="<<exposed<<", RECT = "<<rect();
695
696     // expand clip rect to allow correct painting of clip border
697     exposed.setRight(exposed.right() + 1 / scale + 0.5);
698     exposed.setBottom(exposed.bottom() + 1);
699     painter->setClipRect(exposed);
700     painter->setPen(pen);
701     painter->drawRect(br);
702 }
703
704
705 OPERATIONTYPE ClipItem::operationMode(QPointF pos) {
706     if (isSelected()) {
707         m_editedKeyframe = mouseOverKeyFrames(pos);
708         if (m_editedKeyframe != -1) return KEYFRAME;
709     }
710     QRectF rect = sceneBoundingRect();
711     const double scale = projectScene()->scale();
712     double maximumOffset = 6 / scale;
713
714     if (qAbs((int)(pos.x() - (rect.x() + m_startFade))) < maximumOffset  && qAbs((int)(pos.y() - rect.y())) < 6) {
715         if (m_startFade == 0) setToolTip(i18n("Add audio fade"));
716         else setToolTip(i18n("Audio fade duration: %1s", GenTime(m_startFade, m_fps).seconds()));
717         return FADEIN;
718     } else if (pos.x() - rect.x() < maximumOffset) {
719         setToolTip(i18n("Crop from start: %1s", cropStart().seconds()));
720         return RESIZESTART;
721     } else if (qAbs((int)(pos.x() - (rect.x() + rect.width() - m_endFade))) < maximumOffset && qAbs((int)(pos.y() - rect.y())) < 6) {
722         if (m_endFade == 0) setToolTip(i18n("Add audio fade"));
723         else setToolTip(i18n("Audio fade duration: %1s", GenTime(m_endFade, m_fps).seconds()));
724         return FADEOUT;
725     } else if (qAbs((int)(pos.x() - (rect.x() + rect.width()))) < maximumOffset) {
726         setToolTip(i18n("Clip duration: %1s", duration().seconds()));
727         return RESIZEEND;
728     } else if (qAbs((int)(pos.x() - (rect.x() + 16 / scale))) < maximumOffset && qAbs((int)(pos.y() - (rect.y() + rect.height() / 2 + 9))) < 6) {
729         setToolTip(i18n("Add transition"));
730         return TRANSITIONSTART;
731     } else if (qAbs((int)(pos.x() - (rect.x() + rect.width() - 21 / scale))) < maximumOffset && qAbs((int)(pos.y() - (rect.y() + rect.height() / 2 + 9))) < 6) {
732         setToolTip(i18n("Add transition"));
733         return TRANSITIONEND;
734     }
735     setToolTip(QString());
736     return MOVE;
737 }
738
739 QList <GenTime> ClipItem::snapMarkers() const {
740     QList < GenTime > snaps;
741     QList < GenTime > markers = baseClip()->snapMarkers();
742     GenTime pos;
743     double framepos;
744
745     for (int i = 0; i < markers.size(); i++) {
746         pos = markers.at(i) - cropStart();
747         if (pos > GenTime()) {
748             if (pos > duration()) break;
749             else snaps.append(pos + startPos());
750         }
751     }
752     return snaps;
753 }
754
755 QList <CommentedTime> ClipItem::commentedSnapMarkers() const {
756     QList < CommentedTime > snaps;
757     QList < CommentedTime > markers = baseClip()->commentedSnapMarkers();
758     GenTime pos;
759     double framepos;
760
761     for (int i = 0; i < markers.size(); i++) {
762         pos = markers.at(i).time() - cropStart();
763         if (pos > GenTime()) {
764             if (pos > duration()) break;
765             else snaps.append(CommentedTime(pos + startPos(), markers.at(i).comment()));
766         }
767     }
768     return snaps;
769 }
770
771 void ClipItem::slotPrepareAudioThumb(double pixelForOneFrame, int startpixel, int endpixel, int channels) {
772     QRectF re =  sceneBoundingRect();
773     if (m_clipType == AV) re.setTop(re.y() + re.height() / 2);
774
775     //kDebug() << "// PREP AUDIO THMB FRMO : scale:" << pixelForOneFrame<< ", from: " << startpixel << ", to: " << endpixel;
776     //if ( (!audioThumbWasDrawn || framePixelWidth!=pixelForOneFrame ) && !baseClip()->audioFrameChache.isEmpty()){
777
778     for (int startCache = startpixel - startpixel % 100;startCache < endpixel;startCache += 100) {
779         //kDebug() << "creating " << startCache;
780         //if (framePixelWidth!=pixelForOneFrame  ||
781         if (framePixelWidth == pixelForOneFrame && audioThumbCachePic.contains(startCache))
782             continue;
783         if (audioThumbCachePic[startCache].isNull() || framePixelWidth != pixelForOneFrame) {
784             audioThumbCachePic[startCache] = QPixmap(100, (int)(re.height()));
785             audioThumbCachePic[startCache].fill(QColor(180, 180, 200, 140));
786         }
787         bool fullAreaDraw = pixelForOneFrame < 10;
788         QMap<int, QPainterPath > positiveChannelPaths;
789         QMap<int, QPainterPath > negativeChannelPaths;
790         QPainter pixpainter(&audioThumbCachePic[startCache]);
791         QPen audiopen;
792         audiopen.setWidth(0);
793         pixpainter.setPen(audiopen);
794         //pixpainter.setRenderHint(QPainter::Antialiasing,true);
795         //pixpainter.drawLine(0,0,100,re.height());
796         // Bail out, if caller provided invalid data
797         if (channels <= 0) {
798             kWarning() << "Unable to draw image with " << channels << "number of channels";
799             return;
800         }
801
802         int channelHeight = audioThumbCachePic[startCache].height() / channels;
803
804         for (int i = 0;i < channels;i++) {
805
806             positiveChannelPaths[i].moveTo(0, channelHeight*i + channelHeight / 2);
807             negativeChannelPaths[i].moveTo(0, channelHeight*i + channelHeight / 2);
808         }
809
810         for (int samples = 0;samples <= 100;samples++) {
811             double frame = (double)(samples + startCache - 0) / pixelForOneFrame;
812             int sample = (int)((frame - (int)(frame)) * 20);   // AUDIO_FRAME_SIZE
813             if (frame < 0 || sample < 0 || sample > 19)
814                 continue;
815             QMap<int, QByteArray> frame_channel_data = baseClip()->audioFrameChache[(int)frame];
816
817             for (int channel = 0;channel < channels && frame_channel_data[channel].size() > 0;channel++) {
818
819                 int y = channelHeight * channel + channelHeight / 2;
820                 int delta = (int)(frame_channel_data[channel][sample] - 127 / 2)  * channelHeight / 64;
821                 if (fullAreaDraw) {
822                     positiveChannelPaths[channel].lineTo(samples, 0.1 + y + qAbs(delta));
823                     negativeChannelPaths[channel].lineTo(samples, 0.1 + y - qAbs(delta));
824                 } else {
825                     positiveChannelPaths[channel].lineTo(samples, 0.1 + y + delta);
826                     negativeChannelPaths[channel].lineTo(samples, 0.1 + y - delta);
827                 }
828             }
829             for (int channel = 0;channel < channels ;channel++)
830                 if (fullAreaDraw && samples == 100) {
831                     positiveChannelPaths[channel].lineTo(samples, channelHeight*channel + channelHeight / 2);
832                     negativeChannelPaths[channel].lineTo(samples, channelHeight*channel + channelHeight / 2);
833                     positiveChannelPaths[channel].lineTo(0, channelHeight*channel + channelHeight / 2);
834                     negativeChannelPaths[channel].lineTo(0, channelHeight*channel + channelHeight / 2);
835                 }
836
837         }
838         if (m_clipType != AV) pixpainter.setBrush(QBrush(QColor(200, 200, 100)));
839         else {
840             pixpainter.setPen(QPen(QColor(0, 0, 0)));
841             pixpainter.setBrush(QBrush(QColor(60, 60, 60)));
842         }
843         for (int i = 0;i < channels;i++) {
844             if (fullAreaDraw) {
845                 //pixpainter.fillPath(positiveChannelPaths[i].united(negativeChannelPaths[i]),QBrush(Qt::SolidPattern));//or singleif looks better
846                 pixpainter.drawPath(positiveChannelPaths[i].united(negativeChannelPaths[i]));//or singleif looks better
847             } else
848                 pixpainter.drawPath(positiveChannelPaths[i]);
849         }
850     }
851     //audioThumbWasDrawn=true;
852     framePixelWidth = pixelForOneFrame;
853
854     //}
855 }
856
857 uint ClipItem::fadeIn() const {
858     return m_startFade;
859 }
860
861 uint ClipItem::fadeOut() const {
862     return m_endFade;
863 }
864
865
866 void ClipItem::setFadeIn(int pos) {
867     int oldIn = m_startFade;
868     if (pos < 0) pos = 0;
869     if (pos > m_cropDuration.frames(m_fps)) pos = (int)(m_cropDuration.frames(m_fps) / 2);
870     m_startFade = pos;
871     QRectF rect = boundingRect();
872     update(rect.x(), rect.y(), qMax(oldIn, pos), rect.height());
873 }
874
875 void ClipItem::setFadeOut(int pos) {
876     int oldOut = m_endFade;
877     if (pos < 0) pos = 0;
878     if (pos > m_cropDuration.frames(m_fps)) pos = (int)(m_cropDuration.frames(m_fps) / 2);
879     m_endFade = pos;
880     QRectF rect = boundingRect();
881     update(rect.x() + rect.width() - qMax(oldOut, pos), rect.y(), pos, rect.height());
882
883 }
884
885 // virtual
886 void ClipItem::mousePressEvent(QGraphicsSceneMouseEvent * event) {
887     /*m_resizeMode = operationMode(event->pos());
888     if (m_resizeMode == MOVE) {
889       m_maxTrack = scene()->sceneRect().height();
890       m_grabPoint = (int) (event->pos().x() - rect().x());
891     }*/
892     QGraphicsRectItem::mousePressEvent(event);
893 }
894
895 // virtual
896 void ClipItem::mouseReleaseEvent(QGraphicsSceneMouseEvent * event) {
897     m_resizeMode = NONE;
898     QGraphicsRectItem::mouseReleaseEvent(event);
899 }
900
901 //virtual
902 void ClipItem::hoverEnterEvent(QGraphicsSceneHoverEvent *e) {
903     //if (e->pos().x() < 20) m_hover = true;
904     m_hover = true;
905     QRectF r = boundingRect();
906     double width = 35 / projectScene()->scale();
907     double height = r.height() / 2;
908     //WARNING: seems like it generates a full repaint of the clip, maybe not so good...
909     update(r.x(), r.y() + height, width, height);
910     update(r.right() - width, r.y() + height, width, height);
911 }
912
913 //virtual
914 void ClipItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *) {
915     m_hover = false;
916     QRectF r = boundingRect();
917     double width = 35 / projectScene()->scale();
918     double height = r.height() / 2;
919     //WARNING: seems like it generates a full repaint of the clip, maybe not so good...
920     update(r.x(), r.y() + height, width, height);
921     update(r.right() - width, r.y() + height, width, height);
922 }
923
924 void ClipItem::resizeStart(int posx, double speed) {
925     const int min = (startPos() - cropStart()).frames(m_fps);
926     if (posx < min) posx = min;
927     if (posx == startPos().frames(m_fps)) return;
928     const int previous = cropStart().frames(m_fps);
929     AbstractClipItem::resizeStart(posx, m_speed);
930     checkEffectsKeyframesPos(previous, cropStart().frames(m_fps), true);
931     if (m_hasThumbs && KdenliveSettings::videothumbnails()) {
932         /*connect(m_clip->thumbProducer(), SIGNAL(thumbReady(int, QPixmap)), this, SLOT(slotThumbReady(int, QPixmap)));*/
933         startThumbTimer->start(100);
934     }
935 }
936
937 void ClipItem::resizeEnd(int posx, double speed, bool updateKeyFrames) {
938     const int max = (startPos() - cropStart() + maxDuration()).frames(m_fps) + 1;
939     if (posx > max) posx = max;
940     if (posx == endPos().frames(m_fps)) return;
941     kDebug() << "// NEW POS: " << posx << ", OLD END: " << endPos().frames(m_fps);
942     const int previous = (cropStart() + duration()).frames(m_fps);
943     AbstractClipItem::resizeEnd(posx, m_speed);
944     if (updateKeyFrames) checkEffectsKeyframesPos(previous, (cropStart() + duration()).frames(m_fps), false);
945     if (m_hasThumbs && KdenliveSettings::videothumbnails()) {
946         /*connect(m_clip->thumbProducer(), SIGNAL(thumbReady(int, QPixmap)), this, SLOT(slotThumbReady(int, QPixmap)));*/
947         endThumbTimer->start(100);
948     }
949 }
950
951
952 void ClipItem::checkEffectsKeyframesPos(const int previous, const int current, bool fromStart) {
953     for (int i = 0; i < m_effectList.size(); i++) {
954         QDomElement effect = m_effectList.at(i);
955         QDomNodeList params = effect.elementsByTagName("parameter");
956         for (int j = 0; j < params.count(); j++) {
957             QDomElement e = params.item(i).toElement();
958             if (e.attribute("type") == "keyframe") {
959                 // parse keyframes and adjust values
960                 const QStringList keyframes = e.attribute("keyframes").split(";", QString::SkipEmptyParts);
961                 QMap <int, double> kfr;
962                 int pos;
963                 double val;
964                 foreach(const QString str, keyframes) {
965                     pos = str.section(":", 0, 0).toInt();
966                     val = str.section(":", 1, 1).toDouble();
967                     if (pos == previous) kfr[current] = val;
968                     else {
969                         if (fromStart && pos >= current) kfr[pos] = val;
970                         else if (!fromStart && pos <= current) kfr[pos] = val;
971                     }
972                 }
973                 QString newkfr;
974                 QMap<int, double>::const_iterator k = kfr.constBegin();
975                 while (k != kfr.constEnd()) {
976                     newkfr.append(QString::number(k.key()) + ":" + QString::number(k.value()) + ";");
977                     ++k;
978                 }
979                 e.setAttribute("keyframes", newkfr);
980                 break;
981             }
982         }
983     }
984     if (m_selectedEffect >= 0) setSelectedEffect(m_selectedEffect);
985 }
986
987
988 //virtual
989 QVariant ClipItem::itemChange(GraphicsItemChange change, const QVariant &value) {
990     if (change == ItemPositionChange && scene()) {
991         // calculate new position.
992         if (group() != 0) return pos();
993         QPointF newPos = value.toPointF();
994         //kDebug() << "/// MOVING CLIP ITEM.------------";
995         int xpos = projectScene()->getSnapPointForPos((int) newPos.x(), KdenliveSettings::snaptopoints());
996         xpos = qMax(xpos, 0);
997         newPos.setX(xpos);
998         int newTrack = (newPos.y() + KdenliveSettings::trackheight() / 2) / KdenliveSettings::trackheight();
999         newTrack = qMin(newTrack, projectScene()->tracksCount() - 1);
1000         newTrack = qMax(newTrack, 0);
1001         newPos.setY((int)(newTrack  * KdenliveSettings::trackheight() + 1));
1002         // Only one clip is moving
1003         QRectF sceneShape = rect();
1004         sceneShape.translate(newPos);
1005         QList<QGraphicsItem*> items = scene()->items(sceneShape, Qt::IntersectsItemShape);
1006         items.removeAll(this);
1007
1008         if (!items.isEmpty()) {
1009             for (int i = 0; i < items.count(); i++) {
1010                 if (items.at(i)->type() == type()) {
1011                     // Collision!
1012                     QPointF otherPos = items.at(i)->pos();
1013                     if ((int) otherPos.y() != (int) pos().y()) return pos();
1014                     if (pos().x() < otherPos.x()) {
1015                         // move clip just before colliding clip
1016                         int npos = (static_cast < AbstractClipItem* >(items.at(i))->startPos() - m_cropDuration).frames(m_fps);
1017                         // check we don't run into another clip
1018                         newPos.setX(npos);
1019                         sceneShape = rect();
1020                         sceneShape.translate(newPos);
1021                         QList<QGraphicsItem*> subitems = scene()->items(sceneShape, Qt::IntersectsItemShape);
1022                         items.removeAll(this);
1023                         for (int j = 0; j < subitems.count(); j++) {
1024                             if (subitems.at(j)->type() == type()) return pos();
1025                         }
1026                     } else {
1027                         // get pos just after colliding clip
1028                         int npos = static_cast < AbstractClipItem* >(items.at(i))->endPos().frames(m_fps);
1029                         // check we don't run into another clip
1030                         newPos.setX(npos);
1031                         sceneShape = rect();
1032                         sceneShape.translate(newPos);
1033                         QList<QGraphicsItem*> subitems = scene()->items(sceneShape, Qt::IntersectsItemShape);
1034                         items.removeAll(this);
1035                         for (int j = 0; j < subitems.count(); j++) {
1036                             if (subitems.at(j)->type() == type()) return pos();
1037                         }
1038                     }
1039                     m_track = newTrack;
1040                     m_startPos = GenTime((int) newPos.x(), m_fps);
1041                     return newPos;
1042                 }
1043             }
1044         }
1045         m_track = newTrack;
1046         m_startPos = GenTime((int) newPos.x(), m_fps);
1047         //kDebug()<<"// ITEM NEW POS: "<<newPos.x()<<", mapped: "<<mapToScene(newPos.x(), 0).x();
1048         return newPos;
1049     }
1050     return QGraphicsItem::itemChange(change, value);
1051 }
1052
1053 // virtual
1054 /*void ClipItem::mouseMoveEvent(QGraphicsSceneMouseEvent * event) {
1055 }*/
1056
1057 int ClipItem::effectsCounter() {
1058     return effectsCount() + 1;
1059 }
1060
1061 int ClipItem::effectsCount() {
1062     return m_effectList.size();
1063 }
1064
1065 int ClipItem::hasEffect(const QString &tag, const QString &id) const {
1066     return m_effectList.hasEffect(tag, id);
1067 }
1068
1069 QStringList ClipItem::effectNames() {
1070     return m_effectList.effectNames();
1071 }
1072
1073 QDomElement ClipItem::effectAt(int ix) {
1074     if (ix > m_effectList.count() - 1 || ix < 0) return QDomElement();
1075     return m_effectList.at(ix);
1076 }
1077
1078 void ClipItem::setEffectAt(int ix, QDomElement effect) {
1079     kDebug() << "CHange EFFECT AT: " << ix << ", CURR: " << m_effectList.at(ix).attribute("tag") << ", NEW: " << effect.attribute("tag");
1080     effect.setAttribute("kdenlive_ix", ix + 1);
1081     m_effectList.insert(ix, effect);
1082     m_effectList.removeAt(ix + 1);
1083     m_effectNames = m_effectList.effectNames().join(" / ");
1084     if (effect.attribute("id") == "fadein" || effect.attribute("id") == "fadeout") update(boundingRect());
1085     else {
1086         QRectF r = boundingRect();
1087         r.setHeight(20);
1088         update(r);
1089     }
1090 }
1091
1092 QHash <QString, QString> ClipItem::addEffect(QDomElement effect, bool animate) {
1093     QHash <QString, QString> effectParams;
1094     bool needRepaint = false;
1095     /*QDomDocument doc;
1096     doc.appendChild(doc.importNode(effect, true));
1097     kDebug() << "///////  CLIP ADD EFFECT: " << doc.toString();*/
1098     m_effectList.append(effect);
1099     effectParams["tag"] = effect.attribute("tag");
1100     QString effectId = effect.attribute("id");
1101     if (effectId.isEmpty()) effectId = effect.attribute("tag");
1102     effectParams["id"] = effectId;
1103     effectParams["kdenlive_ix"] = effect.attribute("kdenlive_ix");
1104     QString state = effect.attribute("disabled");
1105     if (!state.isEmpty()) effectParams["disabled"] = state;
1106     QDomNodeList params = effect.elementsByTagName("parameter");
1107     int fade = 0;
1108     for (int i = 0; i < params.count(); i++) {
1109         QDomElement e = params.item(i).toElement();
1110         if (!e.isNull()) {
1111             if (e.attribute("type") == "keyframe") {
1112                 effectParams["keyframes"] = e.attribute("keyframes");
1113                 effectParams["min"] = e.attribute("min");
1114                 effectParams["max"] = e.attribute("max");
1115                 effectParams["factor"] = e.attribute("factor", "1");
1116                 effectParams["starttag"] = e.attribute("starttag", "start");
1117                 effectParams["endtag"] = e.attribute("endtag", "end");
1118             }
1119
1120             double f = e.attribute("factor", "1").toDouble();
1121
1122             if (f == 1) {
1123                 effectParams[e.attribute("name")] = e.attribute("value");
1124                 // check if it is a fade effect
1125                 if (effectId == "fadein") {
1126                     needRepaint = true;
1127                     if (e.attribute("name") == "out") fade += e.attribute("value").toInt();
1128                     else if (e.attribute("name") == "in") fade -= e.attribute("value").toInt();
1129                 } else if (effectId == "fadeout") {
1130                     needRepaint = true;
1131                     if (e.attribute("name") == "out") fade -= e.attribute("value").toInt();
1132                     else if (e.attribute("name") == "in") fade += e.attribute("value").toInt();
1133                 }
1134             } else {
1135                 effectParams[e.attribute("name")] =  QString::number(e.attribute("value").toDouble() / f);
1136             }
1137         }
1138     }
1139     m_effectNames = m_effectList.effectNames().join(" / ");
1140     if (fade > 0) m_startFade = fade;
1141     else if (fade < 0) m_endFade = -fade;
1142     if (needRepaint) update(boundingRect());
1143     if (animate) {
1144         flashClip();
1145     } else if (!needRepaint) {
1146         QRectF r = boundingRect();
1147         r.setHeight(20);
1148         update(r);
1149     }
1150     if (m_selectedEffect == -1) {
1151         m_selectedEffect = 0;
1152         setSelectedEffect(m_selectedEffect);
1153     }
1154     return effectParams;
1155 }
1156
1157 QHash <QString, QString> ClipItem::getEffectArgs(QDomElement effect) {
1158     QHash <QString, QString> effectParams;
1159     effectParams["tag"] = effect.attribute("tag");
1160     effectParams["kdenlive_ix"] = effect.attribute("kdenlive_ix");
1161     effectParams["id"] = effect.attribute("id");
1162     QString state = effect.attribute("disabled");
1163     if (!state.isEmpty()) effectParams["disabled"] = state;
1164     QDomNodeList params = effect.elementsByTagName("parameter");
1165     for (int i = 0; i < params.count(); i++) {
1166         QDomElement e = params.item(i).toElement();
1167         //kDebug() << "/ / / /SENDING EFFECT PARAM: " << e.attribute("type") << ", NAME_ " << e.attribute("tag");
1168         if (e.attribute("type") == "keyframe") {
1169             kDebug() << "/ / / /SENDING KEYFR EFFECT TYPE";
1170             effectParams["keyframes"] = e.attribute("keyframes");
1171             effectParams["max"] = e.attribute("max");
1172             effectParams["min"] = e.attribute("min");
1173             effectParams["factor"] = e.attribute("factor", "1");
1174             effectParams["starttag"] = e.attribute("starttag", "start");
1175             effectParams["endtag"] = e.attribute("endtag", "end");
1176         } else if (e.attribute("namedesc").contains(";")) {
1177             QString format = e.attribute("format");
1178             QStringList separators = format.split("%d", QString::SkipEmptyParts);
1179             QStringList values = e.attribute("value").split(QRegExp("[,:;x]"));
1180             QString neu;
1181             QTextStream txtNeu(&neu);
1182             if (values.size() > 0)
1183                 txtNeu << (int)values[0].toDouble();
1184             for (int i = 0;i < separators.size() && i + 1 < values.size();i++) {
1185                 txtNeu << separators[i];
1186                 txtNeu << (int)(values[i+1].toDouble());
1187             }
1188             effectParams["start"] = neu;
1189         } else {
1190             if (e.attribute("factor", "1") != "1")
1191                 effectParams[e.attribute("name")] =  QString::number(e.attribute("value").toDouble() / e.attribute("factor").toDouble());
1192             else effectParams[e.attribute("name")] = e.attribute("value");
1193         }
1194     }
1195     return effectParams;
1196 }
1197
1198 void ClipItem::deleteEffect(QString index) {
1199     bool needRepaint = false;
1200     QString ix;
1201     for (int i = 0; i < m_effectList.size(); ++i) {
1202         ix = m_effectList.at(i).attribute("kdenlive_ix");
1203         if (ix == index) {
1204             if (m_effectList.at(i).attribute("id") == "fadein") {
1205                 m_startFade = 0;
1206                 needRepaint = true;
1207             } else if (m_effectList.at(i).attribute("id") == "fadeout") {
1208                 m_endFade = 0;
1209                 needRepaint = true;
1210             }
1211             m_effectList.removeAt(i);
1212         } else if (ix.toInt() > index.toInt()) m_effectList[i].setAttribute("kdenlive_ix", ix.toInt() - 1);
1213     }
1214     m_effectNames = m_effectList.effectNames().join(" / ");
1215     if (needRepaint) update(boundingRect());
1216     flashClip();
1217 }
1218
1219 double ClipItem::speed() const {
1220     return m_speed;
1221 }
1222
1223 void ClipItem::setSpeed(const double speed) {
1224     m_speed = speed;
1225     if (m_speed == 1.0) m_clipName = baseClip()->name();
1226     else m_clipName = baseClip()->name() + " - " + QString::number(speed * 100, 'f', 0) + "%";
1227     //update();
1228 }
1229
1230 GenTime ClipItem::maxDuration() const {
1231     return m_maxDuration / m_speed;
1232 }
1233
1234 GenTime ClipItem::cropStart() const {
1235     return m_cropStart / m_speed;
1236 }
1237
1238 GenTime ClipItem::cropDuration() const {
1239     return m_cropDuration / m_speed;
1240 }
1241
1242 GenTime ClipItem::endPos() const {
1243     return m_startPos + cropDuration();
1244 }
1245
1246 //virtual
1247 void ClipItem::dropEvent(QGraphicsSceneDragDropEvent * event) {
1248     QString effects = QString(event->mimeData()->data("kdenlive/effectslist"));
1249     QDomDocument doc;
1250     doc.setContent(effects, true);
1251     QDomElement e = doc.documentElement();
1252     CustomTrackView *view = (CustomTrackView *) scene()->views()[0];
1253     if (view) view->slotAddEffect(e, m_startPos, track());
1254 }
1255
1256 //virtual
1257 void ClipItem::dragEnterEvent(QGraphicsSceneDragDropEvent *event) {
1258     event->setAccepted(event->mimeData()->hasFormat("kdenlive/effectslist"));
1259 }
1260
1261 void ClipItem::dragLeaveEvent(QGraphicsSceneDragDropEvent *event) {
1262     Q_UNUSED(event);
1263 }
1264 void ClipItem::addTransition(Transition* t) {
1265     m_transitionsList.append(t);
1266     CustomTrackView *view = (CustomTrackView *) scene()->views()[0];
1267     QDomDocument doc;
1268     QDomElement e = doc.documentElement();
1269     //if (view) view->slotAddTransition(this, t->toXML() , t->startPos(), track());
1270 }
1271 // virtual
1272 /*
1273 void CustomTrackView::mousePressEvent ( QMouseEvent * event )
1274 {
1275   int pos = event->x();
1276   if (event->modifiers() == Qt::ControlModifier)
1277     setDragMode(QGraphicsView::ScrollHandDrag);
1278   else if (event->modifiers() == Qt::ShiftModifier)
1279     setDragMode(QGraphicsView::RubberBandDrag);
1280   else {
1281     QGraphicsItem * item = itemAt(event->pos());
1282     if (item) {
1283     }
1284     else emit cursorMoved((int) mapToScene(event->x(), 0).x());
1285   }
1286   kDebug()<<pos;
1287   QGraphicsView::mousePressEvent(event);
1288 }
1289
1290 void CustomTrackView::mouseReleaseEvent ( QMouseEvent * event )
1291 {
1292   QGraphicsView::mouseReleaseEvent(event);
1293   setDragMode(QGraphicsView::NoDrag);
1294 }
1295 */
1296
1297 #include "clipitem.moc"