]> git.sesse.net Git - kdenlive/blob - src/trackview.h
Merge branch 'master' into audioAlign
[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 "effectslist.h"
39 #include "ui_timeline_ui.h"
40 #include "definitions.h"
41
42 class ClipItem;
43 class Transition;
44 class CustomTrackView;
45 class KdenliveDoc;
46 class CustomRuler;
47 class DocClipBase;
48
49 class TrackView : public QWidget, public Ui::TimeLine_UI
50 {
51     Q_OBJECT
52
53 public:
54     explicit TrackView(KdenliveDoc *doc, QList <QAction *> actions, bool *ok, QWidget *parent = 0);
55     virtual ~ TrackView();
56     void setEditMode(const QString & editMode);
57     const QString & editMode() const;
58     QGraphicsScene *projectScene();
59     CustomTrackView *projectView();
60     int duration() const;
61     int tracksNumber() const;
62     KdenliveDoc *document();
63     void refresh() ;
64     void updateProjectFps();
65     int outPoint() const;
66     int inPoint() const;
67     int fitZoom() const;
68
69     /** @brief Updates (redraws) the ruler.
70     *
71     * Used to change from displaying frames to timecode or vice versa. */
72     void updateRuler();
73
74     /** @brief Parse tracks to see if project has audio in it.
75     *
76     * Parses all tracks to check if there is audio data. */
77     bool checkProjectAudio() const;
78
79     void checkTrackHeight();
80     void updateProfile();
81     void updatePalette();
82
83 protected:
84     virtual void keyPressEvent(QKeyEvent * event);
85
86 public slots:
87     void slotDeleteClip(const QString &clipId);
88     void slotChangeZoom(int horizontal, int vertical = -1);
89     void setDuration(int dur);
90     void slotSetZone(QPoint p, bool updateDocumentProperties = true);
91     /** @brief Save a snapshot image of current timeline view */
92     void slotSaveTimelinePreview(const QString path);
93 private:
94     CustomRuler *m_ruler;
95     CustomTrackView *m_trackview;
96     QList <QString> m_invalidProducers;
97     double m_scale;
98     int m_projectTracks;
99     QString m_editMode;
100     CustomTrackScene *m_scene;
101     /** @brief A list of producer ids to be replaced when opening a corrupted document*/
102     QMap <QString, QString> m_replacementProducerIds;
103
104     KdenliveDoc *m_doc;
105     int m_verticalZoom;
106     QString m_documentErrors;
107     QList <QAction *> m_trackActions;
108     
109     void parseDocument(QDomDocument doc);
110     int slotAddProjectTrack(int ix, QDomElement xml, bool locked, QDomNodeList producers);
111     DocClipBase *getMissingProducer(const QString id) const;
112     void adjustTrackHeaders();
113     /** @brief Add effects from the xml. Returns true if some effect was upgraded, false if everything went fine.*/
114     void slotAddProjectEffects(QDomNodeList effects, QDomElement parentNode, ClipItem *clip, int trackIndex);
115     
116     /** @brief Returns a kdenlive effect xml description from an effect tag / id */
117     QDomElement getEffectByTag(const QString &effecttag, const QString &effectid);
118     
119     /** @brief Adjust kdenlive effect xml parameters to the MLT value*/
120     void adjustparameterValue(QDomNodeList clipeffectparams, const QString &paramname, const QString &paramvalue);
121
122 private slots:
123     void setCursorPos(int pos);
124     void moveCursorPos(int pos);
125     /** @brief Rebuilds the track headers */
126     void slotRebuildTrackHeaders();
127     /** @brief The tracks count or a track name changed, rebuild and notify */
128     void slotReloadTracks();
129     void slotChangeTrackLock(int ix, bool lock);
130     void slotVerticalZoomDown();
131     void slotVerticalZoomUp();
132
133     /** @brief Changes the name of a track.
134     * @param ix Number of the track
135     * @param name New name */
136     void slotRenameTrack(int ix, QString name);
137     void slotRepaintTracks();
138
139     /** @brief Adjusts the margins of the header area.
140      *
141      * Avoid a shift between header area and trackview if
142      * the horizontal scrollbar is visible and the position
143      * of the vertical scrollbar is maximal */
144     void slotUpdateVerticalScroll(int min, int max);
145     void slotShowTrackEffects(int);
146     /** @brief Update the track label showing applied effects.*/
147     void slotUpdateTrackEffectState(int);
148
149 signals:
150     void mousePosition(int);
151     void cursorMoved();
152     void zoneMoved(int, int);
153     void configTrack(int);
154     void updateTracksInfo();
155     void setZoom(int);
156     void showTrackEffects(int, TrackInfo);
157 };
158
159 #endif