]> git.sesse.net Git - kdenlive/blob - src/abstractclipitem.cpp
reindent.sh ;)
[kdenlive] / src / abstractclipitem.cpp
1 /***************************************************************************
2  *   Copyright (C) 2008 by Marco Gittler (g.marco@freenet.de)              *
3  *   Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
19  ***************************************************************************/
20
21 #include "abstractclipitem.h"
22 #include "customtrackscene.h"
23 #include "kdenlivesettings.h"
24
25 #include <KDebug>
26 #include <KLocale>
27
28 #include <QPainter>
29 #include <QToolTip>
30 #include <QGraphicsSceneMouseEvent>
31
32 AbstractClipItem::AbstractClipItem(const ItemInfo info, const QRectF& rect, double fps) :
33         QObject(),
34         QGraphicsRectItem(rect),
35         m_info(info),
36         m_editedKeyframe(-1),
37         m_selectedKeyframe(0),
38         m_keyframeFactor(1),
39         m_fps(fps)
40 #if QT_VERSION >= 0x040600
41         , m_closeAnimation(NULL)
42 #endif
43 {
44     setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);
45 #if QT_VERSION >= 0x040600
46     setFlag(QGraphicsItem::ItemSendsGeometryChanges, true);
47 #endif
48 }
49
50 AbstractClipItem::~AbstractClipItem()
51 {
52 #if QT_VERSION >= 0x040600
53     if (m_closeAnimation) delete m_closeAnimation;
54 #endif
55 }
56
57 void AbstractClipItem::closeAnimation()
58 {
59 #if QT_VERSION >= 0x040600
60     if (m_closeAnimation) return;
61     setEnabled(false);
62     m_closeAnimation = new QPropertyAnimation(this, "rect");
63     connect(m_closeAnimation, SIGNAL(finished()), this, SLOT(deleteLater()));
64     m_closeAnimation->setDuration(200);
65     QRectF r = rect();
66     QRectF r2 = r;
67     r2.setLeft(r.left() + r.width() / 2);
68     r2.setTop(r.top() + r.height() / 2);
69     r2.setWidth(1);
70     r2.setHeight(1);
71     m_closeAnimation->setStartValue(r);
72     m_closeAnimation->setEndValue(r2);
73     m_closeAnimation->setEasingCurve(QEasingCurve::InQuad);
74     m_closeAnimation->start();
75 #endif
76 }
77
78 ItemInfo AbstractClipItem::info() const
79 {
80     ItemInfo info = m_info;
81     info.cropStart = cropStart();
82     info.endPos = endPos();
83     return info;
84 }
85
86 int AbstractClipItem::defaultZValue() const
87 {
88     return 2;
89 }
90
91 GenTime AbstractClipItem::endPos() const
92 {
93     return m_info.startPos + m_info.cropDuration;
94 }
95
96 int AbstractClipItem::track() const
97 {
98     return m_info.track;
99 }
100
101 GenTime AbstractClipItem::cropStart() const
102 {
103     return m_info.cropStart;
104 }
105
106 GenTime AbstractClipItem::cropDuration() const
107 {
108     return m_info.cropDuration;
109 }
110
111 void AbstractClipItem::setCropStart(GenTime pos)
112 {
113     m_info.cropStart = pos;
114 }
115
116 void AbstractClipItem::updateItem()
117 {
118     m_info.track = (int)(scenePos().y() / KdenliveSettings::trackheight());
119     m_info.startPos = GenTime((int) scenePos().x(), m_fps);
120 }
121
122 void AbstractClipItem::updateRectGeometry()
123 {
124     setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
125 }
126
127 void AbstractClipItem::resizeStart(int posx)
128 {
129     GenTime durationDiff = GenTime(posx, m_fps) - m_info.startPos;
130     if (durationDiff == GenTime()) return;
131     //kDebug() << "-- RESCALE DIFF=" << durationDiff.frames(25) << ", CLIP: " << startPos().frames(25) << "-" << endPos().frames(25);
132
133     if (type() == AVWIDGET && cropStart() + durationDiff < GenTime()) {
134         durationDiff = GenTime() - cropStart();
135     } else if (durationDiff >= cropDuration()) {
136         return;
137         if (cropDuration() > GenTime(3, m_fps)) durationDiff = GenTime(3, m_fps);
138         else return;
139     }
140     //kDebug()<<"// DURATION DIFF: "<<durationDiff.frames(25)<<", POS: "<<pos().x();
141     m_info.startPos += durationDiff;
142
143     if (type() == AVWIDGET) {
144         m_info.cropStart += durationDiff;
145     }
146
147     m_info.cropDuration = m_info.cropDuration - durationDiff;
148     setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
149     moveBy(durationDiff.frames(m_fps), 0);
150
151     if (m_info.startPos != GenTime(posx, m_fps)) {
152         kDebug() << "__ RESIZE START OFFSET: ";
153         //kDebug()<<"//////  WARNING, DIFF IN XPOS: "<<pos().x()<<" == "<<m_startPos.frames(m_fps);
154         GenTime diff = m_info.startPos - GenTime((int) posx, m_fps);
155
156         if (type() == AVWIDGET) {
157             m_info.cropStart += diff;
158         }
159         m_info.cropDuration = m_info.cropDuration - diff;
160         setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
161         //kDebug()<<"// NEW START: "<<m_startPos.frames(25)<<", NW DUR: "<<m_cropDuration.frames(25);
162     }
163
164
165     //kDebug() << "-- NEW CLIP=" << startPos().frames(25) << "-" << endPos().frames(25);
166     //setRect((double) m_startPos.frames(m_fps) * scale, rect().y(), (double) m_cropDuration.frames(m_fps) * scale, rect().height());
167
168     /*    if (durationDiff < GenTime()) {
169             QList <QGraphicsItem *> collisionList = collidingItems(Qt::IntersectsItemBoundingRect);
170             for (int i = 0; i < collisionList.size(); ++i) {
171                 QGraphicsItem *item = collisionList.at(i);
172                 if (item->type() == type() && item->pos().x() < pos().x()) {
173                     kDebug() << "/////////  COLLISION DETECTED!!!!!!!!!";
174                     GenTime diff = ((AbstractClipItem *)item)->endPos() + GenTime(1, m_fps) - m_startPos;
175                     setRect(0, 0, (m_cropDuration - diff).frames(m_fps) - 0.02, rect().height());
176                     setPos((m_startPos + diff).frames(m_fps), pos().y());
177                     m_startPos += diff;
178                     if (type() == AVWIDGET) m_cropStart += diff;
179                     m_cropDuration = m_cropDuration - diff;
180                     break;
181                 }
182             }
183         }*/
184 }
185
186 void AbstractClipItem::resizeEnd(int posx)
187 {
188     GenTime durationDiff = GenTime(posx, m_fps) - endPos();
189     if (durationDiff == GenTime()) return;
190     if (cropDuration() + durationDiff <= GenTime()) {
191         durationDiff = GenTime() - (cropDuration() - GenTime(3, m_fps));
192     }
193
194     m_info.cropDuration += durationDiff;
195
196     setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
197     if (durationDiff > GenTime()) {
198         QList <QGraphicsItem *> collisionList = collidingItems(Qt::IntersectsItemBoundingRect);
199         for (int i = 0; i < collisionList.size(); ++i) {
200             if (!collisionList.at(i)->isEnabled()) continue;
201             QGraphicsItem *item = collisionList.at(i);
202             if (item->type() == type() && item->pos().x() > pos().x()) {
203                 kDebug() << "/////////  COLLISION DETECTED!!!!!!!!!";
204                 kDebug() << "/////////  CURRENT: " << startPos().frames(25) << "x" << endPos().frames(25) << ", RECT: " << rect() << "-" << pos();
205                 kDebug() << "/////////  COLLISION: " << ((AbstractClipItem *)item)->startPos().frames(25) << "x" << ((AbstractClipItem *)item)->endPos().frames(25) << ", RECT: " << ((AbstractClipItem *)item)->rect() << "-" << item->pos();
206                 GenTime diff = ((AbstractClipItem *)item)->startPos() - startPos();
207                 m_info.cropDuration = diff;
208                 setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
209                 break;
210             }
211         }
212     }
213 }
214
215 GenTime AbstractClipItem::startPos() const
216 {
217     return m_info.startPos;
218 }
219
220 void AbstractClipItem::setTrack(int track)
221 {
222     m_info.track = track;
223 }
224
225 double AbstractClipItem::fps() const
226 {
227     return m_fps;
228 }
229
230 void AbstractClipItem::updateFps(double fps)
231 {
232     m_fps = fps;
233     setPos((qreal) startPos().frames(m_fps), pos().y());
234     updateRectGeometry();
235 }
236
237 GenTime AbstractClipItem::maxDuration() const
238 {
239     return m_maxDuration;
240 }
241
242 void AbstractClipItem::drawKeyFrames(QPainter *painter, QRectF /*exposedRect*/)
243 {
244     if (m_keyframes.count() < 2) return;
245     QRectF br = rect();
246     double maxw = br.width() / cropDuration().frames(m_fps);
247     double maxh = br.height() / 100.0 * m_keyframeFactor;
248     double x1;
249     double y1;
250     double x2;
251     double y2;
252
253     // draw line showing default value
254     bool active = isSelected() || (parentItem() && parentItem()->isSelected());
255     if (active) {
256         x1 = br.x();
257         x2 = br.right();
258         y1 = br.bottom() - m_keyframeDefault * maxh;
259         QLineF l(x1, y1, x2, y1);
260         QLineF l2 = painter->matrix().map(l);
261         painter->setPen(QColor(168, 168, 168, 180));
262         painter->drawLine(l2);
263         painter->setPen(QColor(108, 108, 108, 180));
264         painter->drawLine(l2.translated(0, 1));
265         painter->setPen(QColor(Qt::white));
266     }
267
268     // draw keyframes
269     QMap<int, int>::const_iterator i = m_keyframes.constBegin();
270     QColor color(Qt::blue);
271     x1 = br.x() + maxw * (i.key() - cropStart().frames(m_fps));
272     y1 = br.bottom() - i.value() * maxh;
273     QLineF l2;
274     while (i != m_keyframes.constEnd()) {
275         if (i.key() == m_selectedKeyframe) color = QColor(Qt::red);
276         else color = QColor(Qt::blue);
277         ++i;
278         if (i == m_keyframes.constEnd()) break;
279         x2 = br.x() + maxw * (i.key() - cropStart().frames(m_fps));
280         y2 = br.bottom() - i.value() * maxh;
281         QLineF l(x1, y1, x2, y2);
282         l2 = painter->matrix().map(l);
283         painter->drawLine(l2);
284         if (active) {
285             const QRectF frame(l2.x1() - 3, l2.y1() - 3, 6, 6);
286             painter->fillRect(frame, color);
287         }
288         x1 = x2;
289         y1 = y2;
290     }
291     if (active) {
292         const QRectF frame(l2.x2() - 3, l2.y2() - 3, 6, 6);
293         painter->fillRect(frame, color);
294     }
295 }
296
297 int AbstractClipItem::mouseOverKeyFrames(QPointF pos, double maxOffset)
298 {
299     const QRectF br = sceneBoundingRect();
300     double maxw = br.width() / cropDuration().frames(m_fps);
301     double maxh = br.height() / 100.0 * m_keyframeFactor;
302     if (m_keyframes.count() > 1) {
303         QMap<int, int>::const_iterator i = m_keyframes.constBegin();
304         double x1;
305         double y1;
306         while (i != m_keyframes.constEnd()) {
307             x1 = br.x() + maxw * (i.key() - cropStart().frames(m_fps));
308             y1 = br.bottom() - i.value() * maxh;
309             if (qAbs(pos.x() - x1) < maxOffset && qAbs(pos.y() - y1) < 10) {
310                 setToolTip('[' + QString::number((GenTime(i.key(), m_fps) - cropStart()).seconds(), 'f', 2) + i18n("seconds") + ", " + QString::number(i.value(), 'f', 1) + "%]");
311                 return i.key();
312             } else if (x1 > pos.x()) break;
313             ++i;
314         }
315     }
316     setToolTip(QString());
317     return -1;
318 }
319
320 void AbstractClipItem::updateSelectedKeyFrame()
321 {
322     if (m_editedKeyframe == -1) return;
323     QRectF br = sceneBoundingRect();
324     double maxw = br.width() / cropDuration().frames(m_fps);
325     double maxh = br.height() / 100.0 * m_keyframeFactor;
326     update(br.x() + maxw *(m_selectedKeyframe - cropStart().frames(m_fps)) - 3, br.bottom() - m_keyframes[m_selectedKeyframe] * maxh - 3, 12, 12);
327     m_selectedKeyframe = m_editedKeyframe;
328     update(br.x() + maxw *(m_selectedKeyframe - cropStart().frames(m_fps)) - 3, br.bottom() - m_keyframes[m_selectedKeyframe] * maxh - 3, 12, 12);
329 }
330
331 int AbstractClipItem::selectedKeyFramePos() const
332 {
333     return m_editedKeyframe;
334 }
335
336 double AbstractClipItem::selectedKeyFrameValue() const
337 {
338     return m_keyframes[m_editedKeyframe];
339 }
340
341 void AbstractClipItem::updateKeyFramePos(const GenTime pos, const double value)
342 {
343     if (!m_keyframes.contains(m_selectedKeyframe)) return;
344     int newpos = (int) pos.frames(m_fps);
345     int start = cropStart().frames(m_fps);
346     int end = (cropStart() + cropDuration()).frames(m_fps) - 1;
347     newpos = qMax(newpos, start);
348     newpos = qMin(newpos, end);
349     if (value < -50 && m_selectedKeyframe != start && m_selectedKeyframe != end) {
350         // remove kexframe if it is dragged outside
351         m_keyframes.remove(m_selectedKeyframe);
352         m_selectedKeyframe = -1;
353         update();
354         return;
355     }
356     if (value > 150 && m_selectedKeyframe != start && m_selectedKeyframe != end) {
357         // remove kexframe if it is dragged outside
358         m_keyframes.remove(m_selectedKeyframe);
359         m_selectedKeyframe = -1;
360         update();
361         return;
362     }
363     double newval = qMax(value, 0.0);
364     newval = qMin(newval, 100.0);
365     newval = newval / m_keyframeFactor;
366     if (m_selectedKeyframe != newpos) m_keyframes.remove(m_selectedKeyframe);
367     m_keyframes[newpos] = (int) newval;
368     m_selectedKeyframe = newpos;
369     update();
370 }
371
372 double AbstractClipItem::keyFrameFactor() const
373 {
374     return m_keyframeFactor;
375 }
376
377 void AbstractClipItem::addKeyFrame(const GenTime pos, const double value)
378 {
379     QRectF br = sceneBoundingRect();
380     double maxh = 100.0 / br.height() / m_keyframeFactor;
381     int newval = (br.bottom() - value) * maxh;
382     //kDebug() << "Rect: " << br << "/ SCENE: " << sceneBoundingRect() << ", VALUE: " << value << ", MAX: " << maxh << ", NEWVAL: " << newval;
383     int newpos = (int) pos.frames(m_fps) ;
384     m_keyframes[newpos] = newval;
385     m_selectedKeyframe = newpos;
386     update();
387 }
388
389 bool AbstractClipItem::hasKeyFrames() const
390 {
391     return !m_keyframes.isEmpty();
392 }
393
394 /*QRect AbstractClipItem::visibleRect() {
395     QRect rectInView;
396     if (scene()->views().size() > 0) {
397         rectInView = scene()->views()[0]->viewport()->rect();
398         rectInView.moveTo(scene()->views()[0]->horizontalScrollBar()->value(), scene()->views()[0]->verticalScrollBar()->value());
399         rectInView.adjust(-10, -10, 10, 10);//make view rect 10 pixel greater on each site, or repaint after scroll event
400         //kDebug() << scene()->views()[0]->viewport()->rect() << " " <<  scene()->views()[0]->horizontalScrollBar()->value();
401     }
402     return rectInView;
403 }*/
404
405 CustomTrackScene* AbstractClipItem::projectScene()
406 {
407     if (scene()) return static_cast <CustomTrackScene*>(scene());
408     return NULL;
409 }
410
411 void AbstractClipItem::setItemLocked(bool locked)
412 {
413     if (locked) {
414         setSelected(false);
415         setFlag(QGraphicsItem::ItemIsMovable, false);
416         setFlag(QGraphicsItem::ItemIsSelectable, false);
417     } else {
418         setFlag(QGraphicsItem::ItemIsMovable, true);
419         setFlag(QGraphicsItem::ItemIsSelectable, true);
420     }
421 }
422
423 bool AbstractClipItem::isItemLocked() const
424 {
425     return !(flags() & (QGraphicsItem::ItemIsSelectable));
426 }
427
428 // virtual
429 void AbstractClipItem::mousePressEvent(QGraphicsSceneMouseEvent * event)
430 {
431     if (event->modifiers() & Qt::ShiftModifier) {
432         // User want to do a rectangle selection, so ignore the event to pass it to the view
433         event->ignore();
434     } else QGraphicsItem::mousePressEvent(event);
435 }
436