]> git.sesse.net Git - kdenlive/blob - src/clipitem.h
ce6b50c38d6cdb7846f084d70ca1df4513d7391d
[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 "docclipbase.h"
33 #include "kthumb.h"
34 #include "transition.h"
35 #include "abstractclipitem.h"
36
37 class ClipItem : public AbstractClipItem {
38     Q_OBJECT
39
40 public:
41     ClipItem(DocClipBase *clip, int track, GenTime startpos, const QRectF & rect, GenTime duration, double fps);
42     virtual ~ ClipItem();
43     virtual void paint(QPainter *painter,
44                        const QStyleOptionGraphicsItem *option,
45                        QWidget *widget);
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();
51     int clipType();
52     DocClipBase *baseClip();
53     QString clipName();
54     GenTime maxDuration() const;
55     GenTime cropStart() const;
56     QDomElement xml() const;
57
58     void setFadeOut(int pos, double scale);
59     void setFadeIn(int pos, double scale);
60     /** Give a string list of the clip's effect names */
61     QStringList effectNames();
62     /** Add an effect to the clip and return the parameters that will be passed to Mlt */
63     QMap <QString, QString> addEffect(QDomElement effect);
64     /** Get the effect parameters that will be passed to Mlt */
65     QMap <QString, QString> getEffectArgs(QDomElement effect);
66     /** Delete effect with id index */
67     void deleteEffect(QString index);
68     /** return the number of effects in that clip */
69     int effectsCount();
70     /** return a unique effect id */
71     int effectsCounter();
72     /** return the xml of effect at index ix in stack */
73     QDomElement effectAt(int ix);
74     /** Replace effect at pos ix with given value */
75     void setEffectAt(int ix, QDomElement effect);
76     void flashClip();
77
78 protected:
79     virtual void mouseMoveEvent(QGraphicsSceneMouseEvent * event);
80     virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent * event);
81     virtual void mousePressEvent(QGraphicsSceneMouseEvent * event);
82     virtual void dragEnterEvent(QGraphicsSceneDragDropEvent *event);
83     virtual void dragLeaveEvent(QGraphicsSceneDragDropEvent *event);
84     virtual void dropEvent(QGraphicsSceneDragDropEvent *event);
85     virtual void hoverEnterEvent(QGraphicsSceneHoverEvent *);
86     virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *);
87
88 private:
89     QDomElement m_xml;
90     DocClipBase *m_clip;
91     OPERATIONTYPE m_resizeMode;
92     int m_grabPoint;
93     int m_producer;
94     CLIPTYPE m_clipType;
95     QString m_clipName;
96     GenTime m_maxDuration;
97
98     int m_maxTrack;
99
100
101     QPixmap m_startPix;
102     QPixmap m_endPix;
103     bool m_hasThumbs;
104     QTimer *startThumbTimer;
105     QTimer *endThumbTimer;
106
107     /** counter used to provide a unique id to each effect */
108     int m_effectsCounter;
109     double m_opacity;
110     QTimeLine *m_timeLine;
111     uint m_thumbsRequested;
112     bool m_hover;
113
114     EffectsList m_effectList;
115     QList <Transition> m_transitionsList;
116     QMap<int, QPixmap> audioThumbCachePic;
117     bool audioThumbWasDrawn, audioThumbReady;
118     double framePixelWidth;
119     QMap<int, QPainterPath > channelPaths;
120
121 private slots:
122     void slotThumbReady(int frame, QPixmap pix);
123     void slotFetchThumbs();
124     void slotGetStartThumb();
125     void slotGetEndThumb();
126     void slotGotAudioData();
127     void slotPrepareAudioThumb(double, QPainterPath, int, int);
128     void animate(qreal value);
129
130 signals:
131     void getThumb(int, int);
132     void prepareAudioThumb(double, QPainterPath, int, int);
133
134 };
135
136 #endif