]> git.sesse.net Git - kdenlive/blob - src/trackview.h
Add "Configure Tracks" dialog to change the settings (name, type, ...) of all tracks...
[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 * @class TrackView
22 * @brief Manages the timline
23 * @author Jean-Baptiste Mardelle
24 */
25
26 #ifndef TRACKVIEW_H
27 #define TRACKVIEW_H
28
29 #include <QScrollArea>
30 #include <QGroupBox>
31 #include <QGraphicsScene>
32 #include <QGraphicsLineItem>
33 #include <QDomElement>
34
35 #include <KRuler>
36
37 #include "customtrackscene.h"
38 #include "ui_timeline_ui.h"
39
40 class ClipItem;
41 class Transition;
42 class CustomTrackView;
43 class KdenliveDoc;
44 class CustomRuler;
45 class DocClipBase;
46
47 class TrackView : public QWidget, public Ui::TimeLine_UI
48 {
49     Q_OBJECT
50
51 public:
52     explicit TrackView(KdenliveDoc *doc, bool *ok, QWidget *parent = 0);
53     virtual ~ TrackView();
54     void setEditMode(const QString & editMode);
55     const QString & editMode() const;
56     QGraphicsScene *projectScene();
57     CustomTrackView *projectView();
58     int duration() const;
59     int tracksNumber() const;
60     KdenliveDoc *document();
61     void refresh() ;
62     void updateProjectFps();
63     int outPoint() const;
64     int inPoint() const;
65     int fitZoom() const;
66     /** @brief Updates (redraws) the ruler.
67     *
68     * Used to change from displaying frames to timecode or vice versa. */
69     void updateRuler();
70
71 protected:
72     virtual void keyPressEvent(QKeyEvent * event);
73
74 public slots:
75     void slotDeleteClip(const QString &clipId);
76     void slotChangeZoom(int horizontal, int vertical = -1);
77     void setDuration(int dur);
78     void slotSetZone(QPoint p);
79
80 private:
81     CustomRuler *m_ruler;
82     CustomTrackView *m_trackview;
83     QList <QString> m_invalidProducers;
84     double m_scale;
85     int m_projectTracks;
86     QString m_editMode;
87     CustomTrackScene *m_scene;
88
89     KdenliveDoc *m_doc;
90     int m_verticalZoom;
91     QString m_documentErrors;
92     void parseDocument(QDomDocument doc);
93     int slotAddProjectTrack(int ix, QDomElement xml, bool locked);
94     DocClipBase *getMissingProducer(const QString id) const;
95     void adjustTrackHeaders();
96
97 private slots:
98     void setCursorPos(int pos);
99     void moveCursorPos(int pos);
100     /** @brief Rebuilds the track headers */
101     void slotRebuildTrackHeaders();
102     /** @brief The tracks count or a track name changed, rebuild and notify */
103     void slotReloadTracks();
104     void slotChangeTrackLock(int ix, bool lock);
105     void slotVerticalZoomDown();
106     void slotVerticalZoomUp();
107     void slotRenameTrack(int ix);
108     void slotRepaintTracks();
109     /** @brief Adjust margins of header area
110      *
111      * Avoid a shift between header area and trackview if
112      * the horizontal scrollbar is visible and the position
113      * of the vertical scrollbar is maximal */
114     void slotUpdateVerticalScroll(int min, int max);
115
116 signals:
117     void mousePosition(int);
118     void cursorMoved();
119     void zoneMoved(int, int);
120     void insertTrack(int);
121     void deleteTrack(int);
122     void changeTrack(int);
123     void configTrack(int);
124     void updateTracksInfo();
125     void setZoom(int);
126 };
127
128 #endif