]> git.sesse.net Git - kdenlive/blob - src/customtrackview.h
Start porting timeline to QGraphicsView
[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
26 #include "clipitem.h"
27
28 class CustomTrackView : public QGraphicsView
29 {
30   Q_OBJECT
31   
32   public:
33     CustomTrackView(QGraphicsScene * scene, QWidget *parent=0);
34     virtual void mousePressEvent ( QMouseEvent * event );
35     virtual void mouseReleaseEvent ( QMouseEvent * event );
36     virtual void mouseMoveEvent ( QMouseEvent * event );
37     void addTrack();
38     void removeTrack();
39     void setCursorPos(int pos);
40     int cursorPos();
41
42   protected:
43     virtual void drawBackground ( QPainter * painter, const QRectF & rect );
44     virtual void drawForeground ( QPainter * painter, const QRectF & rect );
45     virtual void dragEnterEvent ( QDragEnterEvent * event );
46     virtual void dragMoveEvent(QDragMoveEvent * event);
47     virtual void dragLeaveEvent ( QDragLeaveEvent * event );
48     virtual void dropEvent ( QDropEvent * event );
49     virtual QStringList mimeTypes() const;
50     virtual Qt::DropActions supportedDropActions () const;
51
52   private:
53     int m_tracksCount;
54     int m_cursorPos;
55     ClipItem *m_dropItem;
56     void addItem(QString producer, QPoint pos);
57
58   signals:
59     void cursorMoved(int);
60
61 };
62
63 #endif