]> git.sesse.net Git - kdenlive/blob - src/customtrackview.h
clips now respect maximum length
[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 <KUndoStack>
26
27 #include "clipitem.h"
28
29 class CustomTrackView : public QGraphicsView
30 {
31   Q_OBJECT
32   
33   public:
34     CustomTrackView(KUndoStack *commandStack, QGraphicsScene * scene, QWidget *parent=0);
35     virtual void mousePressEvent ( QMouseEvent * event );
36     virtual void mouseReleaseEvent ( QMouseEvent * event );
37     virtual void mouseMoveEvent ( QMouseEvent * event );
38     void addTrack();
39     void removeTrack();
40     void setCursorPos(int pos);
41     int cursorPos();
42     void initView();
43     void moveClip ( const QPointF &startPos, const QPointF &endPos );
44     void resizeClip ( const QPointF &startPos, const QPointF &endPos, bool resizeClipStart );
45     void addClip ( int clipType, QString clipName, int clipProducer, int maxDuration, const QRectF &rect );
46     void deleteClip ( const QRectF &rect );
47
48   protected:
49     virtual void drawBackground ( QPainter * painter, const QRectF & rect );
50     //virtual void drawForeground ( QPainter * painter, const QRectF & rect );
51     virtual void dragEnterEvent ( QDragEnterEvent * event );
52     virtual void dragMoveEvent(QDragMoveEvent * event);
53     virtual void dragLeaveEvent ( QDragLeaveEvent * event );
54     virtual void dropEvent ( QDropEvent * event );
55     virtual QStringList mimeTypes() const;
56     virtual Qt::DropActions supportedDropActions () const;
57     virtual void resizeEvent ( QResizeEvent * event );
58
59   private:
60     int m_tracksCount;
61     int m_cursorPos;
62     ClipItem *m_dropItem;
63     void addItem(QString producer, QPoint pos);
64     QGraphicsLineItem *m_cursorLine;
65     QPointF m_startPos;
66     int m_operationMode;
67     ClipItem *m_dragItem;
68     KUndoStack *m_commandStack;
69
70   signals:
71     void cursorMoved(int);
72
73 };
74
75 #endif