]> git.sesse.net Git - kdenlive/blob - src/customtrackview.h
Start implementing effects
[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     void deleteClip(int clipId);
53     void slotAddEffect(QMap <QString, QString> filter);
54     void addEffect(int track, GenTime pos, QString tag, QMap <QString, QString> args);
55     void deleteEffect(int track, GenTime pos, QString tag);
56
57   public slots:
58     void setCursorPos(int pos, bool seek = true);
59
60   protected:
61     virtual void drawBackground ( QPainter * painter, const QRectF & rect );
62     //virtual void drawForeground ( QPainter * painter, const QRectF & rect );
63     virtual void dragEnterEvent ( QDragEnterEvent * event );
64     virtual void dragMoveEvent(QDragMoveEvent * event);
65     virtual void dragLeaveEvent ( QDragLeaveEvent * event );
66     virtual void dropEvent ( QDropEvent * event );
67     virtual void wheelEvent ( QWheelEvent * e );
68     virtual QStringList mimeTypes() const;
69     virtual Qt::DropActions supportedDropActions () const;
70     virtual void resizeEvent ( QResizeEvent * event );
71
72   private:
73     int m_tracksCount;
74     int m_projectDuration;
75     int m_cursorPos;
76     ClipItem *m_dropItem;
77     KdenliveDoc *m_document;
78     void addItem(DocClipBase *clip, QPoint pos);
79     QGraphicsLineItem *m_cursorLine;
80     QPointF m_startPos;
81     OPERATIONTYPE m_operationMode;
82     OPERATIONTYPE m_moveOpMode;
83     ClipItem *m_dragItem;
84     KUndoStack *m_commandStack;
85     QGraphicsItem *m_visualTip;
86     QGraphicsItemAnimation *m_animation;
87     QTimeLine *m_animationTimer;
88     QColor m_tipColor;
89     double m_scale;
90     int m_clickPoint;
91     QList <int> m_snapPoints;
92     void updateSnapPoints(ClipItem *selected);
93     double getSnapPointForPos(double pos);
94
95   signals:
96     void cursorMoved(int);
97     void zoomIn();
98     void zoomOut();
99     void mousePosition(int);
100
101 };
102
103 #endif