1 /***************************************************************************
2 * Copyright (C) 2008 by Marco Gittler (g.marco@freenet.de) *
3 * Copyright (C) 2008 by Jean-Baptiste Mardelle (jb@kdenlive.org) *
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. *
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. *
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 ***************************************************************************/
21 #ifndef ABSTRACTCLIPITEM
22 #define ABSTRACTCLIPITEM
24 #include <QGraphicsRectItem>
25 #include "definitions.h"
28 class AbstractClipItem : public QObject , public QGraphicsRectItem {
31 AbstractClipItem(const ItemInfo info, const QRectF& rect, double fps);
32 void updateSelectedKeyFrame();
33 void updateKeyFramePos(const GenTime pos, const double value);
34 void addKeyFrame(const GenTime pos, const double value);
35 bool hasKeyFrames() const;
36 int selectedKeyFramePos() const;
37 double selectedKeyFrameValue() const;
38 double keyFrameFactor() const;
39 ItemInfo info() const;
41 virtual OPERATIONTYPE operationMode(QPointF pos, double scale) = 0;
42 virtual GenTime startPos() const ;
43 virtual void setTrack(int track);
44 virtual GenTime endPos() const ;
45 virtual int track() const ;
46 virtual void moveTo(int x, double scale, int offset, int newTrack, bool checkCollision = true);
47 virtual GenTime cropStart() const ;
48 virtual void resizeStart(int posx, double scale);
49 virtual void resizeEnd(int posx, double scale);
50 virtual GenTime duration() const;
51 virtual double fps() const;
52 virtual GenTime maxDuration() const;
53 virtual void setCropStart(GenTime pos);
58 int m_selectedKeyframe;
60 GenTime m_cropDuration;
62 GenTime m_maxDuration;
63 QMap <int, double> m_keyframes;
64 double m_keyframeFactor;
65 double m_keyframeDefault;
67 QPainterPath upperRectPart(QRectF);
68 QPainterPath lowerRectPart(QRectF);
70 void drawKeyFrames(QPainter *painter, QRectF exposedRect);
71 int mouseOverKeyFrames(QPointF pos);