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