]> git.sesse.net Git - kdenlive/blob - src/clipitem.h
Implement clipmanager
[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(QDomElement xml, int track, int startpos, const QRectF & rect, int duration = -1);
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     QString clipName();
53     int maxDuration();
54     int track();
55     void setTrack(int track);
56     int startPos();
57     int endPos();
58     int duration();
59     QDomElement xml() const;
60     int fadeIn() const;
61     int fadeOut() const;
62     void setFadeOut(int pos, double scale);
63     void setFadeIn(int pos, double scale);
64
65   protected:
66     virtual void mouseMoveEvent ( QGraphicsSceneMouseEvent * event );
67     virtual void mouseReleaseEvent ( QGraphicsSceneMouseEvent * event );
68     virtual void mousePressEvent ( QGraphicsSceneMouseEvent * event );
69
70   private:
71     QDomElement m_xml;
72     DocClipBase *m_clip;
73     int m_textWidth;
74     OPERATIONTYPE m_resizeMode;
75     int m_grabPoint;
76     int m_producer;
77     CLIPTYPE m_clipType;
78     QString m_clipName;
79     int m_maxDuration;
80     int m_cropStart;
81     int m_cropDuration;
82     int m_maxTrack;
83     int m_track;
84     int m_startPos;
85     QPixmap m_startPix;
86     QPixmap m_endPix;
87     bool m_hasThumbs;
88     QTimer *startThumbTimer;
89     QTimer *endThumbTimer;
90     uint m_startFade;
91     uint m_endFade;
92
93   private slots:
94     void slotThumbReady(int frame, QPixmap pix);
95     void slotFetchThumbs();
96     void slotGetStartThumb();
97     void slotGetEndThumb();
98
99   signals:
100     void getThumb(int, int);
101
102 };
103
104 #endif