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