]> git.sesse.net Git - kdenlive/blob - src/clipitem.h
46252e108261cf7903a66a7d6ffdef13de79a2f4
[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
28 #include "definitions.h"
29 #include "gentime.h"
30 #include "effectslist.h"
31 #include "docclipbase.h"
32 #include "kthumb.h"
33
34
35 class ClipItem : public QObject, public QGraphicsRectItem
36 {
37   Q_OBJECT
38
39   public:
40     ClipItem(DocClipBase *clip, int track, int startpos, const QRectF & rect, int duration);
41     virtual ~ ClipItem();
42     virtual void paint(QPainter *painter,
43                            const QStyleOptionGraphicsItem *option,
44                            QWidget *widget);
45     virtual int type () const;
46     void moveTo(int x, double scale, double offset, int newTrack);
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     int maxDuration();
55     int track();
56     void setTrack(int track);
57     int startPos();
58     int cropStart();
59     int endPos();
60     int duration();
61     QDomElement xml() const;
62     int fadeIn() const;
63     int fadeOut() const;
64     void setFadeOut(int pos, double scale);
65     void setFadeIn(int pos, double scale);
66     /** Give a string list of the clip's effect names */
67     QStringList effectNames();
68     /** Add an effect to the clip and return the parameters that will be passed to Mlt */
69     QMap <QString, QString> addEffect(QDomElement effect);
70     /** Get the effect parameters that will be passed to Mlt */
71     QMap <QString, QString> getEffectArgs(QDomElement effect);
72     /** Delete effect with id index */
73     void deleteEffect(QString index);
74     /** return the number of effects in that clip */
75     int effectsCount();
76     /** return a unique effect id */
77     int effectsCounter();
78     /** return the xml of effect at index ix in stack */
79     QDomElement effectAt(int ix);
80     /** Replace effect at pos ix with given value */
81     void setEffectAt(int ix, QDomElement effect);
82
83   protected:
84     virtual void mouseMoveEvent ( QGraphicsSceneMouseEvent * event );
85     virtual void mouseReleaseEvent ( QGraphicsSceneMouseEvent * event );
86     virtual void mousePressEvent ( QGraphicsSceneMouseEvent * event );
87
88   private:
89     QDomElement m_xml;
90     DocClipBase *m_clip;
91     int m_textWidth;
92     OPERATIONTYPE m_resizeMode;
93     int m_grabPoint;
94     int m_producer;
95     CLIPTYPE m_clipType;
96     QString m_clipName;
97     int m_maxDuration;
98     int m_cropStart;
99     int m_cropDuration;
100     int m_maxTrack;
101     int m_track;
102     int m_startPos;
103     QPixmap m_startPix;
104     QPixmap m_endPix;
105     bool m_hasThumbs;
106     QTimer *startThumbTimer;
107     QTimer *endThumbTimer;
108     uint m_startFade;
109     uint m_endFade;
110     /** counter used to provide a unique id to each effect */
111     int m_effectsCounter;
112     
113     EffectsList m_effectList;
114
115   private slots:
116     void slotThumbReady(int frame, QPixmap pix);
117     void slotFetchThumbs();
118     void slotGetStartThumb();
119     void slotGetEndThumb();
120     void slotGotAudioData();
121
122   signals:
123     void getThumb(int, int);
124
125 };
126
127 #endif