]> git.sesse.net Git - kdenlive/blob - src/clipitem.cpp
Effects are now stored in clip as xml, get ready for effectstack connection
[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
27
28 #include <KDebug>
29
30 #include <mlt++/Mlt.h>
31
32 #include "clipitem.h"
33 #include "renderer.h"
34 #include "kdenlivesettings.h"
35
36 ClipItem::ClipItem(DocClipBase *clip, int track, int startpos, const QRectF & rect, int duration)
37     : QGraphicsRectItem(rect), m_clip(clip), m_resizeMode(NONE), m_grabPoint(0), m_maxTrack(0), m_track(track), m_startPos(startpos), m_hasThumbs(false), startThumbTimer(NULL), endThumbTimer(NULL), m_startFade(0), m_endFade(0)
38 {
39   //setToolTip(name);
40   kDebug()<<"*******  CREATING NEW TML CLIP, DUR: "<<duration;
41   m_xml = clip->toXML();
42   m_clipName = clip->name();
43   m_producer = clip->getId();
44   m_clipType = clip->clipType();
45   m_cropStart = 0;
46   m_maxDuration = duration;
47   if (duration != -1) m_cropDuration = duration;
48   else m_cropDuration = m_maxDuration;
49
50 /*
51   m_cropStart = xml.attribute("in", 0).toInt();
52   m_maxDuration = xml.attribute("duration", 0).toInt();
53   if (m_maxDuration == 0) m_maxDuration = xml.attribute("out", 0).toInt() - m_cropStart;
54
55   if (duration != -1) m_cropDuration = duration;
56   else m_cropDuration = m_maxDuration;*/
57
58
59   setFlags(QGraphicsItem::ItemClipsToShape | QGraphicsItem::ItemClipsChildrenToShape | QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);
60
61   setBrush(QColor(100, 100, 150));
62   if (m_clipType == VIDEO || m_clipType == AV) {
63     m_hasThumbs = true;
64     connect(this, SIGNAL(getThumb(int, int)), clip->thumbProducer(), SLOT(extractImage(int, int)));
65     connect(clip->thumbProducer(), SIGNAL(thumbReady(int, QPixmap)), this, SLOT(slotThumbReady(int, QPixmap)));
66     QTimer::singleShot(300, this, SLOT(slotFetchThumbs()));
67
68     startThumbTimer = new QTimer(this);
69     startThumbTimer->setSingleShot(true);
70     connect(startThumbTimer, SIGNAL(timeout()), this, SLOT(slotGetStartThumb()));
71     endThumbTimer = new QTimer(this);
72     endThumbTimer->setSingleShot(true);
73     connect(endThumbTimer, SIGNAL(timeout()), this, SLOT(slotGetEndThumb()));
74
75   }
76   else if (m_clipType == COLOR) {
77     QString colour = m_xml.attribute("colour");
78     colour = colour.replace(0, 2, "#");
79     setBrush(QColor(colour.left(7)));
80   }
81   else if (m_clipType == IMAGE) {
82     m_startPix = KThumb::getImage(KUrl(m_xml.attribute("resource")), 50 * KdenliveSettings::project_display_ratio(), 50);
83   }
84 }
85
86
87 ClipItem::~ClipItem()
88 {
89   if (startThumbTimer) delete startThumbTimer;
90   if (endThumbTimer) delete endThumbTimer;
91 }
92
93 void ClipItem::slotFetchThumbs()
94 {
95   emit getThumb(m_cropStart, m_cropStart + m_cropDuration);
96 }
97
98 void ClipItem::slotGetStartThumb()
99 {
100   emit getThumb(m_cropStart, -1);
101 }
102
103 void ClipItem::slotGetEndThumb()
104 {
105   emit getThumb(-1, m_cropStart + m_cropDuration);
106 }
107
108 void ClipItem::slotThumbReady(int frame, QPixmap pix)
109 {
110   if (frame == m_cropStart) m_startPix = pix;
111   else m_endPix = pix;
112   update();
113 }
114
115 int ClipItem::type () const
116 {
117   return 70000;
118 }
119
120 DocClipBase *ClipItem::baseClip()
121 {
122   return m_clip;
123 }
124
125 QDomElement ClipItem::xml() const
126 {
127   return m_xml;
128 }
129
130 int ClipItem::clipType()
131 {
132   return m_clipType;
133 }
134
135 QString ClipItem::clipName()
136 {
137   return m_clipName;
138 }
139
140 int ClipItem::clipProducer()
141 {
142   return m_producer;
143 }
144
145 int ClipItem::maxDuration()
146 {
147   return m_maxDuration;
148 }
149
150 int ClipItem::duration()
151 {
152   return m_cropDuration;
153 }
154
155 int ClipItem::startPos()
156 {
157   return m_startPos;
158 }
159
160 int ClipItem::cropStart()
161 {
162   return m_cropStart;
163 }
164
165 int ClipItem::endPos()
166 {
167   return m_startPos + m_cropDuration;
168 }
169
170 // virtual 
171  void ClipItem::paint(QPainter *painter,
172                            const QStyleOptionGraphicsItem *option,
173                            QWidget *widget)
174  {
175     QRectF br = rect();
176     painter->setRenderHints(QPainter::Antialiasing);
177     QPainterPath roundRectPath;
178     double roundingY = 20;
179     double roundingX = 20;
180     double offset = 1;
181     painter->setClipRect(option->exposedRect);
182     if (roundingX > br.width() / 2) roundingX = br.width() / 2;
183     //kDebug()<<"-----PAINTING, SCAL: "<<scale<<", height: "<<br.height();
184     roundRectPath.moveTo(br.x() + br .width() - offset, br.y() + roundingY);
185     roundRectPath.arcTo(br.x() + br .width() - roundingX - offset, br.y(), roundingX, roundingY, 0.0, 90.0);
186     roundRectPath.lineTo(br.x() + roundingX, br.y());
187     roundRectPath.arcTo(br.x() + offset, br.y(), roundingX, roundingY, 90.0, 90.0);
188     roundRectPath.lineTo(br.x() + offset, br.y() + br.height() - roundingY);
189     roundRectPath.arcTo(br.x() + offset, br.y() + br.height() - roundingY - offset, roundingX, roundingY, 180.0, 90.0);
190     roundRectPath.lineTo(br.x() + br .width() - roundingX, br.y() + br.height() - offset);
191     roundRectPath.arcTo(br.x() + br .width() - roundingX - offset, br.y() + br.height() - roundingY - offset, roundingX, roundingY, 270.0, 90.0);
192     roundRectPath.closeSubpath();
193     painter->setClipPath(roundRectPath, Qt::IntersectClip);
194     //painter->fillPath(roundRectPath, brush()); //, QBrush(QColor(Qt::red)));
195     painter->fillRect(br, brush());
196     //painter->fillRect(QRectF(br.x() + br.width() - m_endPix.width(), br.y(), m_endPix.width(), br.height()), QBrush(QColor(Qt::black)));
197
198     // draw thumbnails
199     if (!m_startPix.isNull()) {
200       if (m_clipType == IMAGE) {
201         painter->drawPixmap(QPointF(br.x() + br.width() - m_startPix.width(), br.y()), m_startPix);
202         QLineF l(br.x() + br.width() - m_startPix.width(), br.y(), br.x() + br.width() - m_startPix.width(), br.y() + br.height());
203         painter->drawLine(l);
204       } else {
205         painter->drawPixmap(QPointF(br.x() + br.width() - m_endPix.width(), br.y()), m_endPix);
206         QLineF l(br.x() + br.width() - m_endPix.width(), br.y(), br.x() + br.width() - m_endPix.width(), br.y() + br.height());
207         painter->drawLine(l);
208       }
209
210       painter->drawPixmap(QPointF(br.x(), br.y()), m_startPix);
211       QLineF l2(br.x() + m_startPix.width(), br.y(), br.x() + m_startPix.width(), br.y() + br.height());
212       painter->drawLine(l2);
213     }
214
215     // draw start / end fades
216     double scale = br.width() / m_cropDuration;
217     QBrush fades;
218     if (isSelected()) {
219       fades = QBrush(QColor(200, 50, 50, 150));
220     }
221     else fades = QBrush(QColor(200, 200, 200, 200));
222
223     if (m_startFade != 0) {
224       QPainterPath fadeInPath;
225       fadeInPath.moveTo(br.x() - offset, br.y());
226       fadeInPath.lineTo(br.x() - offset, br.y() + br.height());
227       fadeInPath.lineTo(br.x() + m_startFade * scale, br.y());
228       fadeInPath.closeSubpath();
229       painter->fillPath(fadeInPath, fades);
230       if (isSelected()) {
231         QLineF l(br.x() + m_startFade * scale, br.y(), br.x(), br.y() + br.height());
232         painter->drawLine(l);
233       }
234     }
235     if (m_endFade != 0) {
236       QPainterPath fadeOutPath;
237       fadeOutPath.moveTo(br.x() + br.width(), br.y());
238       fadeOutPath.lineTo(br.x() + br.width(), br.y() + br.height());
239       fadeOutPath.lineTo(br.x() + br.width() - m_endFade * scale, br.y());
240       fadeOutPath.closeSubpath();
241       painter->fillPath(fadeOutPath, fades);
242       if (isSelected()) {
243         QLineF l(br.x() + br.width() - m_endFade * scale, br.y(), br.x() + br.width(), br.y() + br.height());
244         painter->drawLine(l);
245       }
246     }
247
248     QPen pen = painter->pen();
249     pen.setColor(Qt::white);
250     //pen.setStyle(Qt::DashDotDotLine); //Qt::DotLine);
251     // Draw clip name
252     QString effects = effectNames().join(" / ");
253     if (!effects.isEmpty()) {
254       painter->setPen(pen);
255       QFont font = painter->font();
256       QFont smallFont = font;
257       smallFont.setPointSize(8);
258       painter->setFont(smallFont);
259       QRectF txtBounding = painter->boundingRect(br, Qt::AlignLeft | Qt::AlignTop, " " + effects + " ");
260       painter->fillRect(txtBounding, QBrush(QColor(0,0,0,150)));
261       painter->drawText(txtBounding, Qt::AlignCenter, effects);
262       pen.setColor(Qt::black);
263       painter->setPen(pen);
264       painter->setFont(font);
265     }
266
267     QRectF txtBounding = painter->boundingRect(br, Qt::AlignCenter, " " + m_clipName + " ");
268     painter->fillRect(txtBounding, QBrush(QColor(255,255,255,150)));
269     painter->drawText(txtBounding, Qt::AlignCenter, m_clipName);
270
271     pen.setColor(Qt::red);
272     pen.setStyle(Qt::DashDotDotLine); //Qt::DotLine);
273     if (isSelected()) painter->setPen(pen);
274     painter->setClipRect(option->exposedRect);
275     painter->drawPath(roundRectPath);
276     //painter->fillRect(QRect(br.x(), br.y(), roundingX, roundingY), QBrush(QColor(Qt::green)));
277
278     /*QRectF recta(rect().x(), rect().y(), scale,rect().height());
279     painter->drawRect(recta);
280     painter->drawLine(rect().x() + 1, rect().y(), rect().x() + 1, rect().y() + rect().height());
281     painter->drawLine(rect().x() + rect().width(), rect().y(), rect().x() + rect().width(), rect().y() + rect().height());
282     painter->setPen(QPen(Qt::black, 1.0));
283     painter->drawLine(rect().x(), rect().y(), rect().x() + rect().width(), rect().y());
284     painter->drawLine(rect().x(), rect().y() + rect().height(), rect().x() + rect().width(), rect().y() + rect().height());*/
285
286     //QGraphicsRectItem::paint(painter, option, widget);
287     //QPen pen(Qt::green, 1.0 / size.x() + 0.5);
288     //painter->setPen(pen);
289     //painter->drawLine(rect().x(), rect().y(), rect().x() + rect().width(), rect().y());
290     //kDebug()<<"ITEM REPAINT RECT: "<<boundingRect().width();
291     //painter->drawText(rect(), Qt::AlignCenter, m_name);
292     // painter->drawRect(boundingRect());
293      //painter->drawRoundRect(-10, -10, 20, 20);
294  }
295
296
297 OPERATIONTYPE ClipItem::operationMode(QPointF pos, double scale)
298 {
299     if (abs(pos.x() - (rect().x() + scale * m_startFade)) < 6 && abs(pos.y() - rect().y()) < 6) return FADEIN;
300     else if (abs(pos.x() - rect().x()) < 6) return RESIZESTART;
301     else if (abs(pos.x() - (rect().x() + rect().width() - scale * m_endFade)) < 6 && abs(pos.y() - rect().y()) < 6) return FADEOUT;
302     else if (abs(pos.x() - (rect().x() + rect().width())) < 6) return RESIZEEND;
303     return MOVE;
304 }
305
306 int ClipItem::fadeIn() const
307 {
308   return m_startFade;
309 }
310
311 int ClipItem::fadeOut() const
312 {
313   return m_endFade;
314 }
315
316 void ClipItem::setFadeIn(int pos, double scale)
317 {
318   int oldIn = m_startFade;
319   if (pos < 0) pos = 0;
320   if (pos > m_cropDuration) pos = m_cropDuration / 2;
321   m_startFade = pos;
322   if (oldIn > pos) update(rect().x(), rect().y(), oldIn * scale, rect().height()); 
323   else update(rect().x(), rect().y(), pos * scale, rect().height());
324 }
325
326 void ClipItem::setFadeOut(int pos, double scale)
327 {
328   int oldOut = m_endFade;
329   if (pos < 0) pos = 0;
330   if (pos > m_cropDuration) pos = m_cropDuration / 2;
331   m_endFade = pos;
332   if (oldOut > pos) update(rect().x() + rect().width() - pos * scale, rect().y(), pos * scale, rect().height()); 
333   else update(rect().x() + rect().width() - oldOut * scale, rect().y(), oldOut * scale, rect().height());
334
335 }
336
337
338 // virtual
339  void ClipItem::mousePressEvent ( QGraphicsSceneMouseEvent * event ) 
340  {
341     /*m_resizeMode = operationMode(event->pos());
342     if (m_resizeMode == MOVE) {
343       m_maxTrack = scene()->sceneRect().height();
344       m_grabPoint = (int) (event->pos().x() - rect().x());
345     }*/
346     QGraphicsRectItem::mousePressEvent(event);
347  }
348
349 // virtual
350  void ClipItem::mouseReleaseEvent ( QGraphicsSceneMouseEvent * event ) 
351  {
352     m_resizeMode = NONE;
353     QGraphicsRectItem::mouseReleaseEvent(event);
354  }
355
356  void ClipItem::moveTo(int x, double scale, double offset, int newTrack)
357  {
358   double origX = rect().x();
359   double origY = rect().y();
360   bool success = true;
361   if (x < 0) return;
362   setRect(x * scale, origY + offset, rect().width(), rect().height());
363   QList <QGraphicsItem *> collisionList = collidingItems(Qt::IntersectsItemBoundingRect);
364   if (collisionList.size() == 0) m_track = newTrack;
365   for (int i = 0; i < collisionList.size(); ++i) {
366     QGraphicsItem *item = collisionList.at(i);
367     if (item->type() == 70000)
368     {
369         if (offset == 0)
370         {
371           QRectF other = ((QGraphicsRectItem *)item)->rect();
372           if (x < m_startPos) {
373             kDebug()<<"COLLISION, MOVING TO------";
374             m_startPos = ((ClipItem *)item)->endPos() + 1;
375             origX = m_startPos * scale; 
376           }
377           else {
378             kDebug()<<"COLLISION, MOVING TO+++";
379             m_startPos = ((ClipItem *)item)->startPos() - m_cropDuration;
380             origX = m_startPos * scale; 
381           }
382         }
383         setRect(origX, origY, rect().width(), rect().height());
384         offset = 0;
385         origX = rect().x();
386         success = false;
387         break;
388       }
389     }
390     if (success) {
391         m_track = newTrack;
392         m_startPos = x;
393     }
394 /*    QList <QGraphicsItem *> childrenList = QGraphicsItem::children();
395     for (int i = 0; i < childrenList.size(); ++i) {
396       childrenList.at(i)->moveBy(rect().x() - origX , offset);
397     }*/
398  }
399
400 void ClipItem::resizeStart(int posx, double scale)
401 {
402     int durationDiff = posx - m_startPos;
403     if (durationDiff == 0) return;
404     kDebug()<<"-- RESCALE: CROP="<<m_cropStart<<", DIFF = "<<durationDiff;
405     if (m_cropStart + durationDiff < 0) {
406       durationDiff = -m_cropStart;
407     }
408     else if (durationDiff >= m_cropDuration) {
409       durationDiff = m_cropDuration - 3;
410     }
411     m_startPos += durationDiff;
412     m_cropStart += durationDiff;
413     m_cropDuration -= durationDiff;
414     setRect(m_startPos * scale, rect().y(), m_cropDuration * scale, rect().height());
415     QList <QGraphicsItem *> collisionList = collidingItems(Qt::IntersectsItemBoundingRect);
416     for (int i = 0; i < collisionList.size(); ++i) {
417       QGraphicsItem *item = collisionList.at(i);
418       if (item->type() == 70000)
419       {
420         int diff = ((ClipItem *)item)->endPos() + 1 - m_startPos;
421         setRect((m_startPos + diff) * scale, rect().y(), (m_cropDuration - diff) * scale, rect().height());
422         m_startPos += diff;
423         m_cropStart += diff;
424         m_cropDuration -= diff;
425         break;
426       }
427     }
428     if (m_hasThumbs) startThumbTimer->start(100);
429 }
430
431 void ClipItem::resizeEnd(int posx, double scale)
432 {
433     int durationDiff = posx - endPos();
434     if (durationDiff == 0) return;
435     kDebug()<<"-- RESCALE: CROP="<<m_cropStart<<", DIFF = "<<durationDiff;
436     if (m_cropDuration + durationDiff <= 0) {
437       durationDiff = - (m_cropDuration - 3);
438     }
439     else if (m_cropDuration + durationDiff >= m_maxDuration) {
440       durationDiff = m_maxDuration - m_cropDuration;
441     }
442     m_cropDuration += durationDiff;
443     setRect(m_startPos * scale, rect().y(), m_cropDuration * scale, rect().height());
444     QList <QGraphicsItem *> collisionList = collidingItems(Qt::IntersectsItemBoundingRect);
445     for (int i = 0; i < collisionList.size(); ++i) {
446       QGraphicsItem *item = collisionList.at(i);
447       if (item->type() == 70000)
448       {
449         int diff = ((ClipItem *)item)->startPos() - 1 - startPos();
450         m_cropDuration = diff;
451         setRect(m_startPos * scale, rect().y(), m_cropDuration * scale, rect().height());
452         break;
453       }
454     }
455     if (m_hasThumbs) endThumbTimer->start(100);
456 }
457
458 // virtual
459  void ClipItem::mouseMoveEvent ( QGraphicsSceneMouseEvent * event ) 
460  {
461  }
462
463 int ClipItem::track()
464 {
465   return  m_track;
466 }
467
468 void ClipItem::setTrack(int track)
469 {
470   m_track = track;
471 }
472
473 int ClipItem::effectsCount()
474 {
475   return m_effectList.size();
476 }
477
478 QStringList ClipItem::effectNames()
479 {
480   QStringList result;
481   for (int i = 0; i < m_effectList.size(); ++i) {
482         QDomNode namenode = m_effectList.at(i).elementsByTagName("name").item(0);
483         if (!namenode.isNull()) result.append(namenode.toElement().text());
484   }
485   kDebug()<<"///  EFFECT LIST FOR CLIP IS: "<<result;
486   return result;
487 }
488
489 QDomElement ClipItem::effectAt(int ix)
490 {
491   return m_effectList.at(ix);
492 }
493
494 QMap <QString, QString> ClipItem::addEffect(QDomElement effect)
495 {
496   QMap <QString, QString> effectParams;
497   effectParams["kdenlive_ix"] = QString::number(m_effectList.size());
498   m_effectList.append(effect);
499   effectParams["tag"] = effect.attribute("tag");
500   QDomNodeList params = effect.elementsByTagName("parameter");
501   for (int i = 0; i < params.count(); i++) {
502     QDomElement e = params.item(i).toElement();
503     if (!e.isNull())
504       effectParams[e.attribute("name")] = e.attribute("value");
505   }
506   update(boundingRect());
507   return effectParams;
508 }
509
510 void ClipItem::deleteEffect(QString tag)
511 {
512   for (int i = 0; i < m_effectList.size(); ++i) {
513     if (m_effectList.at(i).attribute("kdenlive_ix") == tag) {
514       m_effectList.removeAt(i);
515       break;
516     }
517   }
518   update(boundingRect());
519 }
520
521
522 // virtual 
523 /*
524 void CustomTrackView::mousePressEvent ( QMouseEvent * event )
525 {
526   int pos = event->x();
527   if (event->modifiers() == Qt::ControlModifier) 
528     setDragMode(QGraphicsView::ScrollHandDrag);
529   else if (event->modifiers() == Qt::ShiftModifier) 
530     setDragMode(QGraphicsView::RubberBandDrag);
531   else {
532     QGraphicsItem * item = itemAt(event->pos());
533     if (item) {
534     }
535     else emit cursorMoved((int) mapToScene(event->x(), 0).x());
536   }
537   kDebug()<<pos;
538   QGraphicsView::mousePressEvent(event);
539 }
540
541 void CustomTrackView::mouseReleaseEvent ( QMouseEvent * event )
542 {
543   QGraphicsView::mouseReleaseEvent(event);
544   setDragMode(QGraphicsView::NoDrag);
545 }
546 */
547
548 #include "clipitem.moc"