]> git.sesse.net Git - kdenlive/blob - src/customtrackview.h
c8df2fb3abbc862c92a61e4421a534c2f47450d4
[kdenlive] / src / customtrackview.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 CUSTOMTRACKVIEW_H
22 #define CUSTOMTRACKVIEW_H
23
24 #include <QGraphicsView>
25 #include <QGraphicsItemAnimation>
26 #include <QTimeLine>
27
28 #include <KUndoStack>
29
30 #include "kdenlivedoc.h"
31 #include "clipitem.h"
32
33 class CustomTrackView : public QGraphicsView
34 {
35   Q_OBJECT
36   
37   public:
38     CustomTrackView(KdenliveDoc *doc, QGraphicsScene * projectscene, QWidget *parent=0);
39     virtual void mousePressEvent ( QMouseEvent * event );
40     virtual void mouseReleaseEvent ( QMouseEvent * event );
41     virtual void mouseMoveEvent ( QMouseEvent * event );
42     void addTrack();
43     void removeTrack();
44     int cursorPos();
45     void initView();
46     void moveClip ( const QPointF &startPos, const QPointF &endPos );
47     void resizeClip ( const QPointF &startPos, const QPointF &endPos, bool resizeClipStart );
48     void addClip ( QDomElement xml, int clipId, int track, int startpos, const QRectF &rect, int duration);
49     void deleteClip ( int track, int startpos, const QRectF &rect );
50     void setDuration(int duration);
51     void setScale(double scaleFactor);
52
53   public slots:
54     void setCursorPos(int pos, bool seek = true);
55
56   protected:
57     virtual void drawBackground ( QPainter * painter, const QRectF & rect );
58     //virtual void drawForeground ( QPainter * painter, const QRectF & rect );
59     virtual void dragEnterEvent ( QDragEnterEvent * event );
60     virtual void dragMoveEvent(QDragMoveEvent * event);
61     virtual void dragLeaveEvent ( QDragLeaveEvent * event );
62     virtual void dropEvent ( QDropEvent * event );
63     virtual void wheelEvent ( QWheelEvent * e );
64     virtual QStringList mimeTypes() const;
65     virtual Qt::DropActions supportedDropActions () const;
66     virtual void resizeEvent ( QResizeEvent * event );
67
68   private:
69     int m_tracksCount;
70     int m_projectDuration;
71     int m_cursorPos;
72     ClipItem *m_dropItem;
73     KdenliveDoc *m_document;
74     void addItem(DocClipBase *clip, QPoint pos);
75     QGraphicsLineItem *m_cursorLine;
76     QPointF m_startPos;
77     OPERATIONTYPE m_operationMode;
78     OPERATIONTYPE m_moveOpMode;
79     ClipItem *m_dragItem;
80     KUndoStack *m_commandStack;
81     QGraphicsItem *m_visualTip;
82     QGraphicsItemAnimation *m_animation;
83     QTimeLine *m_animationTimer;
84     QColor m_tipColor;
85     double m_scale;
86     int m_clickPoint;
87     QList <int> m_snapPoints;
88     void updateSnapPoints(ClipItem *selected);
89     double getSnapPointForPos(double pos);
90
91   signals:
92     void cursorMoved(int);
93     void zoomIn();
94     void zoomOut();
95     void mousePosition(int);
96
97 };
98
99 #endif