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