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