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