]> git.sesse.net Git - kdenlive/blob - src/clipitem.h
Effects are now stored in clip as xml, get ready for effectstack connection
[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 "docclipbase.h"
31 #include "kthumb.h"
32
33
34 class ClipItem : public QObject, public QGraphicsRectItem
35 {
36   Q_OBJECT
37
38   public:
39     ClipItem(DocClipBase *clip, int track, int startpos, const QRectF & rect, int duration);
40     virtual ~ ClipItem();
41     virtual void paint(QPainter *painter,
42                            const QStyleOptionGraphicsItem *option,
43                            QWidget *widget);
44     virtual int type () const;
45     void moveTo(int x, double scale, double offset, int newTrack);
46     void resizeStart(int posx, double scale);
47     void resizeEnd(int posx, double scale);
48     OPERATIONTYPE operationMode(QPointF pos, double scale);
49     int clipProducer();
50     int clipType();
51     DocClipBase *baseClip();
52     QString clipName();
53     int maxDuration();
54     int track();
55     void setTrack(int track);
56     int startPos();
57     int cropStart();
58     int endPos();
59     int duration();
60     QDomElement xml() const;
61     int fadeIn() const;
62     int fadeOut() const;
63     void setFadeOut(int pos, double scale);
64     void setFadeIn(int pos, double scale);
65     QStringList effectNames();
66     QMap <QString, QString> addEffect(QDomElement effect);
67     void deleteEffect(QString tag);
68     int effectsCount();
69     QDomElement effectAt(int ix);
70
71   protected:
72     virtual void mouseMoveEvent ( QGraphicsSceneMouseEvent * event );
73     virtual void mouseReleaseEvent ( QGraphicsSceneMouseEvent * event );
74     virtual void mousePressEvent ( QGraphicsSceneMouseEvent * event );
75
76   private:
77     QDomElement m_xml;
78     DocClipBase *m_clip;
79     int m_textWidth;
80     OPERATIONTYPE m_resizeMode;
81     int m_grabPoint;
82     int m_producer;
83     CLIPTYPE m_clipType;
84     QString m_clipName;
85     int m_maxDuration;
86     int m_cropStart;
87     int m_cropDuration;
88     int m_maxTrack;
89     int m_track;
90     int m_startPos;
91     QPixmap m_startPix;
92     QPixmap m_endPix;
93     bool m_hasThumbs;
94     QTimer *startThumbTimer;
95     QTimer *endThumbTimer;
96     uint m_startFade;
97     uint m_endFade;
98     
99     QList< QDomElement > m_effectList;
100
101   private slots:
102     void slotThumbReady(int frame, QPixmap pix);
103     void slotFetchThumbs();
104     void slotGetStartThumb();
105     void slotGetEndThumb();
106
107   signals:
108     void getThumb(int, int);
109
110 };
111
112 #endif