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