]> git.sesse.net Git - kdenlive/blob - src/clipitem.cpp
Start of image clips
[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(QDomElement xml, int track, int startpos, const QRectF & rect, int duration)
37     : QGraphicsRectItem(rect), m_xml(xml), m_resizeMode(NONE), m_grabPoint(0), m_maxTrack(0), m_track(track), m_startPos(startpos), m_thumbProd(NULL), startThumbTimer(NULL), endThumbTimer(NULL)
38 {
39   //setToolTip(name);
40
41   m_clipName = xml.attribute("name");
42   if (m_clipName.isEmpty()) m_clipName = KUrl(xml.attribute("resource")).fileName();
43
44   m_producer = xml.attribute("id").toInt();
45
46   m_clipType = (CLIPTYPE) xml.attribute("type").toInt();
47
48   m_cropStart = xml.attribute("in", 0).toInt();
49   m_maxDuration = xml.attribute("duration", 0).toInt();
50   if (m_maxDuration == 0) m_maxDuration = xml.attribute("out", 0).toInt() - m_cropStart;
51
52   if (duration != -1) m_cropDuration = duration;
53   else m_cropDuration = m_maxDuration;
54
55   setFlags(QGraphicsItem::ItemClipsToShape | QGraphicsItem::ItemClipsChildrenToShape | QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);
56
57   setBrush(QColor(100, 100, 150));
58   if (m_clipType == VIDEO || m_clipType == AV) {
59     m_thumbProd = new KThumb(KUrl(xml.attribute("resource")));
60     connect(this, SIGNAL(getThumb(int, int, int, int)), m_thumbProd, SLOT(extractImage(int, int, int, int)));
61     connect(m_thumbProd, SIGNAL(thumbReady(int, QPixmap)), this, SLOT(slotThumbReady(int, QPixmap)));
62     QTimer::singleShot(300, this, SLOT(slotFetchThumbs()));
63
64     startThumbTimer = new QTimer(this);
65     startThumbTimer->setSingleShot(true);
66     connect(startThumbTimer, SIGNAL(timeout()), this, SLOT(slotGetStartThumb()));
67     endThumbTimer = new QTimer(this);
68     endThumbTimer->setSingleShot(true);
69     connect(endThumbTimer, SIGNAL(timeout()), this, SLOT(slotGetEndThumb()));
70
71   }
72   else if (m_clipType == COLOR) {
73     QString colour = xml.attribute("colour");
74     colour = colour.replace(0, 2, "#");
75     setBrush(QColor(colour.left(7)));
76   }
77   else if (m_clipType == IMAGE) {
78     m_startPix = KThumb::getImage(KUrl(xml.attribute("resource")), 50 * KdenliveSettings::project_display_ratio(), 50);
79   }
80   //m_startPix.load("/home/one/Desktop/thumb.jpg");
81 }
82
83 ClipItem::~ClipItem()
84 {
85   if (startThumbTimer) delete startThumbTimer;
86   if (endThumbTimer) delete endThumbTimer;
87   if (m_thumbProd) delete m_thumbProd;
88 }
89
90 void ClipItem::slotFetchThumbs()
91 {
92   emit getThumb(m_cropStart, m_cropStart + m_cropDuration, 50 * KdenliveSettings::project_display_ratio(), 50);
93 }
94
95 void ClipItem::slotGetStartThumb()
96 {
97   emit getThumb(m_cropStart, -1, 50 * KdenliveSettings::project_display_ratio(), 50);
98 }
99
100 void ClipItem::slotGetEndThumb()
101 {
102   emit getThumb(-1, m_cropStart + m_cropDuration, 50 * KdenliveSettings::project_display_ratio(), 50);
103 }
104
105 void ClipItem::slotThumbReady(int frame, QPixmap pix)
106 {
107   if (frame == m_cropStart) m_startPix = pix;
108   else m_endPix = pix;
109   update();
110 }
111
112 int ClipItem::type () const
113 {
114   return 70000;
115 }
116
117 QDomElement ClipItem::xml() const
118 {
119   return m_xml;
120 }
121
122 int ClipItem::clipType()
123 {
124   return m_clipType;
125 }
126
127 QString ClipItem::clipName()
128 {
129   return m_clipName;
130 }
131
132 int ClipItem::clipProducer()
133 {
134   return m_producer;
135 }
136
137 int ClipItem::maxDuration()
138 {
139   return m_maxDuration;
140 }
141
142 int ClipItem::duration()
143 {
144   return m_cropDuration;
145 }
146
147 int ClipItem::startPos()
148 {
149   return m_startPos;
150 }
151
152 int ClipItem::endPos()
153 {
154   return m_startPos + m_cropDuration;
155 }
156
157 // virtual 
158  void ClipItem::paint(QPainter *painter,
159                            const QStyleOptionGraphicsItem *option,
160                            QWidget *widget)
161  {
162     QRectF br = rect();
163     painter->setRenderHints(QPainter::Antialiasing);
164     QPainterPath roundRectPath;
165     double roundingY = 20;
166     double roundingX = 20;
167     double offset = 1;
168     painter->setClipRect(option->exposedRect);
169     if (roundingX > br.width() / 2) roundingX = br.width() / 2;
170     //kDebug()<<"-----PAINTING, SCAL: "<<scale<<", height: "<<br.height();
171     roundRectPath.moveTo(br.x() + br .width() - offset, br.y() + roundingY);
172     roundRectPath.arcTo(br.x() + br .width() - roundingX - offset, br.y(), roundingX, roundingY, 0.0, 90.0);
173     roundRectPath.lineTo(br.x() + roundingX, br.y());
174     roundRectPath.arcTo(br.x() + offset, br.y(), roundingX, roundingY, 90.0, 90.0);
175     roundRectPath.lineTo(br.x() + offset, br.y() + br.height() - roundingY);
176     roundRectPath.arcTo(br.x() + offset, br.y() + br.height() - roundingY - offset, roundingX, roundingY, 180.0, 90.0);
177     roundRectPath.lineTo(br.x() + br .width() - roundingX, br.y() + br.height() - offset);
178     roundRectPath.arcTo(br.x() + br .width() - roundingX - offset, br.y() + br.height() - roundingY - offset, roundingX, roundingY, 270.0, 90.0);
179     roundRectPath.closeSubpath();
180     painter->setClipPath(roundRectPath, Qt::IntersectClip);
181     //painter->fillPath(roundRectPath, brush()); //, QBrush(QColor(Qt::red)));
182     painter->fillRect(br, brush());
183     //painter->fillRect(QRectF(br.x() + br.width() - m_endPix.width(), br.y(), m_endPix.width(), br.height()), QBrush(QColor(Qt::black)));
184
185     // draw thumbnails
186     if (!m_startPix.isNull()) {
187       if (m_clipType == IMAGE) {
188         painter->drawPixmap(QPointF(br.x() + br.width() - m_startPix.width(), br.y()), m_startPix);
189         QLineF l(br.x() + br.width() - m_startPix.width(), br.y(), br.x() + br.width() - m_startPix.width(), br.y() + br.height());
190         painter->drawLine(l);
191       } else {
192         painter->drawPixmap(QPointF(br.x() + br.width() - m_endPix.width(), br.y()), m_endPix);
193         QLineF l(br.x() + br.width() - m_endPix.width(), br.y(), br.x() + br.width() - m_endPix.width(), br.y() + br.height());
194         painter->drawLine(l);
195       }
196
197       painter->drawPixmap(QPointF(br.x(), br.y()), m_startPix);
198       QLineF l2(br.x() + m_startPix.width(), br.y(), br.x() + m_startPix.width(), br.y() + br.height());
199       painter->drawLine(l2);
200     }
201     painter->setClipRect(option->exposedRect);
202     QPen pen = painter->pen();
203     pen.setColor(Qt::red);
204     pen.setStyle(Qt::DashDotDotLine); //Qt::DotLine);
205
206     // Draw clip name
207     QRectF txtBounding = painter->boundingRect(br, Qt::AlignCenter, " " + m_clipName + " ");
208     painter->fillRect(txtBounding, QBrush(QColor(255,255,255,150)));
209     painter->drawText(txtBounding, Qt::AlignCenter, m_clipName);
210
211     if (isSelected()) painter->setPen(pen);
212     painter->drawPath(roundRectPath);
213     //painter->fillRect(QRect(br.x(), br.y(), roundingX, roundingY), QBrush(QColor(Qt::green)));
214
215     /*QRectF recta(rect().x(), rect().y(), scale,rect().height());
216     painter->drawRect(recta);
217     painter->drawLine(rect().x() + 1, rect().y(), rect().x() + 1, rect().y() + rect().height());
218     painter->drawLine(rect().x() + rect().width(), rect().y(), rect().x() + rect().width(), rect().y() + rect().height());
219     painter->setPen(QPen(Qt::black, 1.0));
220     painter->drawLine(rect().x(), rect().y(), rect().x() + rect().width(), rect().y());
221     painter->drawLine(rect().x(), rect().y() + rect().height(), rect().x() + rect().width(), rect().y() + rect().height());*/
222
223     //QGraphicsRectItem::paint(painter, option, widget);
224     //QPen pen(Qt::green, 1.0 / size.x() + 0.5);
225     //painter->setPen(pen);
226     //painter->drawLine(rect().x(), rect().y(), rect().x() + rect().width(), rect().y());
227     //kDebug()<<"ITEM REPAINT RECT: "<<boundingRect().width();
228     //painter->drawText(rect(), Qt::AlignCenter, m_name);
229     // painter->drawRect(boundingRect());
230      //painter->drawRoundRect(-10, -10, 20, 20);
231  }
232
233
234 OPERATIONTYPE ClipItem::operationMode(QPointF pos)
235 {
236     if (abs(pos.x() - rect().x()) < 6) {
237       if (abs(pos.y() - rect().y()) < 6) return FADEIN;
238       return RESIZESTART;
239     }
240     else if (abs(pos.x() - (rect().x() + rect().width())) < 6) {
241       if (abs(pos.y() - rect().y()) < 6) return FADEOUT;
242       return RESIZEEND;
243     }
244     return MOVE;
245 }
246
247
248 // virtual
249  void ClipItem::mousePressEvent ( QGraphicsSceneMouseEvent * event ) 
250  {
251     m_resizeMode = operationMode(event->pos());
252     if (m_resizeMode == MOVE) {
253       m_maxTrack = scene()->sceneRect().height();
254       m_grabPoint = (int) (event->pos().x() - rect().x());
255     }
256     QGraphicsRectItem::mousePressEvent(event);
257  }
258
259 // virtual
260  void ClipItem::mouseReleaseEvent ( QGraphicsSceneMouseEvent * event ) 
261  {
262     m_resizeMode = NONE;
263     QGraphicsRectItem::mouseReleaseEvent(event);
264  }
265
266  void ClipItem::moveTo(int x, double scale, double offset, int newTrack)
267  {
268   double origX = rect().x();
269   double origY = rect().y();
270   bool success = true;
271   setRect(x * scale, origY + offset, rect().width(), rect().height());
272   QList <QGraphicsItem *> collisionList = collidingItems(Qt::IntersectsItemBoundingRect);
273   if (collisionList.size() == 0) m_track = newTrack;
274   for (int i = 0; i < collisionList.size(); ++i) {
275     QGraphicsItem *item = collisionList.at(i);
276     if (item->type() == 70000)
277     {
278         if (offset == 0)
279         {
280           QRectF other = ((QGraphicsRectItem *)item)->rect();
281           if (x < m_startPos) {
282             kDebug()<<"COLLISION, MOVING TO------";
283             m_startPos = ((ClipItem *)item)->endPos() + 1;
284             origX = m_startPos * scale; 
285           }
286           else {
287             kDebug()<<"COLLISION, MOVING TO+++";
288             m_startPos = ((ClipItem *)item)->startPos() - m_cropDuration;
289             origX = m_startPos * scale; 
290           }
291         }
292         setRect(origX, origY, rect().width(), rect().height());
293         offset = 0;
294         origX = rect().x();
295         success = false;
296         break;
297       }
298     }
299     if (success) {
300         m_track = newTrack;
301         m_startPos = x;
302     }
303 /*    QList <QGraphicsItem *> childrenList = QGraphicsItem::children();
304     for (int i = 0; i < childrenList.size(); ++i) {
305       childrenList.at(i)->moveBy(rect().x() - origX , offset);
306     }*/
307  }
308
309 void ClipItem::resizeStart(int posx, double scale)
310 {
311     int durationDiff = posx - m_startPos;
312     if (durationDiff == 0) return;
313     kDebug()<<"-- RESCALE: CROP="<<m_cropStart<<", DIFF = "<<durationDiff;
314     if (m_cropStart + durationDiff < 0) {
315       durationDiff = -m_cropStart;
316     }
317     else if (durationDiff >= m_cropDuration) {
318       durationDiff = m_cropDuration - 3;
319     }
320     m_startPos += durationDiff;
321     m_cropStart += durationDiff;
322     m_cropDuration -= durationDiff;
323     setRect(m_startPos * scale, rect().y(), m_cropDuration * scale, rect().height());
324     QList <QGraphicsItem *> collisionList = collidingItems(Qt::IntersectsItemBoundingRect);
325     for (int i = 0; i < collisionList.size(); ++i) {
326       QGraphicsItem *item = collisionList.at(i);
327       if (item->type() == 70000)
328       {
329         int diff = ((ClipItem *)item)->endPos() + 1 - m_startPos;
330         setRect((m_startPos + diff) * scale, rect().y(), (m_cropDuration - diff) * scale, rect().height());
331         m_startPos += diff;
332         m_cropStart += diff;
333         m_cropDuration -= diff;
334         break;
335       }
336     }
337     if (m_thumbProd) startThumbTimer->start(100);
338 }
339
340 void ClipItem::resizeEnd(int posx, double scale)
341 {
342     int durationDiff = posx - endPos();
343     if (durationDiff == 0) return;
344     kDebug()<<"-- RESCALE: CROP="<<m_cropStart<<", DIFF = "<<durationDiff;
345     if (m_cropDuration + durationDiff <= 0) {
346       durationDiff = - (m_cropDuration - 3);
347     }
348     else if (m_cropDuration + durationDiff >= m_maxDuration) {
349       durationDiff = m_maxDuration - m_cropDuration;
350     }
351     m_cropDuration += durationDiff;
352     setRect(m_startPos * scale, rect().y(), m_cropDuration * scale, rect().height());
353     QList <QGraphicsItem *> collisionList = collidingItems(Qt::IntersectsItemBoundingRect);
354     for (int i = 0; i < collisionList.size(); ++i) {
355       QGraphicsItem *item = collisionList.at(i);
356       if (item->type() == 70000)
357       {
358         int diff = ((ClipItem *)item)->startPos() - 1 - startPos();
359         m_cropDuration = diff;
360         setRect(m_startPos * scale, rect().y(), m_cropDuration * scale, rect().height());
361         break;
362       }
363     }
364     if (m_thumbProd) endThumbTimer->start(100);
365 }
366
367 // virtual
368  void ClipItem::mouseMoveEvent ( QGraphicsSceneMouseEvent * event ) 
369  {
370  }
371
372 int ClipItem::track()
373 {
374   return  m_track;
375 }
376
377 void ClipItem::setTrack(int track)
378 {
379   m_track = track;
380 }
381
382
383 // virtual 
384 /*
385 void CustomTrackView::mousePressEvent ( QMouseEvent * event )
386 {
387   int pos = event->x();
388   if (event->modifiers() == Qt::ControlModifier) 
389     setDragMode(QGraphicsView::ScrollHandDrag);
390   else if (event->modifiers() == Qt::ShiftModifier) 
391     setDragMode(QGraphicsView::RubberBandDrag);
392   else {
393     QGraphicsItem * item = itemAt(event->pos());
394     if (item) {
395     }
396     else emit cursorMoved((int) mapToScene(event->x(), 0).x());
397   }
398   kDebug()<<pos;
399   QGraphicsView::mousePressEvent(event);
400 }
401
402 void CustomTrackView::mouseReleaseEvent ( QMouseEvent * event )
403 {
404   QGraphicsView::mouseReleaseEvent(event);
405   setDragMode(QGraphicsView::NoDrag);
406 }
407 */
408
409 #include "clipitem.moc"