]> git.sesse.net Git - kdenlive/blob - src/trackview.h
Use lineEdit instead of a label in the header of the selected track to rename it...
[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     
67     /** @brief Updates (redraws) the ruler.
68     *
69     * Used to change from displaying frames to timecode or vice versa. */
70     void updateRuler();
71
72 protected:
73     virtual void keyPressEvent(QKeyEvent * event);
74
75 public slots:
76     void slotDeleteClip(const QString &clipId);
77     void slotChangeZoom(int horizontal, int vertical = -1);
78     void setDuration(int dur);
79     void slotSetZone(QPoint p);
80
81 private:
82     CustomRuler *m_ruler;
83     CustomTrackView *m_trackview;
84     QList <QString> m_invalidProducers;
85     double m_scale;
86     int m_projectTracks;
87     QString m_editMode;
88     CustomTrackScene *m_scene;
89
90     KdenliveDoc *m_doc;
91     int m_verticalZoom;
92     QString m_documentErrors;
93     void parseDocument(QDomDocument doc);
94     int slotAddProjectTrack(int ix, QDomElement xml, bool locked);
95     DocClipBase *getMissingProducer(const QString id) const;
96     void adjustTrackHeaders();
97
98 private slots:
99     void setCursorPos(int pos);
100     void moveCursorPos(int pos);
101     /** @brief Rebuilds the track headers */
102     void slotRebuildTrackHeaders();
103     /** @brief The tracks count or a track name changed, rebuild and notify */
104     void slotReloadTracks();
105     void slotChangeTrackLock(int ix, bool lock);
106     void slotVerticalZoomDown();
107     void slotVerticalZoomUp();
108
109     /** @brief Changes the name of a track.
110     * @param ix Number of the track
111     * @param name New name */
112     void slotRenameTrack(int ix, QString name);
113     void slotRepaintTracks();
114
115     /** @brief Adjusts the margins of the header area.
116      *
117      * Avoid a shift between header area and trackview if
118      * the horizontal scrollbar is visible and the position
119      * of the vertical scrollbar is maximal */
120     void slotUpdateVerticalScroll(int min, int max);
121
122 signals:
123     void mousePosition(int);
124     void cursorMoved();
125     void zoneMoved(int, int);
126     void insertTrack(int);
127     void deleteTrack(int);
128     void configTrack(int);
129     void updateTracksInfo();
130     void setZoom(int);
131 };
132
133 #endif