]> git.sesse.net Git - kdenlive/blob - src/customtrackscene.h
c9506568c6508ce3b04d5aae123fd42e52b8c0be
[kdenlive] / src / customtrackscene.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  * @class CustomTrackScene
22  * @author Jean-Baptiste Mardelle
23  * @brief Holds all scene properties that need to be used by clip items.
24  */
25
26 #ifndef CUSTOMTRACKSCENE_H
27 #define CUSTOMTRACKSCENE_H
28
29 #include <QList>
30 #include <QGraphicsScene>
31 #include <QPixmap>
32
33 #include "gentime.h"
34
35 class KdenliveDoc;
36 class MltVideoProfile;
37
38 enum EDITMODE { NORMALEDIT = 0 , OVERWRITEEDIT = 1 , INSERTEDIT = 2 };
39
40 class CustomTrackScene : public QGraphicsScene
41 {
42     Q_OBJECT
43
44 public:
45     explicit CustomTrackScene(KdenliveDoc *doc, QObject *parent = 0);
46     ~CustomTrackScene();
47     void setSnapList(const QList <GenTime>& snaps);
48     GenTime previousSnapPoint(const GenTime &pos) const;
49     GenTime nextSnapPoint(const GenTime &pos) const;
50     double getSnapPointForPos(double pos, bool doSnap = true);
51     void setScale(double scale, double vscale);
52     QPointF scale() const;
53     int tracksCount() const;
54     MltVideoProfile profile() const;
55     void setEditMode(EDITMODE mode);
56     EDITMODE editMode() const;
57
58 private:
59     KdenliveDoc *m_document;
60     QList <GenTime> m_snapPoints;
61     QPointF m_scale;
62     EDITMODE m_editMode;
63 };
64
65 #endif
66