]> git.sesse.net Git - kdenlive/blob - src/clipitem.h
Fix several problems with clip crop start, fix undo transition deletion, set monitor...
[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) const;
56
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
95 protected:
96     //virtual void mouseMoveEvent(QGraphicsSceneMouseEvent * event);
97     virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent * event);
98     virtual void mousePressEvent(QGraphicsSceneMouseEvent * event);
99     virtual void dragEnterEvent(QGraphicsSceneDragDropEvent *event);
100     virtual void dragLeaveEvent(QGraphicsSceneDragDropEvent *event);
101     virtual void dropEvent(QGraphicsSceneDragDropEvent *event);
102     virtual void hoverEnterEvent(QGraphicsSceneHoverEvent *);
103     virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *);
104
105 private:
106     DocClipBase *m_clip;
107     OPERATIONTYPE m_resizeMode;
108     int m_grabPoint;
109     int m_producer;
110     CLIPTYPE m_clipType;
111     QString m_clipName;
112     QString m_effectNames;
113     uint m_startFade;
114     uint m_endFade;
115
116     int m_maxTrack;
117
118     QPixmap m_startPix;
119     QPixmap m_endPix;
120     bool m_hasThumbs;
121     QTimer *startThumbTimer;
122     QTimer *endThumbTimer;
123
124     /** counter used to provide a unique id to each effect */
125     int m_effectsCounter;
126     int m_selectedEffect;
127     double m_opacity;
128     QTimeLine *m_timeLine;
129     uint m_thumbsRequested;
130     bool m_hover;
131
132     EffectsList m_effectList;
133     QList <Transition*> m_transitionsList;
134     QMap<int, QPixmap> audioThumbCachePic;
135     bool audioThumbWasDrawn, audioThumbReady;
136     double framePixelWidth;
137     QMap<int, QPainterPath > channelPaths;
138     /** Called when clip start is resized, adjust keyframes values */
139     void checkEffectsKeyframesPos(const int previous, const int current, bool fromStart);
140
141 private slots:
142     void slotThumbReady(int frame, QPixmap pix);
143     void slotFetchThumbs();
144     void slotGetStartThumb();
145     void slotGetEndThumb();
146     void slotGotAudioData();
147     void slotPrepareAudioThumb(double pixelForOneFrame, QPainterPath path, int startpixel, int endpixel, int channels);
148     void animate(qreal value);
149
150 signals:
151     void getThumb(int, int);
152     void prepareAudioThumb(double, QPainterPath, int, int, int);
153 };
154
155 #endif