]> git.sesse.net Git - kdenlive/blob - src/clipitem.h
Fix timeline handling of objects (move them instead of changing their bounding rect
[kdenlive] / src / clipitem.h
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #ifndef CLIPITEM_H
22 #define CLIPITEM_H
23
24 #include <QGraphicsRectItem>
25 #include <QDomElement>
26 #include <QGraphicsSceneMouseEvent>
27 #include <QTimeLine>
28
29 #include "definitions.h"
30 #include "gentime.h"
31 #include "effectslist.h"
32 #include "abstractclipitem.h"
33
34 class DocClipBase;
35 class Transition;
36
37 class ClipItem : public AbstractClipItem {
38     Q_OBJECT
39
40 public:
41     ClipItem(DocClipBase *clip, ItemInfo info, double scale, double fps);
42     virtual ~ ClipItem();
43     virtual void paint(QPainter *painter,
44                        const QStyleOptionGraphicsItem *option,
45                        QWidget *);
46     virtual int type() const;
47     void resizeStart(int posx, double scale);
48     void resizeEnd(int posx, double scale);
49     OPERATIONTYPE operationMode(QPointF pos, double scale);
50     int clipProducer() const;
51     int clipType() const;
52     DocClipBase *baseClip() const;
53     QString clipName() const;
54     QDomElement xml() const;
55     ClipItem *clone(double scale, ItemInfo info) const;
56     const EffectsList effectList();
57     void setFadeOut(int pos, double scale);
58     void setFadeIn(int pos, double scale);
59     /** Give a string list of the clip's effect names */
60     QStringList effectNames();
61     /** Add an effect to the clip and return the parameters that will be passed to Mlt */
62     QMap <QString, QString> addEffect(QDomElement effect, bool animate = true);
63     /** Get the effect parameters that will be passed to Mlt */
64     QMap <QString, QString> getEffectArgs(QDomElement effect);
65     /** Delete effect with id index */
66     void deleteEffect(QString index);
67     /** return the number of effects in that clip */
68     int effectsCount();
69     /** return a unique effect id */
70     int effectsCounter();
71     /** return the xml of effect at index ix in stack */
72     QDomElement effectAt(int ix);
73     /** Replace effect at pos ix with given value */
74     void setEffectAt(int ix, QDomElement effect);
75     void flashClip();
76     void addTransition(Transition*);
77     /** regenerate audio and video thumbnails */
78     void resetThumbs();
79     /** update clip properties from base clip */
80     void refreshClip();
81     /** Returns a list of times for this clip's markers */
82     QList <GenTime> snapMarkers() const;
83     QList <CommentedTime> commentedSnapMarkers() const;
84     uint fadeIn() const;
85     uint fadeOut() const;
86     void setSelectedEffect(const int ix);
87     void updateKeyframeEffect();
88     QDomElement selectedEffect();
89     int selectedEffectIndex() const;
90     void initEffect(QDomElement effect);
91     QString keyframes(const int index);
92     void setKeyframes(const int ix, const QString keyframes);
93     void setEffectList(const EffectsList effectList);
94     void setSpeed(const double speed);
95     double speed() const;
96     GenTime maxDuration() const;
97
98 protected:
99     //virtual void mouseMoveEvent(QGraphicsSceneMouseEvent * event);
100     virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent * event);
101     virtual void mousePressEvent(QGraphicsSceneMouseEvent * event);
102     virtual void dragEnterEvent(QGraphicsSceneDragDropEvent *event);
103     virtual void dragLeaveEvent(QGraphicsSceneDragDropEvent *event);
104     virtual void dropEvent(QGraphicsSceneDragDropEvent *event);
105     virtual void hoverEnterEvent(QGraphicsSceneHoverEvent *);
106     virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *);
107
108 private:
109     DocClipBase *m_clip;
110     OPERATIONTYPE m_resizeMode;
111     int m_grabPoint;
112     int m_producer;
113     CLIPTYPE m_clipType;
114     QString m_clipName;
115     QString m_effectNames;
116     uint m_startFade;
117     uint m_endFade;
118
119     int m_maxTrack;
120
121     QPixmap m_startPix;
122     QPixmap m_endPix;
123     bool m_hasThumbs;
124     QTimer *startThumbTimer;
125     QTimer *endThumbTimer;
126
127     /** counter used to provide a unique id to each effect */
128     int m_effectsCounter;
129     int m_selectedEffect;
130     double m_opacity;
131     QTimeLine *m_timeLine;
132     uint m_thumbsRequested;
133     bool m_hover;
134     double m_speed;
135
136     EffectsList m_effectList;
137     QList <Transition*> m_transitionsList;
138     QMap<int, QPixmap> audioThumbCachePic;
139     bool audioThumbWasDrawn, audioThumbReady;
140     double framePixelWidth;
141     QMap<int, QPainterPath > channelPaths;
142     /** Called when clip start is resized, adjust keyframes values */
143     void checkEffectsKeyframesPos(const int previous, const int current, bool fromStart);
144
145 private slots:
146     void slotFetchThumbs();
147     void slotGetStartThumb();
148     void slotGetEndThumb();
149     void slotGotAudioData();
150     void slotPrepareAudioThumb(double pixelForOneFrame, QPainterPath path, int startpixel, int endpixel, int channels);
151     void animate(qreal value);
152
153 public slots:
154     void slotThumbReady(int frame, QPixmap pix);
155
156 signals:
157     void getThumb(int, int);
158     void prepareAudioThumb(double, QPainterPath, int, int, int);
159 };
160
161 #endif