]> git.sesse.net Git - kdenlive/blob - src/clipitem.cpp
* Delete transition from context menu
[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 "renderer.h"
36 #include "docclipbase.h"
37 #include "transition.h"
38 #include "events.h"
39 #include "kdenlivesettings.h"
40 #include "kthumb.h"
41
42 ClipItem::ClipItem(DocClipBase *clip, ItemInfo info, double scale, double fps)
43         : AbstractClipItem(info, QRectF()), m_clip(clip), m_resizeMode(NONE), m_grabPoint(0), m_maxTrack(0), m_hasThumbs(false), startThumbTimer(NULL), endThumbTimer(NULL), m_effectsCounter(1), audioThumbWasDrawn(false), m_opacity(1.0), m_timeLine(0), m_thumbsRequested(0), m_hover(false) {
44     QRectF rect((double) info.startPos.frames(fps) * scale, (double)(info.track * KdenliveSettings::trackheight() + 1), (double)(info.endPos - info.startPos).frames(fps) * scale, (double)(KdenliveSettings::trackheight() - 1));
45     setRect(rect);
46     kDebug() << "/////  NEW CLIP RECT: " << rect;
47     m_fps = fps;
48     m_clipName = clip->name();
49     m_producer = clip->getId();
50     m_clipType = clip->clipType();
51     m_cropStart = GenTime();
52
53     m_maxDuration = clip->maxDuration();
54     setAcceptDrops(true);
55     audioThumbReady = clip->audioThumbCreated();
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, QPainterPath, int, int)) , this, SLOT(slotPrepareAudioThumb(double, QPainterPath, int, int)));
68
69     setBrush(QColor(141, 166, 215));
70     if (m_clipType == VIDEO || m_clipType == AV || m_clipType == SLIDESHOW) {
71         m_hasThumbs = true;
72         connect(this, SIGNAL(getThumb(int, int)), clip->thumbProducer(), SLOT(extractImage(int, int)));
73         connect(clip->thumbProducer(), SIGNAL(thumbReady(int, QPixmap)), this, SLOT(slotThumbReady(int, QPixmap)));
74         connect(clip, SIGNAL(gotAudioData()), this, SLOT(slotGotAudioData()));
75         QTimer::singleShot(300, this, SLOT(slotFetchThumbs()));
76
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     } else if (m_clipType == COLOR) {
84         QString colour = clip->getProperty("colour");
85         colour = colour.replace(0, 2, "#");
86         setBrush(QColor(colour.left(7)));
87     } else if (m_clipType == IMAGE || m_clipType == TEXT) {
88         m_startPix = KThumb::getImage(KUrl(clip->getProperty("resource")), (int)(50 * KdenliveSettings::project_display_ratio()), 50);
89         m_endPix = m_startPix;
90     } else if (m_clipType == AUDIO) {
91         connect(clip, SIGNAL(gotAudioData()), this, SLOT(slotGotAudioData()));
92     }
93 }
94
95
96 ClipItem::~ClipItem() {
97     if (startThumbTimer) delete startThumbTimer;
98     if (endThumbTimer) delete endThumbTimer;
99 }
100
101 void ClipItem::resetThumbs() {
102     slotFetchThumbs();
103     audioThumbCachePic.clear();
104 }
105
106
107 void ClipItem::refreshClip() {
108     m_maxDuration = m_clip->maxDuration();
109     if (m_clipType == VIDEO || m_clipType == AV || m_clipType == SLIDESHOW) slotFetchThumbs();
110     else if (m_clipType == COLOR) {
111         QString colour = m_clip->getProperty("colour");
112         colour = colour.replace(0, 2, "#");
113         setBrush(QColor(colour.left(7)));
114     } else if (m_clipType == IMAGE || m_clipType == TEXT) {
115         m_startPix = KThumb::getImage(KUrl(m_clip->getProperty("resource")), (int)(50 * KdenliveSettings::project_display_ratio()), 50);
116         m_endPix = m_startPix;
117     }
118 }
119
120 void ClipItem::slotFetchThumbs() {
121     m_thumbsRequested += 2;
122     emit getThumb((int)m_cropStart.frames(m_fps), (int)(m_cropStart + m_cropDuration).frames(m_fps));
123 }
124
125 void ClipItem::slotGetStartThumb() {
126     m_thumbsRequested++;
127     emit getThumb((int)m_cropStart.frames(m_fps), -1);
128 }
129
130 void ClipItem::slotGetEndThumb() {
131     m_thumbsRequested++;
132     emit getThumb(-1, (int)(m_cropStart + m_cropDuration).frames(m_fps));
133 }
134
135 void ClipItem::slotThumbReady(int frame, QPixmap pix) {
136     if (m_thumbsRequested == 0) return;
137     if (frame == m_cropStart.frames(m_fps)) m_startPix = pix;
138     else m_endPix = pix;
139     update();
140     m_thumbsRequested--;
141 }
142
143 void ClipItem::slotGotAudioData() {
144     audioThumbReady = true;
145     update();
146 }
147
148 int ClipItem::type() const {
149     return AVWIDGET;
150 }
151
152 DocClipBase *ClipItem::baseClip() {
153     return m_clip;
154 }
155
156 QDomElement ClipItem::xml() const {
157     return m_clip->toXML();
158 }
159
160 int ClipItem::clipType() {
161     return m_clipType;
162 }
163
164 QString ClipItem::clipName() {
165     return m_clipName;
166 }
167
168 int ClipItem::clipProducer() {
169     return m_producer;
170 }
171
172 void ClipItem::flashClip() {
173     if (m_timeLine == 0) {
174         m_timeLine = new QTimeLine(750, this);
175         connect(m_timeLine, SIGNAL(valueChanged(qreal)), this, SLOT(animate(qreal)));
176     }
177     m_timeLine->start();
178 }
179
180 void ClipItem::animate(qreal value) {
181     m_opacity = value;
182     update();
183 }
184
185 // virtual
186 void ClipItem::paint(QPainter *painter,
187                      const QStyleOptionGraphicsItem *option,
188                      QWidget *widget) {
189     painter->setOpacity(m_opacity);
190     QBrush paintColor = brush();
191
192     if (isSelected()) paintColor = QBrush(QColor(79, 93, 121));
193     QRectF br = rect();
194     double scale = br.width() / m_cropDuration.frames(m_fps);
195     QRect rectInView = visibleRect();//this is the rect that is visible by the user
196
197     if (rectInView.isNull())
198         return;
199     QPainterPath clippath;
200     clippath.addRect(rectInView);
201
202     int startpixel = (int)(rectInView.x() - rect().x()); //start and endpixel that is viewable from rect()
203
204     if (startpixel < 0)
205         startpixel = 0;
206     int endpixel = rectInView.width() + rectInView.x();
207     if (endpixel < 0)
208         endpixel = 0;
209
210     //painter->setRenderHints(QPainter::Antialiasing);
211
212     QPainterPath roundRectPathUpper = upperRectPart(br), roundRectPathLower = lowerRectPart(br);
213
214     painter->setClipRect(option->exposedRect);
215
216     // build path around clip
217
218     QPainterPath resultClipPath = roundRectPathUpper.united(roundRectPathLower);
219
220     painter->setClipPath(resultClipPath.intersected(clippath), Qt::IntersectClip);
221     //painter->fillPath(roundRectPath, brush()); //, QBrush(QColor(Qt::red)));
222     painter->fillRect(br.intersected(rectInView), paintColor);
223     //painter->fillRect(QRectF(br.x() + br.width() - m_endPix.width(), br.y(), m_endPix.width(), br.height()), QBrush(QColor(Qt::black)));
224
225     // draw thumbnails
226     if (!m_startPix.isNull() && KdenliveSettings::videothumbnails()) {
227         if (m_clipType == IMAGE) {
228             painter->drawPixmap(QPointF(br.x() + br.width() - m_startPix.width(), br.y()), m_startPix);
229             QLineF l(br.x() + br.width() - m_startPix.width(), br.y(), br.x() + br.width() - m_startPix.width(), br.y() + br.height());
230             painter->drawLine(l);
231         } else {
232             painter->drawPixmap(QPointF(br.x() + br.width() - m_endPix.width(), br.y()), m_endPix);
233             QLineF l(br.x() + br.width() - m_endPix.width(), br.y(), br.x() + br.width() - m_endPix.width(), br.y() + br.height());
234             painter->drawLine(l);
235         }
236
237         painter->drawPixmap(QPointF(br.x(), br.y()), m_startPix);
238         QLineF l2(br.x() + m_startPix.width(), br.y(), br.x() + m_startPix.width(), br.y() + br.height());
239         painter->drawLine(l2);
240     }
241
242     // draw audio thumbnails
243     if ((m_clipType == AV || m_clipType == AUDIO) && audioThumbReady && KdenliveSettings::audiothumbnails()) {
244
245         QPainterPath path = m_clipType == AV ? roundRectPathLower : roundRectPathUpper.united(roundRectPathLower);
246         if (m_clipType == AV) painter->fillPath(path, QBrush(QColor(200, 200, 200, 140)));
247
248         int channels = 2;
249         if (scale != framePixelWidth)
250             audioThumbCachePic.clear();
251         emit prepareAudioThumb(scale, path, startpixel, endpixel + 200);//200 more for less missing parts before repaint after scrolling
252         int cropLeft = (int)((m_cropStart).frames(m_fps) * scale);
253         for (int startCache = startpixel - startpixel % 100; startCache < endpixel + 300;startCache += 100) {
254             if (audioThumbCachePic.contains(startCache) && !audioThumbCachePic[startCache].isNull())
255                 painter->drawPixmap((int)(roundRectPathUpper.united(roundRectPathLower).boundingRect().x() + startCache - cropLeft), (int)(path.boundingRect().y()), audioThumbCachePic[startCache]);
256         }
257
258     }
259
260     /*
261       // draw start / end fades
262       QBrush fades;
263       if (isSelected()) {
264           fades = QBrush(QColor(200, 50, 50, 150));
265       } else fades = QBrush(QColor(200, 200, 200, 200));
266
267       if (m_startFade != 0) {
268           QPainterPath fadeInPath;
269           fadeInPath.moveTo(br.x() , br.y());
270           fadeInPath.lineTo(br.x() , br.y() + br.height());
271           fadeInPath.lineTo(br.x() + m_startFade * scale, br.y());
272           fadeInPath.closeSubpath();
273           painter->fillPath(fadeInPath, fades);
274           if (isSelected()) {
275               QLineF l(br.x() + m_startFade * scale, br.y(), br.x(), br.y() + br.height());
276               painter->drawLine(l);
277           }
278       }
279       if (m_endFade != 0) {
280           QPainterPath fadeOutPath;
281           fadeOutPath.moveTo(br.x() + br.width(), br.y());
282           fadeOutPath.lineTo(br.x() + br.width(), br.y() + br.height());
283           fadeOutPath.lineTo(br.x() + br.width() - m_endFade * scale, br.y());
284           fadeOutPath.closeSubpath();
285           painter->fillPath(fadeOutPath, fades);
286           if (isSelected()) {
287               QLineF l(br.x() + br.width() - m_endFade * scale, br.y(), br.x() + br.width(), br.y() + br.height());
288               painter->drawLine(l);
289           }
290       }
291       */
292     QPen pen = painter->pen();
293     pen.setColor(Qt::white);
294     //pen.setStyle(Qt::DashDotDotLine); //Qt::DotLine);
295
296     // Draw effects names
297     QString effects = effectNames().join(" / ");
298     if (!effects.isEmpty()) {
299         painter->setPen(pen);
300         QFont font = painter->font();
301         QFont smallFont = font;
302         smallFont.setPointSize(8);
303         painter->setFont(smallFont);
304         QRectF txtBounding = painter->boundingRect(br, Qt::AlignLeft | Qt::AlignTop, " " + effects + " ");
305         painter->fillRect(txtBounding, QBrush(QColor(0, 0, 0, 150)));
306         painter->drawText(txtBounding, Qt::AlignCenter, effects);
307         pen.setColor(Qt::black);
308         painter->setPen(pen);
309         painter->setFont(font);
310     }
311
312     /*
313       // For testing puspose only: draw transitions count
314       {
315           painter->setPen(pen);
316           QFont font = painter->font();
317           QFont smallFont = font;
318           smallFont.setPointSize(8);
319           painter->setFont(smallFont);
320           QString txt = " Transitions: " + QString::number(m_transitionsList.count()) + " ";
321           QRectF txtBoundin = painter->boundingRect(br, Qt::AlignRight | Qt::AlignTop, txt);
322           painter->fillRect(txtBoundin, QBrush(QColor(0, 0, 0, 150)));
323           painter->drawText(txtBoundin, Qt::AlignCenter, txt);
324           pen.setColor(Qt::black);
325           painter->setPen(pen);
326           painter->setFont(font);
327       }
328     */
329
330     // Draw clip name
331     QRectF txtBounding = painter->boundingRect(br, Qt::AlignHCenter | Qt::AlignTop, " " + m_clipName + " ");
332     painter->fillRect(txtBounding, QBrush(QColor(255, 255, 255, 150)));
333     painter->drawText(txtBounding, Qt::AlignCenter, m_clipName);
334
335     // draw frame around clip
336     if (isSelected()) {
337         pen.setColor(Qt::red);
338         pen.setWidth(2);
339     } else {
340         pen.setColor(Qt::black);
341         pen.setWidth(1);
342     }
343     painter->setPen(pen);
344     painter->setClipRect(option->exposedRect);
345     painter->drawPath(resultClipPath.intersected(clippath));
346
347     //painter->fillRect(startpixel,0,startpixel+endpixel,(int)br.height(),  QBrush(QColor(255,255,255,150)));
348     //painter->fillRect(QRect(br.x(), br.y(), roundingX, roundingY), QBrush(QColor(Qt::green)));
349
350     /*QRectF recta(rect().x(), rect().y(), scale,rect().height());
351     painter->drawRect(recta);
352     painter->drawLine(rect().x() + 1, rect().y(), rect().x() + 1, rect().y() + rect().height());
353     painter->drawLine(rect().x() + rect().width(), rect().y(), rect().x() + rect().width(), rect().y() + rect().height());
354     painter->setPen(QPen(Qt::black, 1.0));
355     painter->drawLine(rect().x(), rect().y(), rect().x() + rect().width(), rect().y());
356     painter->drawLine(rect().x(), rect().y() + rect().height(), rect().x() + rect().width(), rect().y() + rect().height());*/
357
358     //QGraphicsRectItem::paint(painter, option, widget);
359     //QPen pen(Qt::green, 1.0 / size.x() + 0.5);
360     //painter->setPen(pen);
361     //painter->drawLine(rect().x(), rect().y(), rect().x() + rect().width(), rect().y());
362     //kDebug()<<"ITEM REPAINT RECT: "<<boundingRect().width();
363     //painter->drawText(rect(), Qt::AlignCenter, m_name);
364     // painter->drawRect(boundingRect());
365     //painter->drawRoundRect(-10, -10, 20, 20);
366     if (m_hover) {
367         int pointy = (int)(br.y() + br.height() / 2 - 5);
368         int pointx1 = (int)(br.x() + 10);
369         int pointx2 = (int)(br.x() + br.width() - 20);
370 #if 0
371         painter->setPen(QPen(Qt::black));
372         painter->setBrush(QBrush(QColor(50, 50, 0)));
373 #else
374         QRadialGradient gradient(pointx1 + 5, pointy + 5 , 5, 2, 2);
375         gradient.setColorAt(0.2, Qt::white);
376         gradient.setColorAt(0.8, Qt::yellow);
377         gradient.setColorAt(1, Qt::black);
378         painter->setBrush(gradient);
379 #endif
380         painter->drawEllipse(pointx1, pointy , 10, 10);
381
382         QRadialGradient gradient1(pointx2 + 5, pointy + 5 , 5, 2, 2);
383         gradient1.setColorAt(0.2, Qt::white);
384         gradient1.setColorAt(0.8, Qt::yellow);
385         gradient1.setColorAt(1, Qt::black);
386         painter->setBrush(gradient1);
387         painter->drawEllipse(pointx2, pointy, 10, 10);
388
389     }
390 }
391
392
393 OPERATIONTYPE ClipItem::operationMode(QPointF pos, double scale) {
394     if (qAbs((int)(pos.x() - (rect().x() + scale * m_startFade))) < 6 && qAbs((int)(pos.y() - rect().y())) < 6) return FADEIN;
395     else if (qAbs((int)(pos.x() - rect().x())) < 6) return RESIZESTART;
396     else if (qAbs((int)(pos.x() - (rect().x() + rect().width() - scale * m_endFade))) < 6 && qAbs((int)(pos.y() - rect().y())) < 6) return FADEOUT;
397     else if (qAbs((int)(pos.x() - (rect().x() + rect().width()))) < 6) return RESIZEEND;
398     else if (qAbs((int)(pos.x() - (rect().x() + 10))) < 6 && qAbs((int)(pos.y() - (rect().y() + rect().height() / 2 - 5))) < 6) return TRANSITIONSTART;
399     else if (qAbs((int)(pos.x() - (rect().x() + rect().width() - 20))) < 6 && qAbs((int)(pos.y() - (rect().y() + rect().height() / 2 - 5))) < 6) return TRANSITIONEND;
400
401     return MOVE;
402 }
403
404 void ClipItem::slotPrepareAudioThumb(double pixelForOneFrame, QPainterPath path, int startpixel, int endpixel) {
405     int channels = 2;
406
407     QRectF re = path.boundingRect();
408
409     //if ( (!audioThumbWasDrawn || framePixelWidth!=pixelForOneFrame ) && !baseClip()->audioFrameChache.isEmpty()){
410
411     for (int startCache = startpixel - startpixel % 100;startCache + 100 < endpixel ;startCache += 100) {
412         //kDebug() << "creating " << startCache;
413         //if (framePixelWidth!=pixelForOneFrame  ||
414         if (framePixelWidth == pixelForOneFrame && audioThumbCachePic.contains(startCache))
415             continue;
416         if (audioThumbCachePic[startCache].isNull() || framePixelWidth != pixelForOneFrame) {
417             audioThumbCachePic[startCache] = QPixmap(100, (int)(re.height()));
418             audioThumbCachePic[startCache].fill(QColor(200, 200, 200, 0));
419         }
420         bool fullAreaDraw = pixelForOneFrame < 10;
421         QMap<int, QPainterPath > positiveChannelPaths;
422         QMap<int, QPainterPath > negativeChannelPaths;
423         QPainter pixpainter(&audioThumbCachePic[startCache]);
424         QPen audiopen;
425         audiopen.setWidth(0);
426         pixpainter.setPen(audiopen);
427         //pixpainter.setRenderHint(QPainter::Antialiasing,true);
428         //pixpainter.drawLine(0,0,100,re.height());
429         int channelHeight = audioThumbCachePic[startCache].height() / channels;
430
431         for (int i = 0;i < channels;i++) {
432
433             positiveChannelPaths[i].moveTo(0, channelHeight*i + channelHeight / 2);
434             negativeChannelPaths[i].moveTo(0, channelHeight*i + channelHeight / 2);
435         }
436
437         for (int samples = 0;samples <= 100;samples++) {
438             double frame = (double)(samples + startCache - 0) / pixelForOneFrame;
439             int sample = (int)((frame - (int)(frame)) * 20);   // AUDIO_FRAME_SIZE
440             if (frame < 0 || sample < 0 || sample > 19)
441                 continue;
442             QMap<int, QByteArray> frame_channel_data = baseClip()->audioFrameChache[(int)frame];
443
444             for (int channel = 0;channel < channels && frame_channel_data[channel].size() > 0;channel++) {
445
446                 int y = channelHeight * channel + channelHeight / 2;
447                 int delta = (int)(frame_channel_data[channel][sample] - 127 / 2)  * channelHeight / 64;
448                 if (fullAreaDraw) {
449                     positiveChannelPaths[channel].lineTo(samples, 0.1 + y + qAbs(delta));
450                     negativeChannelPaths[channel].lineTo(samples, 0.1 + y - qAbs(delta));
451                 } else {
452                     positiveChannelPaths[channel].lineTo(samples, 0.1 + y + delta);
453                     negativeChannelPaths[channel].lineTo(samples, 0.1 + y - delta);
454                 }
455             }
456             for (int channel = 0;channel < channels ;channel++)
457                 if (fullAreaDraw && samples == 100) {
458                     positiveChannelPaths[channel].lineTo(samples, channelHeight*channel + channelHeight / 2);
459                     negativeChannelPaths[channel].lineTo(samples, channelHeight*channel + channelHeight / 2);
460                     positiveChannelPaths[channel].lineTo(0, channelHeight*channel + channelHeight / 2);
461                     negativeChannelPaths[channel].lineTo(0, channelHeight*channel + channelHeight / 2);
462                 }
463
464         }
465         if (m_clipType != AV) pixpainter.setBrush(QBrush(QColor(200, 200, 100)));
466         else {
467             pixpainter.setPen(QPen(QColor(0, 0, 0)));
468             pixpainter.setBrush(QBrush(QColor(60, 60, 60)));
469         }
470         for (int i = 0;i < channels;i++) {
471             if (fullAreaDraw) {
472                 //pixpainter.fillPath(positiveChannelPaths[i].united(negativeChannelPaths[i]),QBrush(Qt::SolidPattern));//or singleif looks better
473                 pixpainter.drawPath(positiveChannelPaths[i].united(negativeChannelPaths[i]));//or singleif looks better
474             } else
475                 pixpainter.drawPath(positiveChannelPaths[i]);
476         }
477     }
478     //audioThumbWasDrawn=true;
479     framePixelWidth = pixelForOneFrame;
480
481     //}
482 }
483
484
485
486 void ClipItem::setFadeIn(int pos, double scale) {
487     int oldIn = m_startFade;
488     if (pos < 0) pos = 0;
489     if (pos > m_cropDuration.frames(m_fps)) pos = (int)(m_cropDuration.frames(m_fps) / 2);
490     m_startFade = pos;
491     if (oldIn > pos) update(rect().x(), rect().y(), oldIn * scale, rect().height());
492     else update(rect().x(), rect().y(), pos * scale, rect().height());
493 }
494
495 void ClipItem::setFadeOut(int pos, double scale) {
496     int oldOut = m_endFade;
497     if (pos < 0) pos = 0;
498     if (pos > m_cropDuration.frames(m_fps)) pos = (int)(m_cropDuration.frames(m_fps) / 2);
499     m_endFade = pos;
500     if (oldOut > pos) update(rect().x() + rect().width() - pos * scale, rect().y(), pos * scale, rect().height());
501     else update(rect().x() + rect().width() - oldOut * scale, rect().y(), oldOut * scale, rect().height());
502
503 }
504
505
506 // virtual
507 void ClipItem::mousePressEvent(QGraphicsSceneMouseEvent * event) {
508     /*m_resizeMode = operationMode(event->pos());
509     if (m_resizeMode == MOVE) {
510       m_maxTrack = scene()->sceneRect().height();
511       m_grabPoint = (int) (event->pos().x() - rect().x());
512     }*/
513     QGraphicsRectItem::mousePressEvent(event);
514 }
515
516 // virtual
517 void ClipItem::mouseReleaseEvent(QGraphicsSceneMouseEvent * event) {
518     m_resizeMode = NONE;
519     QGraphicsRectItem::mouseReleaseEvent(event);
520 }
521
522 //virtual
523 void ClipItem::hoverEnterEvent(QGraphicsSceneHoverEvent *) {
524     m_hover = true;
525     update();
526 }
527
528 //virtual
529 void ClipItem::hoverLeaveEvent(QGraphicsSceneHoverEvent *) {
530     m_hover = false;
531     update();
532 }
533
534 void ClipItem::resizeStart(int posx, double scale) {
535     AbstractClipItem::resizeStart(posx, scale);
536     if (m_hasThumbs) startThumbTimer->start(100);
537 }
538
539 void ClipItem::resizeEnd(int posx, double scale) {
540     AbstractClipItem::resizeEnd(posx, scale);
541     if (m_hasThumbs) endThumbTimer->start(100);
542 }
543
544 // virtual
545 void ClipItem::mouseMoveEvent(QGraphicsSceneMouseEvent * event) {
546 }
547
548 int ClipItem::effectsCounter() {
549     return m_effectsCounter++;
550 }
551
552 int ClipItem::effectsCount() {
553     return m_effectList.size();
554 }
555
556 QStringList ClipItem::effectNames() {
557     return m_effectList.effectNames();
558 }
559
560 QDomElement ClipItem::effectAt(int ix) {
561     return m_effectList.at(ix);
562 }
563
564 void ClipItem::setEffectAt(int ix, QDomElement effect) {
565     kDebug() << "CHange EFFECT AT: " << ix << ", CURR: " << m_effectList.at(ix).attribute("tag") << ", NEW: " << effect.attribute("tag");
566     m_effectList.insert(ix, effect);
567     m_effectList.removeAt(ix + 1);
568     update(boundingRect());
569 }
570
571 QMap <QString, QString> ClipItem::addEffect(QDomElement effect, bool animate) {
572     QMap <QString, QString> effectParams;
573     /*QDomDocument doc;
574     doc.appendChild(doc.importNode(effect, true));
575     kDebug() << "///////  CLIP ADD EFFECT: "<< doc.toString();*/
576     m_effectList.append(effect);
577     effectParams["tag"] = effect.attribute("tag");
578     effectParams["kdenlive_ix"] = effect.attribute("kdenlive_ix");
579     QString state = effect.attribute("disabled");
580     if (!state.isEmpty()) effectParams["disabled"] = state;
581     QDomNodeList params = effect.elementsByTagName("parameter");
582     for (int i = 0; i < params.count(); i++) {
583         QDomElement e = params.item(i).toElement();
584         if (!e.isNull()) {
585             effectParams[e.attribute("name")] = e.attribute("value");
586         }
587         if (!e.attribute("factor").isEmpty()) {
588             effectParams[e.attribute("name")] =  QString::number(effectParams[e.attribute("name")].toDouble() / e.attribute("factor").toDouble());
589         }
590     }
591     if (animate) flashClip();
592     update(boundingRect());
593     return effectParams;
594 }
595
596 QMap <QString, QString> ClipItem::getEffectArgs(QDomElement effect) {
597     QMap <QString, QString> effectParams;
598     effectParams["tag"] = effect.attribute("tag");
599     effectParams["kdenlive_ix"] = effect.attribute("kdenlive_ix");
600     QString state = effect.attribute("disabled");
601     if (!state.isEmpty()) effectParams["disabled"] = state;
602     QDomNodeList params = effect.elementsByTagName("parameter");
603     for (int i = 0; i < params.count(); i++) {
604         QDomElement e = params.item(i).toElement();
605         if (e.attribute("namedesc").contains(";")) {
606             QString format = e.attribute("format");
607             QStringList separators = format.split("%d", QString::SkipEmptyParts);
608             QStringList values = e.attribute("value").split(QRegExp("[,:;x]"));
609             QString neu;
610             QTextStream txtNeu(&neu);
611             if (values.size() > 0)
612                 txtNeu << (int)values[0].toDouble();
613             for (int i = 0;i < separators.size() && i + 1 < values.size();i++) {
614                 txtNeu << separators[i];
615                 txtNeu << (int)(values[i+1].toDouble());
616             }
617             effectParams["start"] = neu;
618         } else
619             if (!e.isNull()) {
620                 effectParams[e.attribute("name")] = e.attribute("value");
621             }
622         if (!e.attribute("factor").isEmpty()) {
623             effectParams[e.attribute("name")] =  QString::number(effectParams[e.attribute("name")].toDouble() / e.attribute("factor").toDouble());
624         }
625     }
626     return effectParams;
627 }
628
629 void ClipItem::deleteEffect(QString index) {
630     for (int i = 0; i < m_effectList.size(); ++i) {
631         if (m_effectList.at(i).attribute("kdenlive_ix") == index) {
632             m_effectList.removeAt(i);
633             break;
634         }
635     }
636     flashClip();
637     update(boundingRect());
638 }
639
640 //virtual
641 void ClipItem::dropEvent(QGraphicsSceneDragDropEvent * event) {
642     QString effects = QString(event->mimeData()->data("kdenlive/effectslist"));
643     QDomDocument doc;
644     doc.setContent(effects, true);
645     QDomElement e = doc.documentElement();
646     CustomTrackView *view = (CustomTrackView *) scene()->views()[0];
647     if (view) view->slotAddEffect(e, m_startPos, track());
648 }
649
650 //virtual
651 void ClipItem::dragEnterEvent(QGraphicsSceneDragDropEvent *event) {
652     event->setAccepted(event->mimeData()->hasFormat("kdenlive/effectslist"));
653 }
654
655 void ClipItem::dragLeaveEvent(QGraphicsSceneDragDropEvent *event) {
656     Q_UNUSED(event);
657 }
658 void ClipItem::addTransition(Transition* t) {
659     m_transitionsList.append(t);
660     CustomTrackView *view = (CustomTrackView *) scene()->views()[0];
661     QDomDocument doc;
662     QDomElement e = doc.documentElement();
663     //if (view) view->slotAddTransition(this, t->toXML() , t->startPos(), track());
664 }
665 // virtual
666 /*
667 void CustomTrackView::mousePressEvent ( QMouseEvent * event )
668 {
669   int pos = event->x();
670   if (event->modifiers() == Qt::ControlModifier)
671     setDragMode(QGraphicsView::ScrollHandDrag);
672   else if (event->modifiers() == Qt::ShiftModifier)
673     setDragMode(QGraphicsView::RubberBandDrag);
674   else {
675     QGraphicsItem * item = itemAt(event->pos());
676     if (item) {
677     }
678     else emit cursorMoved((int) mapToScene(event->x(), 0).x());
679   }
680   kDebug()<<pos;
681   QGraphicsView::mousePressEvent(event);
682 }
683
684 void CustomTrackView::mouseReleaseEvent ( QMouseEvent * event )
685 {
686   QGraphicsView::mouseReleaseEvent(event);
687   setDragMode(QGraphicsView::NoDrag);
688 }
689 */
690
691 #include "clipitem.moc"