]> git.sesse.net Git - kdenlive/blob - src/mainwindow.h
Fix issue 254: starting up with project supplied on CLI should not result in 'Untitle...
[kdenlive] / src / mainwindow.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 MAINWINDOW_H
22 #define MAINWINDOW_H
23
24 #include <QDockWidget>
25 #include <QUndoView>
26 #include <QLabel>
27 #include <QProgressBar>
28 #include <QEvent>
29 #include <QTimer>
30
31 #include <KXmlGuiWindow>
32 #include <KTextEdit>
33 #include <KListWidget>
34 #include <KTabWidget>
35 #include <KUndoStack>
36 #include <KRecentFilesAction>
37 #include <KComboBox>
38 #include <kautosavefile.h>
39
40 #include "effectslist.h"
41 #include "gentime.h"
42 #include "definitions.h"
43 #include "statusbarmessagelabel.h"
44
45 class KdenliveDoc;
46 class TrackView;
47 class MonitorManager;
48 class ProjectList;
49 class EffectsListView;
50 class EffectStackView;
51 class TransitionSettings;
52 class Monitor;
53 class RecMonitor;
54 class CustomTrackView;
55 class RenderWidget;
56 #ifndef NO_JOGSHUTTLE
57 class JogShuttle;
58 #endif /* NO_JOGSHUTTLE */
59 class DocClipBase;
60 class Render;
61
62 class MainWindow : public KXmlGuiWindow {
63     Q_OBJECT
64
65 public:
66     /** Constructor
67      * \param MltPath path to MLT environment
68      * \param Url Url to open
69      * \param parent Std. widget parent
70      *
71      * The constructor inits the main window. If Url is present, it will be opened.
72      * If Url is not present, and openLastproject is set, last project will be set
73      * If no file is open after trying this, a default "newfile" will be created. */
74     MainWindow(const QString &MltPath = QString(), const KUrl & Url = KUrl(), QWidget *parent = 0);
75     void parseProfiles(const QString &mltPath = QString());
76
77     static EffectsList videoEffects;
78     static EffectsList audioEffects;
79     static EffectsList customEffects;
80     static EffectsList transitions;
81 protected:
82     virtual bool queryClose();
83     virtual void customEvent(QEvent * e);
84     virtual void keyPressEvent(QKeyEvent *ke);
85     /** Override hideEvent to get events when the mainwindow gets hidden */
86     virtual void hideEvent(QHideEvent *e);
87     bool eventFilter(QObject *obj, QEvent *ev);
88     /**
89      * This function is called when it is time for the app to save its
90      * properties for session management purposes.
91      */
92     void saveProperties(KConfig *);
93
94     /**
95      * This function is called when this app is restored.  The KConfig
96      * object points to the session management config file that was saved
97      * with @ref saveProperties
98      */
99     void readProperties(KConfig *);
100
101 private:
102     KTabWidget* m_timelineArea;
103     QProgressBar *statusProgressBar;
104     void setupActions();
105     KdenliveDoc *m_activeDocument;
106     TrackView *m_activeTimeline;
107     MonitorManager *m_monitorManager;
108
109     QDockWidget *projectListDock;
110     ProjectList *m_projectList;
111
112     QDockWidget *effectListDock;
113     EffectsListView *m_effectList;
114     //KListWidget *m_effectList;
115
116     QDockWidget *effectStackDock;
117     EffectStackView *effectStack;
118
119     QDockWidget *transitionConfigDock;
120     TransitionSettings *transitionConfig;
121
122     QDockWidget *clipMonitorDock;
123     Monitor *m_clipMonitor;
124
125     QDockWidget *projectMonitorDock;
126     Monitor *m_projectMonitor;
127
128     QDockWidget *recMonitorDock;
129     RecMonitor *m_recMonitor;
130
131     QDockWidget *undoViewDock;
132     QUndoView *m_undoView;
133     QUndoGroup *m_commandStack;
134
135     KComboBox *m_timecodeFormat;
136
137     QDockWidget *overviewDock;
138     CustomTrackView *m_overView;
139
140     QMenu *m_customEffectsMenu;
141     QMenu *m_timelineContextMenu;
142     QMenu *m_timelineContextClipMenu;
143     QMenu *m_timelineContextTransitionMenu;
144
145     RenderWidget *m_renderWidget;
146
147 #ifndef NO_JOGSHUTTLE
148     JogShuttle *m_jogProcess;
149 #endif /* NO_JOGSHUTTLE */
150
151     KRecentFilesAction *m_fileOpenRecent;
152     KAction *m_projectSearch;
153     KAction *m_projectSearchNext;
154
155     KAction *m_buttonAudioThumbs;
156     KAction *m_buttonVideoThumbs;
157     KAction *m_buttonShowMarkers;
158     KAction *m_buttonFitZoom;
159     KAction *m_buttonSelectTool;
160     KAction *m_buttonRazorTool;
161     KAction *m_buttonSnap;
162     QActionGroup *m_toolGroup;
163     KAction *m_saveAction;
164     KAction *m_closeAction;
165     QSlider *m_zoomSlider;
166     StatusBarMessageLabel *m_messageLabel;
167
168     bool m_findActivated;
169     QString m_findString;
170     QTimer m_findTimer;
171     bool m_initialized;
172
173     void readOptions();
174     void saveOptions();
175 #ifndef NO_JOGSHUTTLE
176     void activateShuttleDevice();
177     void slotShuttleAction(int code);
178 #endif /* NO_JOGSHUTTLE */
179     void connectDocumentInfo(KdenliveDoc *doc);
180     void findAhead();
181     void doOpenFile(const KUrl &url, KAutoSaveFile *stale);
182     void recoverFiles(QList<KAutoSaveFile *> staleFiles);
183
184 public slots:
185     void openFile(const KUrl &url);
186     void slotGotProgressInfo(const QString &message, int progress);
187
188 private slots:
189     void newFile(bool showProjectSettings = true);
190     void queryQuit();
191     void activateDocument();
192     void connectDocument(TrackView*, KdenliveDoc*);
193     void openFile();
194     void openLastFile();
195     void saveFile();
196     void saveFileAs();
197     void saveFileAs(const QString &outputFileName);
198     void slotPreferences(int page = -1, int option = -1);
199     void updateConfiguration();
200     void slotConnectMonitors();
201     void slotRaiseMonitor(bool clipMonitor);
202     void slotSetClipDuration(const QString &id, int duration);
203     void slotUpdateMousePosition(int pos);
204     void slotAddEffect(QDomElement effect, GenTime pos = GenTime(), int track = -1);
205     void slotEditProfiles();
206     void slotEditProjectSettings();
207     void slotDisplayActionMessage(QAction *a);
208     void slotSwitchVideoThumbs();
209     void slotSwitchAudioThumbs();
210     void slotSwitchMarkersComments();
211     void slotSwitchSnap();
212     void slotRenderProject();
213     void slotDoRender(const QString &dest, const QString &render, const QStringList &overlay_args, const QStringList &avformat_args, bool zoneOnly, bool playAfter, double guideStart, double guideEnd);
214     void slotFullScreen();
215     void slotUpdateDocumentState(bool modified);
216     void slotZoomIn();
217     void slotZoomOut();
218     void slotFitZoom();
219     void closeCurrentDocument();
220     void slotDeleteTimelineClip();
221     void slotAddClipMarker();
222     void slotDeleteClipMarker();
223     void slotDeleteAllClipMarkers();
224     void slotEditClipMarker();
225     void slotCutTimelineClip();
226     void slotAddVideoEffect(QAction *result);
227     void slotAddAudioEffect(QAction *result);
228     void slotAddCustomEffect(QAction *result);
229     void slotAddTransition(QAction *result);
230     void slotAddProjectClip(KUrl url);
231 #ifndef NO_JOGSHUTTLE
232     void slotShuttleButton(int code);
233 #endif /* NO_JOGSHUTTLE */
234     void slotShowClipProperties(DocClipBase *clip);
235     void slotActivateEffectStackView();
236     void slotActivateTransitionView();
237     void slotChangeTool(QAction * action);
238     void slotSetTool(PROJECTTOOL tool);
239     void slotSnapForward();
240     void slotSnapRewind();
241     void slotClipStart();
242     void slotClipEnd();
243     void slotFind();
244     void findTimeout();
245     void slotFindNext();
246
247     void slotAddGuide();
248     void slotEditGuide();
249     void slotDeleteGuide();
250     void slotDeleteAllGuides();
251     void slotGuidesUpdated();
252
253     void slotCopy();
254     void slotPaste();
255     void slotPasteEffects();
256     void slotReloadEffects();
257     void slotChangeClipSpeed();
258
259     void slotAdjustClipMonitor();
260     void slotAdjustProjectMonitor();
261     void slotSaveZone(Render *render, QPoint zone);
262
263     void slotSetInPoint();
264     void slotSetOutPoint();
265     void configureNotifications();
266 };
267
268
269 #endif