]> git.sesse.net Git - kdenlive/blob - src/abstractclipitem.cpp
Fix problems when changing duration (from end) of clip with negative crop from start
[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     m_info.endPos += durationDiff;
194
195     setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
196     if (durationDiff > GenTime()) {
197         QList <QGraphicsItem *> collisionList = collidingItems(Qt::IntersectsItemBoundingRect);
198         for (int i = 0; i < collisionList.size(); ++i) {
199             if (!collisionList.at(i)->isEnabled()) continue;
200             QGraphicsItem *item = collisionList.at(i);
201             if (item->type() == type() && item->pos().x() > pos().x()) {
202                 kDebug() << "/////////  COLLISION DETECTED!!!!!!!!!";
203                 kDebug() << "/////////  CURRENT: " << startPos().frames(25) << "x" << endPos().frames(25) << ", RECT: " << rect() << "-" << pos();
204                 kDebug() << "/////////  COLLISION: " << ((AbstractClipItem *)item)->startPos().frames(25) << "x" << ((AbstractClipItem *)item)->endPos().frames(25) << ", RECT: " << ((AbstractClipItem *)item)->rect() << "-" << item->pos();
205                 GenTime diff = ((AbstractClipItem *)item)->startPos() - startPos();
206                 m_info.cropDuration = diff;
207                 setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
208                 break;
209             }
210         }
211     }
212 }
213
214 GenTime AbstractClipItem::startPos() const
215 {
216     return m_info.startPos;
217 }
218
219 void AbstractClipItem::setTrack(int track)
220 {
221     m_info.track = track;
222 }
223
224 double AbstractClipItem::fps() const
225 {
226     return m_fps;
227 }
228
229 void AbstractClipItem::updateFps(double fps)
230 {
231     m_fps = fps;
232     setPos((qreal) startPos().frames(m_fps), pos().y());
233     updateRectGeometry();
234 }
235
236 GenTime AbstractClipItem::maxDuration() const
237 {
238     return m_maxDuration;
239 }
240
241 void AbstractClipItem::drawKeyFrames(QPainter *painter, QRectF /*exposedRect*/)
242 {
243     if (m_keyframes.count() < 1)
244         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_editedKeyframe)
276             color = QColor(Qt::red);
277         else
278             color = QColor(Qt::blue);
279         ++i;
280         if (i == m_keyframes.constEnd() && m_keyframes.count() != 1)
281             break;
282
283         if (m_keyframes.count() == 1) {
284             x2 = br.right();
285             y2 = y1;
286         } else {
287             x2 = br.x() + maxw * (i.key() - cropStart().frames(m_fps));
288             y2 = br.bottom() - i.value() * maxh;
289         }
290         QLineF l(x1, y1, x2, y2);
291         l2 = painter->matrix().map(l);
292         painter->drawLine(l2);
293         if (active) {
294             const QRectF frame(l2.x1() - 3, l2.y1() - 3, 6, 6);
295             painter->fillRect(frame, color);
296         }
297         x1 = x2;
298         y1 = y2;
299     }
300     if (active) {
301         const QRectF frame(l2.x2() - 3, l2.y2() - 3, 6, 6);
302         painter->fillRect(frame, color);
303     }
304 }
305
306 int AbstractClipItem::mouseOverKeyFrames(QPointF pos, double maxOffset)
307 {
308     const QRectF br = sceneBoundingRect();
309     double maxw = br.width() / cropDuration().frames(m_fps);
310     double maxh = br.height() / 100.0 * m_keyframeFactor;
311     if (m_keyframes.count() > 0) {
312         QMap<int, int>::const_iterator i = m_keyframes.constBegin();
313         double x1;
314         double y1;
315         while (i != m_keyframes.constEnd()) {
316             x1 = br.x() + maxw * (i.key() - cropStart().frames(m_fps));
317             y1 = br.bottom() - i.value() * maxh;
318             if (qAbs(pos.x() - x1) < maxOffset && qAbs(pos.y() - y1) < 10) {
319                 setToolTip('[' + QString::number((GenTime(i.key(), m_fps) - cropStart()).seconds(), 'f', 2) + i18n("seconds") + ", " + QString::number(i.value(), 'f', 1) + "%]");
320                 return i.key();
321             } else if (x1 > pos.x()) {
322                 break;
323             }
324             ++i;
325         }
326     }
327     setToolTip(QString());
328     return -1;
329 }
330
331 void AbstractClipItem::updateSelectedKeyFrame()
332 {
333     if (m_editedKeyframe == -1)
334         return;
335     QRectF br = sceneBoundingRect();
336     double maxw = br.width() / cropDuration().frames(m_fps);
337     double maxh = br.height() / 100.0 * m_keyframeFactor;
338     update(br.x() + maxw *(m_selectedKeyframe - cropStart().frames(m_fps)) - 3, br.bottom() - m_keyframes[m_selectedKeyframe] * maxh - 3, 12, 12);
339     m_selectedKeyframe = m_editedKeyframe;
340     update(br.x() + maxw *(m_selectedKeyframe - cropStart().frames(m_fps)) - 3, br.bottom() - m_keyframes[m_selectedKeyframe] * maxh - 3, 12, 12);
341 }
342
343 int AbstractClipItem::editedKeyFramePos() const
344 {
345     return m_editedKeyframe;
346 }
347
348 double AbstractClipItem::editedKeyFrameValue() const
349 {
350     return m_keyframes.value(m_editedKeyframe);
351 }
352
353 int AbstractClipItem::selectedKeyFramePos() const
354 {
355     return m_selectedKeyframe;
356 }
357
358 double AbstractClipItem::selectedKeyFrameValue() const
359 {
360     return m_keyframes.value(m_selectedKeyframe);
361 }
362
363 void AbstractClipItem::updateKeyFramePos(const GenTime pos, const double value)
364 {
365     if (!m_keyframes.contains(m_editedKeyframe))
366         return;
367     int newpos = (int) pos.frames(m_fps);
368     int min = (int) cropStart().frames(m_fps) - 1;
369     int max = (int)(cropStart() + cropDuration()).frames(m_fps);
370     QMap<int, int>::const_iterator i = m_keyframes.constBegin();
371     while (i.key() < m_editedKeyframe) {
372         min = qMax(i.key(), min);
373         ++i;
374     }
375     i = m_keyframes.constEnd() - 1;
376     while (i.key() > m_editedKeyframe) {
377         max = qMin(i.key(), max);
378         --i;
379     }
380     if (newpos <= min)
381         newpos = min + 1;
382     if (newpos >= max)
383         newpos = max - 1;
384
385     double newval = qMax(value, 0.0);
386     newval = qMin(newval, 100.0);
387     newval = newval / m_keyframeFactor;
388     if (m_editedKeyframe != newpos)
389         m_keyframes.remove(m_editedKeyframe);
390     m_keyframes[newpos] = (int) newval;
391     m_editedKeyframe = newpos;
392     update();
393 }
394
395 double AbstractClipItem::keyFrameFactor() const
396 {
397     return m_keyframeFactor;
398 }
399
400 int AbstractClipItem::addKeyFrame(const GenTime pos, const double value)
401 {
402     QRectF br = sceneBoundingRect();
403     double maxh = 100.0 / br.height() / m_keyframeFactor;
404     int newval = (br.bottom() - value) * maxh;
405     //kDebug() << "Rect: " << br << "/ SCENE: " << sceneBoundingRect() << ", VALUE: " << value << ", MAX: " << maxh << ", NEWVAL: " << newval;
406     int newpos = (int) pos.frames(m_fps) ;
407     m_keyframes[newpos] = newval;
408     m_selectedKeyframe = newpos;
409     update();
410     return newval;
411 }
412
413 bool AbstractClipItem::hasKeyFrames() const
414 {
415     return !m_keyframes.isEmpty();
416 }
417
418 /*QRect AbstractClipItem::visibleRect() {
419     QRect rectInView;
420     if (scene()->views().size() > 0) {
421         rectInView = scene()->views()[0]->viewport()->rect();
422         rectInView.moveTo(scene()->views()[0]->horizontalScrollBar()->value(), scene()->views()[0]->verticalScrollBar()->value());
423         rectInView.adjust(-10, -10, 10, 10);//make view rect 10 pixel greater on each site, or repaint after scroll event
424         //kDebug() << scene()->views()[0]->viewport()->rect() << " " <<  scene()->views()[0]->horizontalScrollBar()->value();
425     }
426     return rectInView;
427 }*/
428
429 CustomTrackScene* AbstractClipItem::projectScene()
430 {
431     if (scene())
432         return static_cast <CustomTrackScene*>(scene());
433     return NULL;
434 }
435
436 void AbstractClipItem::setItemLocked(bool locked)
437 {
438     if (locked)
439         setSelected(false);
440
441     setFlag(QGraphicsItem::ItemIsMovable, !locked);
442     setFlag(QGraphicsItem::ItemIsSelectable, !locked);
443 }
444
445 bool AbstractClipItem::isItemLocked() const
446 {
447     return !(flags() & (QGraphicsItem::ItemIsSelectable));
448 }
449
450 // virtual
451 void AbstractClipItem::mousePressEvent(QGraphicsSceneMouseEvent * event)
452 {
453     if (event->modifiers() & Qt::ShiftModifier) {
454         // User want to do a rectangle selection, so ignore the event to pass it to the view
455         event->ignore();
456     } else {
457         QGraphicsItem::mousePressEvent(event);
458     }
459 }
460