]> git.sesse.net Git - kdenlive/blob - src/clipitem.cpp
Fix clip border not correctly drawn, should solve part 2 of this 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)m_cropStart.frames(m_fps), (int)(m_cropStart + m_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)m_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)(m_cropStart + m_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 == m_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 == (m_cropStart + m_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_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         emit prepareAudioThumb(scale, mappedStartPixel, mappedEndPixel, channels);
560
561         for (int startCache = mappedStartPixel - (mappedStartPixel) % 100; startCache < mappedEndPixel; startCache += 100) {
562             if (audioThumbCachePic.contains(startCache) && !audioThumbCachePic[startCache].isNull())
563                 painter->drawPixmap(clipStart + startCache - cropLeft, mappedRect.y(),  audioThumbCachePic[startCache]);
564         }
565     }
566
567     // draw markers
568     QList < CommentedTime > markers = baseClip()->commentedSnapMarkers();
569     QList < CommentedTime >::Iterator it = markers.begin();
570     GenTime pos;
571     double framepos;
572     const int markerwidth = 4;
573     QBrush markerBrush;
574     markerBrush = QBrush(QColor(120, 120, 0, 140));
575     QPen pen = painter->pen();
576     pen.setColor(QColor(255, 255, 255, 200));
577     pen.setStyle(Qt::DotLine);
578     painter->setPen(pen);
579     for (; it != markers.end(); ++it) {
580         pos = (*it).time() - cropStart();
581         if (pos > GenTime()) {
582             if (pos > duration()) break;
583             QLineF l(br.x() + pos.frames(m_fps), br.y() + 5, br.x() + pos.frames(m_fps), br.bottom() - 5);
584             QLineF l2 = painter->matrix().map(l);
585             //framepos = scale * pos.frames(m_fps);
586             //QLineF l(framepos, 5, framepos, itemHeight - 5);
587             painter->drawLine(l2);
588             if (KdenliveSettings::showmarkers()) {
589                 framepos = br.x() + pos.frames(m_fps);
590                 const QRectF r1(framepos + 0.04, 10, itemWidth - framepos - 2, itemHeight - 10);
591                 const QRectF r2 = painter->matrix().mapRect(r1);
592                 const QRectF txtBounding = painter->boundingRect(r2, Qt::AlignLeft | Qt::AlignTop, " " + (*it).comment() + " ");
593
594                 QPainterPath path;
595                 path.addRoundedRect(txtBounding, 3, 3);
596                 painter->fillPath(path, markerBrush);
597                 painter->drawText(txtBounding, Qt::AlignCenter, (*it).comment());
598             }
599             //painter->fillRect(QRect(br.x() + framepos, br.y(), 10, br.height()), QBrush(QColor(0, 0, 0, 150)));
600         }
601     }
602     pen.setColor(Qt::black);
603     pen.setStyle(Qt::SolidLine);
604     painter->setPen(pen);
605
606     // draw start / end fades
607     QBrush fades;
608     if (isSelected()) {
609         fades = QBrush(QColor(200, 50, 50, 150));
610     } else fades = QBrush(QColor(200, 200, 200, 200));
611
612     if (m_startFade != 0) {
613         QPainterPath fadeInPath;
614         fadeInPath.moveTo(0, 0);
615         fadeInPath.lineTo(0, itemHeight);
616         fadeInPath.lineTo(m_startFade, 0);
617         fadeInPath.closeSubpath();
618         QPainterPath f1 = painter->matrix().map(fadeInPath);
619         painter->fillPath(f1/*.intersected(resultClipPath)*/, fades);
620         /*if (isSelected()) {
621             QLineF l(m_startFade * scale, 0, 0, itemHeight);
622             painter->drawLine(l);
623         }*/
624     }
625     if (m_endFade != 0) {
626         QPainterPath fadeOutPath;
627         fadeOutPath.moveTo(itemWidth, 0);
628         fadeOutPath.lineTo(itemWidth, itemHeight);
629         fadeOutPath.lineTo(itemWidth - m_endFade, 0);
630         fadeOutPath.closeSubpath();
631         QPainterPath f1 = painter->matrix().map(fadeOutPath);
632         painter->fillPath(f1/*.intersected(resultClipPath)*/, fades);
633         /*if (isSelected()) {
634             QLineF l(itemWidth - m_endFade * scale, 0, itemWidth, itemHeight);
635             painter->drawLine(l);
636         }*/
637     }
638
639     // Draw effects names
640     if (!m_effectNames.isEmpty() && itemWidth * scale > 40) {
641         QRectF txtBounding = painter->boundingRect(mapped, Qt::AlignLeft | Qt::AlignTop, m_effectNames);
642         txtBounding.setRight(txtBounding.right() + 15);
643         painter->setPen(Qt::white);
644         QBrush markerBrush(Qt::SolidPattern);
645         if (m_timeLine && m_timeLine->state() == QTimeLine::Running) {
646             qreal value = m_timeLine->currentValue();
647             txtBounding.setWidth(txtBounding.width() * value);
648             markerBrush.setColor(QColor(50 + 200 * (1.0 - value), 50, 50, 100 + 50 * value));
649         } else markerBrush.setColor(QColor(50, 50, 50, 150));
650         QPainterPath path;
651         path.addRoundedRect(txtBounding, 4, 4);
652         painter->fillPath(path/*.intersected(resultClipPath)*/, markerBrush);
653         painter->drawText(txtBounding, Qt::AlignCenter, m_effectNames);
654         painter->setPen(Qt::black);
655     }
656
657     // Draw clip name
658     QRectF txtBounding = painter->boundingRect(mapped, Qt::AlignHCenter | Qt::AlignVCenter, " " + m_clipName + " ");
659     painter->fillRect(txtBounding, QBrush(QColor(0, 0, 0, 150)));
660     //painter->setPen(QColor(0, 0, 0, 180));
661     //painter->drawText(txtBounding, Qt::AlignCenter, m_clipName);
662     txtBounding.translate(QPointF(1, 1));
663     painter->setPen(QColor(255, 255, 255, 255));
664     painter->drawText(txtBounding, Qt::AlignCenter, m_clipName);
665
666
667     // draw transition handles on hover
668     if (m_hover && itemWidth * scale > 40) {
669         QPointF p1 = painter->matrix().map(QPointF(0, itemHeight / 2)) + QPointF(10, 0);
670         painter->drawPixmap(p1, projectScene()->m_transitionPixmap);
671         p1 = painter->matrix().map(QPointF(itemWidth, itemHeight / 2)) - QPointF(22, 0);
672         painter->drawPixmap(p1, projectScene()->m_transitionPixmap);
673     }
674
675
676     // draw frame around clip
677     if (isSelected()) {
678         pen.setColor(Qt::red);
679         //pen.setWidth(2);
680     } else {
681         pen.setColor(Qt::black);
682         //pen.setWidth(1);
683     }
684
685     // draw effect or transition keyframes
686     if (itemWidth > 20) drawKeyFrames(painter, exposed);
687
688     painter->setMatrixEnabled(true);
689
690     // draw clip border
691
692     //kDebug()<<"/// ITEM PAINTING:: exposed="<<exposed<<", RECT = "<<rect();
693
694     // expand clip rect to allow correct painting of clip border
695     exposed.setRight(exposed.right() + 1 / scale + 0.5);
696     exposed.setBottom(exposed.bottom() + 1);
697     painter->setClipRect(exposed);
698     painter->setPen(pen);
699     painter->drawRect(br);
700 }
701
702
703 OPERATIONTYPE ClipItem::operationMode(QPointF pos) {
704     if (isSelected()) {
705         m_editedKeyframe = mouseOverKeyFrames(pos);
706         if (m_editedKeyframe != -1) return KEYFRAME;
707     }
708     QRectF rect = sceneBoundingRect();
709     const double scale = projectScene()->scale();
710     double maximumOffset = 6 / scale;
711
712     if (qAbs((int)(pos.x() - (rect.x() + m_startFade))) < maximumOffset  && qAbs((int)(pos.y() - rect.y())) < 6) {
713         if (m_startFade == 0) setToolTip(i18n("Add audio fade"));
714         else setToolTip(i18n("Audio fade duration: %1s", GenTime(m_startFade, m_fps).seconds()));
715         return FADEIN;
716     } else if (pos.x() - rect.x() < maximumOffset) {
717         setToolTip(i18n("Crop from start: %1s", cropStart().seconds()));
718         return RESIZESTART;
719     } else if (qAbs((int)(pos.x() - (rect.x() + rect.width() - m_endFade))) < maximumOffset && qAbs((int)(pos.y() - rect.y())) < 6) {
720         if (m_endFade == 0) setToolTip(i18n("Add audio fade"));
721         else setToolTip(i18n("Audio fade duration: %1s", GenTime(m_endFade, m_fps).seconds()));
722         return FADEOUT;
723     } else if (qAbs((int)(pos.x() - (rect.x() + rect.width()))) < maximumOffset) {
724         setToolTip(i18n("Clip duration: %1s", duration().seconds()));
725         return RESIZEEND;
726     } else if (qAbs((int)(pos.x() - (rect.x() + 16 / scale))) < maximumOffset && qAbs((int)(pos.y() - (rect.y() + rect.height() / 2 + 9))) < 6) {
727         setToolTip(i18n("Add transition"));
728         return TRANSITIONSTART;
729     } else if (qAbs((int)(pos.x() - (rect.x() + rect.width() - 21 / scale))) < maximumOffset && qAbs((int)(pos.y() - (rect.y() + rect.height() / 2 + 9))) < 6) {
730         setToolTip(i18n("Add transition"));
731         return TRANSITIONEND;
732     }
733     setToolTip(QString());
734     return MOVE;
735 }
736
737 QList <GenTime> ClipItem::snapMarkers() const {
738     QList < GenTime > snaps;
739     QList < GenTime > markers = baseClip()->snapMarkers();
740     GenTime pos;
741     double framepos;
742
743     for (int i = 0; i < markers.size(); i++) {
744         pos = markers.at(i) - cropStart();
745         if (pos > GenTime()) {
746             if (pos > duration()) break;
747             else snaps.append(pos + startPos());
748         }
749     }
750     return snaps;
751 }
752
753 QList <CommentedTime> ClipItem::commentedSnapMarkers() const {
754     QList < CommentedTime > snaps;
755     QList < CommentedTime > markers = baseClip()->commentedSnapMarkers();
756     GenTime pos;
757     double framepos;
758
759     for (int i = 0; i < markers.size(); i++) {
760         pos = markers.at(i).time() - cropStart();
761         if (pos > GenTime()) {
762             if (pos > duration()) break;
763             else snaps.append(CommentedTime(pos + startPos(), markers.at(i).comment()));
764         }
765     }
766     return snaps;
767 }
768
769 void ClipItem::slotPrepareAudioThumb(double pixelForOneFrame, int startpixel, int endpixel, int channels) {
770     QRectF re =  sceneBoundingRect();
771     if (m_clipType == AV) re.setTop(re.y() + re.height() / 2);
772
773     //kDebug() << "// PREP AUDIO THMB FRMO : scale:" << pixelForOneFrame<< ", from: " << startpixel << ", to: " << endpixel;
774     //if ( (!audioThumbWasDrawn || framePixelWidth!=pixelForOneFrame ) && !baseClip()->audioFrameChache.isEmpty()){
775
776     for (int startCache = startpixel - startpixel % 100;startCache < endpixel;startCache += 100) {
777         //kDebug() << "creating " << startCache;
778         //if (framePixelWidth!=pixelForOneFrame  ||
779         if (framePixelWidth == pixelForOneFrame && audioThumbCachePic.contains(startCache))
780             continue;
781         if (audioThumbCachePic[startCache].isNull() || framePixelWidth != pixelForOneFrame) {
782             audioThumbCachePic[startCache] = QPixmap(100, (int)(re.height()));
783             audioThumbCachePic[startCache].fill(QColor(180, 180, 200, 140));
784         }
785         bool fullAreaDraw = pixelForOneFrame < 10;
786         QMap<int, QPainterPath > positiveChannelPaths;
787         QMap<int, QPainterPath > negativeChannelPaths;
788         QPainter pixpainter(&audioThumbCachePic[startCache]);
789         QPen audiopen;
790         audiopen.setWidth(0);
791         pixpainter.setPen(audiopen);
792         //pixpainter.setRenderHint(QPainter::Antialiasing,true);
793         //pixpainter.drawLine(0,0,100,re.height());
794         int channelHeight = audioThumbCachePic[startCache].height() / channels;
795
796         for (int i = 0;i < channels;i++) {
797
798             positiveChannelPaths[i].moveTo(0, channelHeight*i + channelHeight / 2);
799             negativeChannelPaths[i].moveTo(0, channelHeight*i + channelHeight / 2);
800         }
801
802         for (int samples = 0;samples <= 100;samples++) {
803             double frame = (double)(samples + startCache - 0) / pixelForOneFrame;
804             int sample = (int)((frame - (int)(frame)) * 20);   // AUDIO_FRAME_SIZE
805             if (frame < 0 || sample < 0 || sample > 19)
806                 continue;
807             QMap<int, QByteArray> frame_channel_data = baseClip()->audioFrameChache[(int)frame];
808
809             for (int channel = 0;channel < channels && frame_channel_data[channel].size() > 0;channel++) {
810
811                 int y = channelHeight * channel + channelHeight / 2;
812                 int delta = (int)(frame_channel_data[channel][sample] - 127 / 2)  * channelHeight / 64;
813                 if (fullAreaDraw) {
814                     positiveChannelPaths[channel].lineTo(samples, 0.1 + y + qAbs(delta));
815                     negativeChannelPaths[channel].lineTo(samples, 0.1 + y - qAbs(delta));
816                 } else {
817                     positiveChannelPaths[channel].lineTo(samples, 0.1 + y + delta);
818                     negativeChannelPaths[channel].lineTo(samples, 0.1 + y - delta);
819                 }
820             }
821             for (int channel = 0;channel < channels ;channel++)
822                 if (fullAreaDraw && samples == 100) {
823                     positiveChannelPaths[channel].lineTo(samples, channelHeight*channel + channelHeight / 2);
824                     negativeChannelPaths[channel].lineTo(samples, channelHeight*channel + channelHeight / 2);
825                     positiveChannelPaths[channel].lineTo(0, channelHeight*channel + channelHeight / 2);
826                     negativeChannelPaths[channel].lineTo(0, channelHeight*channel + channelHeight / 2);
827                 }
828
829         }
830         if (m_clipType != AV) pixpainter.setBrush(QBrush(QColor(200, 200, 100)));
831         else {
832             pixpainter.setPen(QPen(QColor(0, 0, 0)));
833             pixpainter.setBrush(QBrush(QColor(60, 60, 60)));
834         }
835         for (int i = 0;i < channels;i++) {
836             if (fullAreaDraw) {
837                 //pixpainter.fillPath(positiveChannelPaths[i].united(negativeChannelPaths[i]),QBrush(Qt::SolidPattern));//or singleif looks better
838                 pixpainter.drawPath(positiveChannelPaths[i].united(negativeChannelPaths[i]));//or singleif looks better
839             } else
840                 pixpainter.drawPath(positiveChannelPaths[i]);
841         }
842     }
843     //audioThumbWasDrawn=true;
844     framePixelWidth = pixelForOneFrame;
845
846     //}
847 }
848
849 uint ClipItem::fadeIn() const {
850     return m_startFade;
851 }
852
853 uint ClipItem::fadeOut() const {
854     return m_endFade;
855 }
856
857
858 void ClipItem::setFadeIn(int pos) {
859     int oldIn = m_startFade;
860     if (pos < 0) pos = 0;
861     if (pos > m_cropDuration.frames(m_fps)) pos = (int)(m_cropDuration.frames(m_fps) / 2);
862     m_startFade = pos;
863     QRectF rect = boundingRect();
864     update(rect.x(), rect.y(), qMax(oldIn, pos), rect.height());
865 }
866
867 void ClipItem::setFadeOut(int pos) {
868     int oldOut = m_endFade;
869     if (pos < 0) pos = 0;
870     if (pos > m_cropDuration.frames(m_fps)) pos = (int)(m_cropDuration.frames(m_fps) / 2);
871     m_endFade = pos;
872     QRectF rect = boundingRect();
873     update(rect.x() + rect.width() - qMax(oldOut, pos), rect.y(), pos, rect.height());
874
875 }
876
877 // virtual
878 void ClipItem::mousePressEvent(QGraphicsSceneMouseEvent * event) {
879     /*m_resizeMode = operationMode(event->pos());
880     if (m_resizeMode == MOVE) {
881       m_maxTrack = scene()->sceneRect().height();
882       m_grabPoint = (int) (event->pos().x() - rect().x());
883     }*/
884     QGraphicsRectItem::mousePressEvent(event);
885 }
886
887 // virtual
888 void ClipItem::mouseReleaseEvent(QGraphicsSceneMouseEvent * event) {
889     m_resizeMode = NONE;
890     QGraphicsRectItem::mouseReleaseEvent(event);
891 }
892
893 //virtual
894 void ClipItem::hoverEnterEvent(QGraphicsSceneHoverEvent *e) {
895     //if (e->pos().x() < 20) m_hover = true;
896     m_hover = true;
897     QRectF r = boundingRect();
898     double width = 35 / projectScene()->scale();
899     double height = r.height() / 2;
900     //WARNING: seems like it generates a full repaint of the clip, maybe not so good...
901     update(r.x(), r.y() + height, width, height);
902     update(r.right() - width, r.y() + height, width, height);
903 }
904
905 //virtual
906 void ClipItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *) {
907     m_hover = false;
908     QRectF r = boundingRect();
909     double width = 35 / projectScene()->scale();
910     double height = r.height() / 2;
911     //WARNING: seems like it generates a full repaint of the clip, maybe not so good...
912     update(r.x(), r.y() + height, width, height);
913     update(r.right() - width, r.y() + height, width, height);
914 }
915
916 void ClipItem::resizeStart(int posx) {
917     const int min = (startPos() - cropStart()).frames(m_fps);
918     if (posx < min) posx = min;
919     if (posx == startPos().frames(m_fps)) return;
920     const int previous = cropStart().frames(m_fps);
921     AbstractClipItem::resizeStart(posx);
922     checkEffectsKeyframesPos(previous, cropStart().frames(m_fps), true);
923     if (m_hasThumbs && KdenliveSettings::videothumbnails()) {
924         /*connect(m_clip->thumbProducer(), SIGNAL(thumbReady(int, QPixmap)), this, SLOT(slotThumbReady(int, QPixmap)));*/
925         startThumbTimer->start(100);
926     }
927 }
928
929 void ClipItem::resizeEnd(int posx, bool updateKeyFrames) {
930     const int max = (startPos() - cropStart() + maxDuration()).frames(m_fps) + 1;
931     if (posx > max) posx = max;
932     if (posx == endPos().frames(m_fps)) return;
933     const int previous = (cropStart() + duration()).frames(m_fps);
934     AbstractClipItem::resizeEnd(posx);
935     if (updateKeyFrames) checkEffectsKeyframesPos(previous, (cropStart() + duration()).frames(m_fps), false);
936     if (m_hasThumbs && KdenliveSettings::videothumbnails()) {
937         /*connect(m_clip->thumbProducer(), SIGNAL(thumbReady(int, QPixmap)), this, SLOT(slotThumbReady(int, QPixmap)));*/
938         endThumbTimer->start(100);
939     }
940 }
941
942
943 void ClipItem::checkEffectsKeyframesPos(const int previous, const int current, bool fromStart) {
944     for (int i = 0; i < m_effectList.size(); i++) {
945         QDomElement effect = m_effectList.at(i);
946         QDomNodeList params = effect.elementsByTagName("parameter");
947         for (int j = 0; j < params.count(); j++) {
948             QDomElement e = params.item(i).toElement();
949             if (e.attribute("type") == "keyframe") {
950                 // parse keyframes and adjust values
951                 const QStringList keyframes = e.attribute("keyframes").split(";", QString::SkipEmptyParts);
952                 QMap <int, double> kfr;
953                 int pos;
954                 double val;
955                 foreach(const QString str, keyframes) {
956                     pos = str.section(":", 0, 0).toInt();
957                     val = str.section(":", 1, 1).toDouble();
958                     if (pos == previous) kfr[current] = val;
959                     else {
960                         if (fromStart && pos >= current) kfr[pos] = val;
961                         else if (!fromStart && pos <= current) kfr[pos] = val;
962                     }
963                 }
964                 QString newkfr;
965                 QMap<int, double>::const_iterator k = kfr.constBegin();
966                 while (k != kfr.constEnd()) {
967                     newkfr.append(QString::number(k.key()) + ":" + QString::number(k.value()) + ";");
968                     ++k;
969                 }
970                 e.setAttribute("keyframes", newkfr);
971                 break;
972             }
973         }
974     }
975     if (m_selectedEffect >= 0) setSelectedEffect(m_selectedEffect);
976 }
977
978
979 //virtual
980 QVariant ClipItem::itemChange(GraphicsItemChange change, const QVariant &value) {
981     if (change == ItemPositionChange && scene()) {
982         // calculate new position.
983         if (group() != 0) return pos();
984         QPointF newPos = value.toPointF();
985         //kDebug() << "/// MOVING CLIP ITEM.------------";
986         int xpos = projectScene()->getSnapPointForPos((int) newPos.x(), KdenliveSettings::snaptopoints());
987         xpos = qMax(xpos, 0);
988         newPos.setX(xpos);
989         int newTrack = (newPos.y() + KdenliveSettings::trackheight() / 2) / KdenliveSettings::trackheight();
990         newTrack = qMin(newTrack, projectScene()->tracksCount() - 1);
991         newTrack = qMax(newTrack, 0);
992         newPos.setY((int)(newTrack  * KdenliveSettings::trackheight() + 1));
993         // Only one clip is moving
994         QRectF sceneShape = rect();
995         sceneShape.translate(newPos);
996         QList<QGraphicsItem*> items = scene()->items(sceneShape, Qt::IntersectsItemShape);
997         items.removeAll(this);
998
999         if (!items.isEmpty()) {
1000             for (int i = 0; i < items.count(); i++) {
1001                 if (items.at(i)->type() == type()) {
1002                     // Collision!
1003                     QPointF otherPos = items.at(i)->pos();
1004                     if ((int) otherPos.y() != (int) pos().y()) return pos();
1005                     if (pos().x() < otherPos.x()) {
1006                         // move clip just before colliding clip
1007                         int npos = (static_cast < AbstractClipItem* >(items.at(i))->startPos() - m_cropDuration).frames(m_fps);
1008                         // check we don't run into another clip
1009                         newPos.setX(npos);
1010                         sceneShape = rect();
1011                         sceneShape.translate(newPos);
1012                         QList<QGraphicsItem*> subitems = scene()->items(sceneShape, Qt::IntersectsItemShape);
1013                         items.removeAll(this);
1014                         for (int j = 0; j < subitems.count(); j++) {
1015                             if (subitems.at(j)->type() == type()) return pos();
1016                         }
1017                     } else {
1018                         // get pos just after colliding clip
1019                         int npos = static_cast < AbstractClipItem* >(items.at(i))->endPos().frames(m_fps);
1020                         // check we don't run into another clip
1021                         newPos.setX(npos);
1022                         sceneShape = rect();
1023                         sceneShape.translate(newPos);
1024                         QList<QGraphicsItem*> subitems = scene()->items(sceneShape, Qt::IntersectsItemShape);
1025                         items.removeAll(this);
1026                         for (int j = 0; j < subitems.count(); j++) {
1027                             if (subitems.at(j)->type() == type()) return pos();
1028                         }
1029                     }
1030                     m_track = newTrack;
1031                     m_startPos = GenTime((int) newPos.x(), m_fps);
1032                     return newPos;
1033                 }
1034             }
1035         }
1036         m_track = newTrack;
1037         m_startPos = GenTime((int) newPos.x(), m_fps);
1038         //kDebug()<<"// ITEM NEW POS: "<<newPos.x()<<", mapped: "<<mapToScene(newPos.x(), 0).x();
1039         return newPos;
1040     }
1041     return QGraphicsItem::itemChange(change, value);
1042 }
1043
1044 // virtual
1045 /*void ClipItem::mouseMoveEvent(QGraphicsSceneMouseEvent * event) {
1046 }*/
1047
1048 int ClipItem::effectsCounter() {
1049     return effectsCount() + 1;
1050 }
1051
1052 int ClipItem::effectsCount() {
1053     return m_effectList.size();
1054 }
1055
1056 int ClipItem::hasEffect(const QString &tag, const QString &id) const {
1057     return m_effectList.hasEffect(tag, id);
1058 }
1059
1060 QStringList ClipItem::effectNames() {
1061     return m_effectList.effectNames();
1062 }
1063
1064 QDomElement ClipItem::effectAt(int ix) {
1065     if (ix > m_effectList.count() - 1 || ix < 0) return QDomElement();
1066     return m_effectList.at(ix);
1067 }
1068
1069 void ClipItem::setEffectAt(int ix, QDomElement effect) {
1070     kDebug() << "CHange EFFECT AT: " << ix << ", CURR: " << m_effectList.at(ix).attribute("tag") << ", NEW: " << effect.attribute("tag");
1071     effect.setAttribute("kdenlive_ix", ix + 1);
1072     m_effectList.insert(ix, effect);
1073     m_effectList.removeAt(ix + 1);
1074     m_effectNames = m_effectList.effectNames().join(" / ");
1075     if (effect.attribute("id") == "fadein" || effect.attribute("id") == "fadeout") update(boundingRect());
1076     else {
1077         QRectF r = boundingRect();
1078         r.setHeight(20);
1079         update(r);
1080     }
1081 }
1082
1083 QHash <QString, QString> ClipItem::addEffect(QDomElement effect, bool animate) {
1084     QHash <QString, QString> effectParams;
1085     bool needRepaint = false;
1086     /*QDomDocument doc;
1087     doc.appendChild(doc.importNode(effect, true));
1088     kDebug() << "///////  CLIP ADD EFFECT: " << doc.toString();*/
1089     m_effectList.append(effect);
1090     effectParams["tag"] = effect.attribute("tag");
1091     QString effectId = effect.attribute("id");
1092     if (effectId.isEmpty()) effectId = effect.attribute("tag");
1093     effectParams["id"] = effectId;
1094     effectParams["kdenlive_ix"] = effect.attribute("kdenlive_ix");
1095     QString state = effect.attribute("disabled");
1096     if (!state.isEmpty()) effectParams["disabled"] = state;
1097     QDomNodeList params = effect.elementsByTagName("parameter");
1098     int fade = 0;
1099     for (int i = 0; i < params.count(); i++) {
1100         QDomElement e = params.item(i).toElement();
1101         if (!e.isNull()) {
1102             if (e.attribute("type") == "keyframe") {
1103                 effectParams["keyframes"] = e.attribute("keyframes");
1104                 effectParams["min"] = e.attribute("min");
1105                 effectParams["max"] = e.attribute("max");
1106                 effectParams["factor"] = e.attribute("factor", "1");
1107                 effectParams["starttag"] = e.attribute("starttag", "start");
1108                 effectParams["endtag"] = e.attribute("endtag", "end");
1109             }
1110
1111             double f = e.attribute("factor", "1").toDouble();
1112
1113             if (f == 1) {
1114                 effectParams[e.attribute("name")] = e.attribute("value");
1115                 // check if it is a fade effect
1116                 if (effectId == "fadein") {
1117                     needRepaint = true;
1118                     if (e.attribute("name") == "out") fade += e.attribute("value").toInt();
1119                     else if (e.attribute("name") == "in") fade -= e.attribute("value").toInt();
1120                 } else if (effectId == "fadeout") {
1121                     needRepaint = true;
1122                     if (e.attribute("name") == "out") fade -= e.attribute("value").toInt();
1123                     else if (e.attribute("name") == "in") fade += e.attribute("value").toInt();
1124                 }
1125             } else {
1126                 effectParams[e.attribute("name")] =  QString::number(e.attribute("value").toDouble() / f);
1127             }
1128         }
1129     }
1130     m_effectNames = m_effectList.effectNames().join(" / ");
1131     if (fade > 0) m_startFade = fade;
1132     else if (fade < 0) m_endFade = -fade;
1133     if (needRepaint) update(boundingRect());
1134     if (animate) {
1135         flashClip();
1136     } else if (!needRepaint) {
1137         QRectF r = boundingRect();
1138         r.setHeight(20);
1139         update(r);
1140     }
1141     if (m_selectedEffect == -1) {
1142         m_selectedEffect = 0;
1143         setSelectedEffect(m_selectedEffect);
1144     }
1145     return effectParams;
1146 }
1147
1148 QHash <QString, QString> ClipItem::getEffectArgs(QDomElement effect) {
1149     QHash <QString, QString> effectParams;
1150     effectParams["tag"] = effect.attribute("tag");
1151     effectParams["kdenlive_ix"] = effect.attribute("kdenlive_ix");
1152     effectParams["id"] = effect.attribute("id");
1153     QString state = effect.attribute("disabled");
1154     if (!state.isEmpty()) effectParams["disabled"] = state;
1155     QDomNodeList params = effect.elementsByTagName("parameter");
1156     for (int i = 0; i < params.count(); i++) {
1157         QDomElement e = params.item(i).toElement();
1158         //kDebug() << "/ / / /SENDING EFFECT PARAM: " << e.attribute("type") << ", NAME_ " << e.attribute("tag");
1159         if (e.attribute("type") == "keyframe") {
1160             kDebug() << "/ / / /SENDING KEYFR EFFECT TYPE";
1161             effectParams["keyframes"] = e.attribute("keyframes");
1162             effectParams["max"] = e.attribute("max");
1163             effectParams["min"] = e.attribute("min");
1164             effectParams["factor"] = e.attribute("factor", "1");
1165             effectParams["starttag"] = e.attribute("starttag", "start");
1166             effectParams["endtag"] = e.attribute("endtag", "end");
1167         } else if (e.attribute("namedesc").contains(";")) {
1168             QString format = e.attribute("format");
1169             QStringList separators = format.split("%d", QString::SkipEmptyParts);
1170             QStringList values = e.attribute("value").split(QRegExp("[,:;x]"));
1171             QString neu;
1172             QTextStream txtNeu(&neu);
1173             if (values.size() > 0)
1174                 txtNeu << (int)values[0].toDouble();
1175             for (int i = 0;i < separators.size() && i + 1 < values.size();i++) {
1176                 txtNeu << separators[i];
1177                 txtNeu << (int)(values[i+1].toDouble());
1178             }
1179             effectParams["start"] = neu;
1180         } else {
1181             if (e.attribute("factor", "1") != "1")
1182                 effectParams[e.attribute("name")] =  QString::number(e.attribute("value").toDouble() / e.attribute("factor").toDouble());
1183             else effectParams[e.attribute("name")] = e.attribute("value");
1184         }
1185     }
1186     return effectParams;
1187 }
1188
1189 void ClipItem::deleteEffect(QString index) {
1190     bool needRepaint = false;
1191     QString ix;
1192     for (int i = 0; i < m_effectList.size(); ++i) {
1193         ix = m_effectList.at(i).attribute("kdenlive_ix");
1194         if (ix == index) {
1195             if (m_effectList.at(i).attribute("id") == "fadein") {
1196                 m_startFade = 0;
1197                 needRepaint = true;
1198             } else if (m_effectList.at(i).attribute("id") == "fadeout") {
1199                 m_endFade = 0;
1200                 needRepaint = true;
1201             }
1202             m_effectList.removeAt(i);
1203         } else if (ix.toInt() > index.toInt()) m_effectList[i].setAttribute("kdenlive_ix", ix.toInt() - 1);
1204     }
1205     m_effectNames = m_effectList.effectNames().join(" / ");
1206     if (needRepaint) update(boundingRect());
1207     flashClip();
1208 }
1209
1210 double ClipItem::speed() const {
1211     return m_speed;
1212 }
1213
1214 void ClipItem::setSpeed(const double speed) {
1215     m_speed = speed;
1216     if (m_speed == 1.0) m_clipName = baseClip()->name();
1217     else m_clipName = baseClip()->name() + " - " + QString::number(speed * 100, 'f', 0) + "%";
1218     update();
1219 }
1220
1221 GenTime ClipItem::maxDuration() const {
1222     return m_maxDuration / m_speed;
1223 }
1224
1225 //virtual
1226 void ClipItem::dropEvent(QGraphicsSceneDragDropEvent * event) {
1227     QString effects = QString(event->mimeData()->data("kdenlive/effectslist"));
1228     QDomDocument doc;
1229     doc.setContent(effects, true);
1230     QDomElement e = doc.documentElement();
1231     CustomTrackView *view = (CustomTrackView *) scene()->views()[0];
1232     if (view) view->slotAddEffect(e, m_startPos, track());
1233 }
1234
1235 //virtual
1236 void ClipItem::dragEnterEvent(QGraphicsSceneDragDropEvent *event) {
1237     event->setAccepted(event->mimeData()->hasFormat("kdenlive/effectslist"));
1238 }
1239
1240 void ClipItem::dragLeaveEvent(QGraphicsSceneDragDropEvent *event) {
1241     Q_UNUSED(event);
1242 }
1243 void ClipItem::addTransition(Transition* t) {
1244     m_transitionsList.append(t);
1245     CustomTrackView *view = (CustomTrackView *) scene()->views()[0];
1246     QDomDocument doc;
1247     QDomElement e = doc.documentElement();
1248     //if (view) view->slotAddTransition(this, t->toXML() , t->startPos(), track());
1249 }
1250 // virtual
1251 /*
1252 void CustomTrackView::mousePressEvent ( QMouseEvent * event )
1253 {
1254   int pos = event->x();
1255   if (event->modifiers() == Qt::ControlModifier)
1256     setDragMode(QGraphicsView::ScrollHandDrag);
1257   else if (event->modifiers() == Qt::ShiftModifier)
1258     setDragMode(QGraphicsView::RubberBandDrag);
1259   else {
1260     QGraphicsItem * item = itemAt(event->pos());
1261     if (item) {
1262     }
1263     else emit cursorMoved((int) mapToScene(event->x(), 0).x());
1264   }
1265   kDebug()<<pos;
1266   QGraphicsView::mousePressEvent(event);
1267 }
1268
1269 void CustomTrackView::mouseReleaseEvent ( QMouseEvent * event )
1270 {
1271   QGraphicsView::mouseReleaseEvent(event);
1272   setDragMode(QGraphicsView::NoDrag);
1273 }
1274 */
1275
1276 #include "clipitem.moc"