]> git.sesse.net Git - kdenlive/blob - src/trackview.h
[PATCH 1/2] Kill a bunch of unused member variables
[kdenlive] / src / trackview.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 TRACKVIEW_H
22 #define TRACKVIEW_H
23
24 #include <QScrollArea>
25 #include <QVBoxLayout>
26 #include <KRuler>
27 #include <QGroupBox>
28 #include <QGraphicsScene>
29 #include <QGraphicsLineItem>
30 #include <QDomElement>
31
32
33 #include "customtrackscene.h"
34 #include "ui_timeline_ui.h"
35
36 class ClipItem;
37 class Transition;
38 class CustomTrackView;
39 class KdenliveDoc;
40 class CustomRuler;
41 class DocClipBase;
42
43 class TrackView : public QWidget
44 {
45     Q_OBJECT
46
47 public:
48     explicit TrackView(KdenliveDoc *doc, QWidget *parent = 0);
49
50     void setEditMode(const QString & editMode);
51     const QString & editMode() const;
52     QGraphicsScene *projectScene();
53     CustomTrackView *projectView();
54     int duration() const;
55     int tracksNumber() const;
56     KdenliveDoc *document();
57     void refresh() ;
58     int outPoint() const;
59     int inPoint() const;
60     int fitZoom() const;
61
62 public slots:
63     void slotDeleteClip(const QString &clipId);
64     void slotChangeZoom(int factor);
65     void setDuration(int dur);
66     void slotSetZone(QPoint p);
67
68 private:
69     Ui::TimeLine_UI view;
70     CustomRuler *m_ruler;
71     CustomTrackView *m_trackview;
72     QList <QString> m_invalidProducers;
73     double m_scale;
74     int m_projectTracks;
75     QString m_editMode;
76     CustomTrackScene *m_scene;
77
78     KdenliveDoc *m_doc;
79     QVBoxLayout *m_headersLayout;
80     QString m_documentErrors;
81     void parseDocument(QDomDocument doc);
82     int slotAddProjectTrack(int ix, QDomElement xml, bool locked);
83     DocClipBase *getMissingProducer(const QString id) const;
84
85 private slots:
86     void setCursorPos(int pos);
87     void moveCursorPos(int pos);
88     void slotTransitionItemSelected(Transition*, bool update);
89     void slotRebuildTrackHeaders();
90     void slotChangeTrackLock(int ix, bool lock);
91
92 signals:
93     void mousePosition(int);
94     void cursorMoved();
95     void transitionItemSelected(Transition*, bool);
96     void zoneMoved(int, int);
97     void insertTrack(int);
98     void deleteTrack(int);
99     void changeTrack(int);
100 };
101
102 #endif