]> git.sesse.net Git - kdenlive/blob - src/abstractclipitem.cpp
No more duration limit for color, image and title clips
[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
31 AbstractClipItem::AbstractClipItem(const ItemInfo info, const QRectF& rect, double fps) :
32         QObject(),
33         QGraphicsRectItem(rect),
34         m_track(0),
35         m_editedKeyframe(-1),
36         m_selectedKeyframe(0),
37         m_keyframeFactor(1),
38         m_fps(fps)
39 {
40     setFlags(/*QGraphicsItem::ItemClipsToShape | */QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);
41     setTrack(info.track);
42     m_startPos = info.startPos;
43     m_cropDuration = info.endPos - info.startPos;
44 }
45
46 ItemInfo AbstractClipItem::info() const
47 {
48     ItemInfo itemInfo;
49     itemInfo.startPos = startPos();
50     itemInfo.endPos = endPos();
51     itemInfo.cropStart = m_cropStart;
52     itemInfo.track = track();
53     return itemInfo;
54 }
55
56 GenTime AbstractClipItem::endPos() const
57 {
58     return m_startPos + m_cropDuration;
59 }
60
61 int AbstractClipItem::track() const
62 {
63     return m_track;
64 }
65
66 GenTime AbstractClipItem::cropStart() const
67 {
68     return m_cropStart;
69 }
70
71 GenTime AbstractClipItem::cropDuration() const
72 {
73     return m_cropDuration;
74 }
75
76 void AbstractClipItem::setCropStart(GenTime pos)
77 {
78     m_cropStart = pos;
79 }
80
81 void AbstractClipItem::updateItem()
82 {
83     m_track = (int)(scenePos().y() / KdenliveSettings::trackheight());
84     m_startPos = GenTime((int) scenePos().x(), m_fps);
85 }
86
87 void AbstractClipItem::updateRectGeometry()
88 {
89     setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
90 }
91
92 void AbstractClipItem::resizeStart(int posx, double speed)
93 {
94     GenTime durationDiff = GenTime(posx, m_fps) - m_startPos;
95     if (durationDiff == GenTime()) return;
96     //kDebug() << "-- RESCALE DIFF=" << durationDiff.frames(25) << ", CLIP: " << startPos().frames(25) << "-" << endPos().frames(25);
97
98     if (type() == AVWIDGET && cropStart() + durationDiff < GenTime()) {
99         durationDiff = GenTime() - cropStart();
100     } else if (durationDiff >= m_cropDuration) {
101         return;
102         if (m_cropDuration > GenTime(3, m_fps)) durationDiff = GenTime(3, m_fps);
103         else return;
104     }
105     //kDebug()<<"// DURATION DIFF: "<<durationDiff.frames(25)<<", POS: "<<pos().x();
106     m_startPos += durationDiff;
107     if (type() == AVWIDGET) m_cropStart += durationDiff * speed;
108     m_cropDuration = m_cropDuration - durationDiff * speed;
109
110     setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
111     moveBy(durationDiff.frames(m_fps), 0);
112     //setPos(m_startPos.frames(m_fps), pos().y());
113     if ((int) scenePos().x() != posx) {
114         //kDebug()<<"//////  WARNING, DIFF IN XPOS: "<<pos().x()<<" == "<<m_startPos.frames(m_fps);
115         GenTime diff = GenTime((int) pos().x() - posx, m_fps);
116         if (type() == AVWIDGET) m_cropStart = m_cropStart + diff;
117         m_cropDuration = m_cropDuration - diff;
118         setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
119         //kDebug()<<"// NEW START: "<<m_startPos.frames(25)<<", NW DUR: "<<m_cropDuration.frames(25);
120     }
121
122
123     //kDebug() << "-- NEW CLIP=" << startPos().frames(25) << "-" << endPos().frames(25);
124     //setRect((double) m_startPos.frames(m_fps) * scale, rect().y(), (double) m_cropDuration.frames(m_fps) * scale, rect().height());
125
126     /*    if (durationDiff < GenTime()) {
127             QList <QGraphicsItem *> collisionList = collidingItems(Qt::IntersectsItemBoundingRect);
128             for (int i = 0; i < collisionList.size(); ++i) {
129                 QGraphicsItem *item = collisionList.at(i);
130                 if (item->type() == type() && item->pos().x() < pos().x()) {
131                     kDebug() << "/////////  COLLISION DETECTED!!!!!!!!!";
132                     GenTime diff = ((AbstractClipItem *)item)->endPos() + GenTime(1, m_fps) - m_startPos;
133                     setRect(0, 0, (m_cropDuration - diff).frames(m_fps) - 0.02, rect().height());
134                     setPos((m_startPos + diff).frames(m_fps), pos().y());
135                     m_startPos += diff;
136                     if (type() == AVWIDGET) m_cropStart += diff;
137                     m_cropDuration = m_cropDuration - diff;
138                     break;
139                 }
140             }
141         }*/
142 }
143
144 void AbstractClipItem::resizeEnd(int posx, double speed, bool /*updateKeyFrames*/)
145 {
146     GenTime durationDiff = GenTime(posx, m_fps) - endPos();
147     if (durationDiff == GenTime()) return;
148     //kDebug() << "// DUR DIFF1:" << durationDiff.frames(25) << ", ADJUSTED: " << durationDiff.frames(25) * speed << ", SPED:" << speed;
149     if (cropDuration() + durationDiff <= GenTime()) {
150         durationDiff = GenTime() - (cropDuration() - GenTime(3, m_fps));
151     }
152     //kDebug() << "// DUR DIFF2:" << durationDiff.frames(25) << ", ADJUSTED: " << durationDiff.frames(25) * speed << ", SPED:" << speed;
153     m_cropDuration += durationDiff * speed;
154     setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
155     if (durationDiff > GenTime()) {
156         QList <QGraphicsItem *> collisionList = collidingItems(Qt::IntersectsItemBoundingRect);
157         for (int i = 0; i < collisionList.size(); ++i) {
158             QGraphicsItem *item = collisionList.at(i);
159             if (item->type() == type() && item->pos().x() > pos().x()) {
160                 /*kDebug() << "/////////  COLLISION DETECTED!!!!!!!!!";
161                 kDebug() << "/////////  CURRENT: " << startPos().frames(25) << "x" << endPos().frames(25) << ", RECT: " << rect() << "-" << pos();
162                 kDebug() << "/////////  COLLISION: " << ((AbstractClipItem *)item)->startPos().frames(25) << "x" << ((AbstractClipItem *)item)->endPos().frames(25) << ", RECT: " << ((AbstractClipItem *)item)->rect() << "-" << item->pos();*/
163                 GenTime diff = ((AbstractClipItem *)item)->startPos() - GenTime(1, m_fps) - startPos();
164                 m_cropDuration = diff * speed;
165                 setRect(0, 0, cropDuration().frames(m_fps) - 0.02, rect().height());
166                 break;
167             }
168         }
169     }
170 }
171
172 GenTime AbstractClipItem::duration() const
173 {
174     return m_cropDuration;
175 }
176
177 GenTime AbstractClipItem::startPos() const
178 {
179     return m_startPos;
180 }
181
182 void AbstractClipItem::setTrack(int track)
183 {
184     m_track = track;
185 }
186
187 double AbstractClipItem::fps() const
188 {
189     return m_fps;
190 }
191
192 GenTime AbstractClipItem::maxDuration() const
193 {
194     return m_maxDuration;
195 }
196
197 QPainterPath AbstractClipItem::upperRectPart(QRectF br)
198 {
199     QPainterPath roundRectPathUpper;
200     double roundingY = 20;
201     double roundingX = 20;
202     double offset = 1;
203
204     while (roundingX > br.width() / 2) {
205         roundingX = roundingX / 2;
206         roundingY = roundingY / 2;
207     }
208     int br_endx = (int)(br.x() + br .width() - offset);
209     int br_startx = (int)(br.x() + offset);
210     int br_starty = (int)(br.y());
211     int br_halfy = (int)(br.y() + br.height() / 2 - offset);
212
213     roundRectPathUpper.moveTo(br_endx  , br_halfy);
214     roundRectPathUpper.arcTo(br_endx - roundingX , br_starty , roundingX, roundingY, 0.0, 90.0);
215     roundRectPathUpper.lineTo(br_startx + roundingX , br_starty);
216     roundRectPathUpper.arcTo(br_startx , br_starty , roundingX, roundingY, 90.0, 90.0);
217     roundRectPathUpper.lineTo(br_startx , br_halfy);
218
219     return roundRectPathUpper;
220 }
221
222 QPainterPath AbstractClipItem::lowerRectPart(QRectF br)
223 {
224     QPainterPath roundRectPathLower;
225     double roundingY = 20;
226     double roundingX = 20;
227     double offset = 1;
228
229     int br_endx = (int)(br.x() + br .width() - offset);
230     int br_startx = (int)(br.x() + offset);
231     int br_halfy = (int)(br.y() + br.height() / 2 - offset);
232     int br_endy = (int)(br.y() + br.height() - 1);
233
234     while (roundingX > br.width() / 2) {
235         roundingX = roundingX / 2;
236         roundingY = roundingY / 2;
237     }
238     roundRectPathLower.moveTo(br_startx, br_halfy);
239     roundRectPathLower.arcTo(br_startx , br_endy - roundingY , roundingX, roundingY, 180.0, 90.0);
240     roundRectPathLower.lineTo(br_endx - roundingX  , br_endy);
241     roundRectPathLower.arcTo(br_endx - roundingX , br_endy - roundingY, roundingX, roundingY, 270.0, 90.0);
242     roundRectPathLower.lineTo(br_endx  , br_halfy);
243     return roundRectPathLower;
244 }
245
246 void AbstractClipItem::drawKeyFrames(QPainter *painter, QRectF /*exposedRect*/)
247 {
248     if (m_keyframes.count() < 2) return;
249     QRectF br = rect();
250     double maxw = br.width() / m_cropDuration.frames(m_fps);
251     double maxh = br.height() / 100.0 * m_keyframeFactor;
252     double x1;
253     double y1;
254     double x2;
255     double y2;
256
257     // draw line showing default value
258     if (isSelected()) {
259         x1 = br.x();
260         x2 = br.right();
261         y1 = br.bottom() - m_keyframeDefault * maxh;
262         QLineF l(x1, y1, x2, y1);
263         QLineF l2 = painter->matrix().map(l);
264         painter->setPen(QColor(168, 168, 168, 180));
265         painter->drawLine(l2);
266         l2.translate(0, 1);
267         painter->setPen(QColor(108, 108, 108, 180));
268         painter->drawLine(l2);
269         painter->setPen(QColor(Qt::white));
270     }
271
272     // draw keyframes
273     QMap<int, double>::const_iterator i = m_keyframes.constBegin();
274     QColor color(Qt::blue);
275     x1 = br.x() + maxw * (i.key() - m_cropStart.frames(m_fps));
276     y1 = br.bottom() - i.value() * maxh;
277     QLineF l2;
278     while (i != m_keyframes.constEnd()) {
279         if (i.key() == m_selectedKeyframe) color = QColor(Qt::red);
280         else color = QColor(Qt::blue);
281         ++i;
282         if (i == m_keyframes.constEnd()) break;
283         x2 = br.x() + maxw * (i.key() - m_cropStart.frames(m_fps));
284         y2 = br.bottom() - i.value() * maxh;
285         QLineF l(x1, y1, x2, y2);
286         l2 = painter->matrix().map(l);
287         painter->drawLine(l2);
288         if (isSelected()) {
289             painter->fillRect(l2.x1() - 3, l2.y1() - 3, 6, 6, QBrush(color));
290         }
291         x1 = x2;
292         y1 = y2;
293     }
294     if (isSelected()) painter->fillRect(l2.x2() - 3, l2.y2() - 3, 6, 6, QBrush(color));
295 }
296
297 int AbstractClipItem::mouseOverKeyFrames(QPointF pos)
298 {
299     QRectF br = sceneBoundingRect();
300     double maxw = br.width() / m_cropDuration.frames(m_fps);
301     double maxh = br.height() / 100.0 * m_keyframeFactor;
302     if (m_keyframes.count() > 1) {
303         QMap<int, double>::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() - m_cropStart.frames(m_fps));
308             y1 = br.bottom() - i.value() * maxh;
309             if (qAbs(pos.x() - x1) < 6 && qAbs(pos.y() - y1) < 6) {
310                 setToolTip('[' + QString::number((GenTime(i.key(), m_fps) - m_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() / m_cropDuration.frames(m_fps);
325     double maxh = br.height() / 100.0 * m_keyframeFactor;
326     update(br.x() + maxw * (m_selectedKeyframe - m_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 - m_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 = m_cropStart.frames(m_fps);
346     int end = (m_cropStart + m_cropDuration).frames(m_fps);
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] = 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     double 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 setFlags(QGraphicsItem::ItemIsMovable | QGraphicsItem::ItemIsSelectable);
418 }
419
420 bool AbstractClipItem::isItemLocked() const
421 {
422     return !(flags() & (QGraphicsItem::ItemIsSelectable));
423 }
424