]> git.sesse.net Git - kdenlive/blob - src/mainwindow.h
9451809ef8139a9d33134409e6cb97d2476106b6
[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 #include <QShortcut>
31
32 #include <KXmlGuiWindow>
33 #include <KTextEdit>
34 #include <KListWidget>
35 #include <KTabWidget>
36 #include <KUndoStack>
37 #include <KRecentFilesAction>
38 #include <KComboBox>
39 #include <kautosavefile.h>
40
41 #include "effectslist.h"
42 #include "gentime.h"
43 #include "definitions.h"
44 #include "statusbarmessagelabel.h"
45 #include "dvdwizard.h"
46
47 class KdenliveDoc;
48 class TrackView;
49 class MonitorManager;
50 class ProjectList;
51 class EffectsListView;
52 class EffectStackView;
53 class TransitionSettings;
54 class Monitor;
55 class RecMonitor;
56 class CustomTrackView;
57 class RenderWidget;
58 #ifndef NO_JOGSHUTTLE
59 class JogShuttle;
60 #endif /* NO_JOGSHUTTLE */
61 class DocClipBase;
62 class Render;
63 class Transition;
64
65 class MainWindow : public KXmlGuiWindow
66 {
67     Q_OBJECT
68     Q_CLASSINFO("D-Bus Interface", "org.kdenlive.MainWindow")
69
70 public:
71
72     /** @brief Initialises the main window.
73      * @param MltPath (optional) path to MLT environment
74      * @param Url (optional) file to open
75      *
76      * If Url is present, it will be opened, otherwhise, if openlastproject is
77      * set, latest project will be opened. If no file is open after trying this,
78      * a default new file will be created. */
79     explicit MainWindow(const QString &MltPath = QString(),
80                         const KUrl &Url = KUrl(), QWidget *parent = 0);
81
82     /** @brief Locates the MLT environment.
83      * @param mltPath (optional) path to MLT environment
84      *
85      * It tries to set the paths of the MLT profiles and renderer, using
86      * mltPath, MLT_PREFIX, searching for the binary `melt`, or asking to the
87      * user. It doesn't fill any list of profiles, while its name suggests so. */
88     void parseProfiles(const QString &mltPath = QString());
89
90     static EffectsList videoEffects;
91     static EffectsList audioEffects;
92     static EffectsList customEffects;
93     static EffectsList transitions;
94 protected:
95
96     /** @brief Closes the window.
97      * @return false if the user presses "Cancel" on a confirmation dialog or
98      *     the operation requested (starting waiting jobs or saving file) fails,
99      *     true otherwise */
100     virtual bool queryClose();
101
102     /** @brief Reports a message in the status bar when an error occurs. */
103     virtual void customEvent(QEvent *e);
104
105     /** @brief Enables live search in the timeline. */
106     virtual void keyPressEvent(QKeyEvent *ke);
107
108     /** @brief Stops the active monitor when the window gets hidden. */
109     virtual void hideEvent(QHideEvent *e);
110
111     /** @brief Filters key events to the live search. */
112     bool eventFilter(QObject *obj, QEvent *ev);
113
114     /** @brief Saves the file and the window properties when saving the session. */
115     virtual void saveProperties(KConfigGroup &config);
116
117     /** @brief Restores the window and the file when a session is loaded. */
118     virtual void readProperties(const KConfigGroup &config);
119
120 private:
121     KTabWidget* m_timelineArea;
122     QProgressBar *m_statusProgressBar;
123
124     /** @brief Sets up all the actions and attaches them to the collection. */
125     void setupActions();
126     KdenliveDoc *m_activeDocument;
127     TrackView *m_activeTimeline;
128     MonitorManager *m_monitorManager;
129
130     QDockWidget *m_projectListDock;
131     ProjectList *m_projectList;
132
133     QDockWidget *m_effectListDock;
134     EffectsListView *m_effectList;
135     //KListWidget *m_effectList;
136
137     QDockWidget *m_effectStackDock;
138     EffectStackView *m_effectStack;
139
140     QDockWidget *m_transitionConfigDock;
141     TransitionSettings *m_transitionConfig;
142
143     QDockWidget *m_clipMonitorDock;
144     Monitor *m_clipMonitor;
145
146     QDockWidget *m_projectMonitorDock;
147     Monitor *m_projectMonitor;
148
149     QDockWidget *m_recMonitorDock;
150     RecMonitor *m_recMonitor;
151
152     QDockWidget *m_undoViewDock;
153     QUndoView *m_undoView;
154     QUndoGroup *m_commandStack;
155
156     KComboBox *m_timecodeFormat;
157
158     QMenu *m_videoEffectsMenu;
159     QMenu *m_audioEffectsMenu;
160     QMenu *m_customEffectsMenu;
161     QMenu *m_transitionsMenu;
162     QMenu *m_timelineContextMenu;
163     QMenu *m_timelineContextClipMenu;
164     QMenu *m_timelineContextTransitionMenu;
165     KUrl m_startUrl;
166
167     /** @brief Shortcut to remove the focus from any element.
168      *
169      * It allows to get out of e.g. text input fields and to press another
170      * shortcut. */
171     QShortcut* m_shortcutRemoveFocus;
172
173     RenderWidget *m_renderWidget;
174
175 #ifndef NO_JOGSHUTTLE
176     JogShuttle *m_jogProcess;
177 #endif /* NO_JOGSHUTTLE */
178
179     KRecentFilesAction *m_fileOpenRecent;
180     KAction *m_fileRevert;
181     KAction *m_projectSearch;
182     KAction *m_projectSearchNext;
183
184     KAction **m_videoEffects;
185     KAction **m_audioEffects;
186     KAction **m_customEffects;
187     KAction **m_transitions;
188     KAction *m_buttonAudioThumbs;
189     KAction *m_buttonVideoThumbs;
190     KAction *m_buttonShowMarkers;
191     KAction *m_buttonFitZoom;
192     KAction *m_normalEditTool;
193     KAction *m_overwriteEditTool;
194     KAction *m_insertEditTool;
195     KAction *m_buttonSelectTool;
196     KAction *m_buttonRazorTool;
197     KAction *m_buttonSpacerTool;
198     KAction *m_buttonSnap;
199     KAction *m_saveAction;
200     KAction *m_closeAction;
201     QSlider *m_zoomSlider;
202     KAction *m_zoomIn;
203     KAction *m_zoomOut;
204     KAction *m_loopZone;
205     KAction *m_playZone;
206     StatusBarMessageLabel *m_messageLabel;
207     QActionGroup *m_clipTypeGroup;
208
209     bool m_findActivated;
210     QString m_findString;
211     QTimer m_findTimer;
212
213     void readOptions();
214     void saveOptions();
215 #ifndef NO_JOGSHUTTLE
216     void activateShuttleDevice();
217     void slotShuttleAction(int code);
218 #endif /* NO_JOGSHUTTLE */
219     void connectDocumentInfo(KdenliveDoc *doc);
220     void findAhead();
221     void doOpenFile(const KUrl &url, KAutoSaveFile *stale);
222     void recoverFiles(QList<KAutoSaveFile *> staleFiles);
223     void loadPlugins();
224     void populateMenus(QObject *plugin);
225     void addToMenu(QObject *plugin, const QStringList &texts,
226                    QMenu *menu, const char *member,
227                    QActionGroup *actionGroup);
228     void aboutPlugins();
229
230     /** @brief Instantiates a "Get Hot New Stuff" dialog.
231      * @param configFile configuration file for KNewStuff
232      * @return number of installed items */
233     int getNewStuff(const QString &configFile = QString());
234     QStringList m_pluginFileNames;
235     QByteArray m_timelineState;
236     void loadTranscoders();
237     QPixmap createSchemePreviewIcon(const KSharedConfigPtr &config);
238     /** @brief Checks that the Kdenlive mime type is correctly installed.
239     * @return The mimetype */
240     QString getMimeType();
241
242 public slots:
243     /** @brief Prepares opening @param url.
244     *
245     * Checks if already open and whether backup exists */
246     void openFile(const KUrl &url);
247     void slotGotProgressInfo(const QString &message, int progress);
248     Q_SCRIPTABLE void setRenderingProgress(const QString &url, int progress);
249     Q_SCRIPTABLE void setRenderingFinished(const QString &url, int status, const QString &error);
250
251 private slots:
252     void newFile(bool showProjectSettings = true, bool force = false);
253     void queryQuit();
254     void activateDocument();
255     void connectDocument(TrackView*, KdenliveDoc*);
256     /** @brief Shows file open dialog. */
257     void openFile();
258     void openLastFile();
259     /** @brief Checks whether a URL is available to save to.
260     * @return Whether the file was saved. */
261     bool saveFile();
262     /** @brief Shows a save file dialog for saving the project.
263     * @return Whether the file was saved. */
264     bool saveFileAs();
265     /** @brief Set properties to match outputFileName and save the document.
266     * @param outputFileName The URL to save to / The document's URL.
267     * @return Whether we had success. */
268     bool saveFileAs(const QString &outputFileName);
269     void slotPreferences(int page = -1, int option = -1);
270     void updateConfiguration();
271     void slotConnectMonitors();
272     void slotRaiseMonitor(bool clipMonitor);
273     void slotUpdateClip(const QString &id);
274     void slotUpdateMousePosition(int pos);
275     void slotAddEffect(const QDomElement effect, GenTime pos = GenTime(), int track = -1);
276     void slotEditProfiles();
277     void slotDetectAudioDriver();
278     void slotEditProjectSettings();
279     void slotDisplayActionMessage(QAction *a);
280     void slotSwitchVideoThumbs();
281     void slotSwitchAudioThumbs();
282     void slotSwitchMarkersComments();
283     void slotSwitchSnap();
284     void slotRenderProject();
285     void slotFullScreen();
286     void slotUpdateDocumentState(bool modified);
287
288     /** @brief Sets the timeline zoom slider to @param value.
289     *
290     * Also disables zoomIn and zoomOut actions if they cannot be used at the moment. */
291     void slotSetZoom(int value);
292     /** @brief Decreases the timeline zoom level by 1. */
293     void slotZoomIn();
294     /** @brief Increases the timeline zoom level by 1. */
295     void slotZoomOut();
296     /** @brief Makes the timeline zoom level fit the timeline content. */
297     void slotFitZoom();
298     /** @brief Updates the zoom slider tooltip to fit @param zoomlevel. */
299     void slotUpdateZoomSliderToolTip(int zoomlevel);
300     /** @brief Displays the zoom slider tooltip.
301     * @param zoomlevel (optional) The zoom level to show in the tooltip. 
302     *
303     * Adopted from Dolphin (src/statusbar/dolphinstatusbar.cpp) */
304     void slotShowZoomSliderToolTip(int zoomlevel = -1);
305
306     void closeCurrentDocument(bool saveChanges = true);
307     /** @brief Deletes item in timeline, project tree or effect stack depending on focus. */
308     void slotDeleteItem();
309     void slotAddClipMarker();
310     void slotDeleteClipMarker();
311     void slotDeleteAllClipMarkers();
312     void slotEditClipMarker();
313     void slotCutTimelineClip();
314     void slotInsertClipOverwrite();
315     void slotSelectTimelineClip();
316     void slotSelectTimelineTransition();
317     void slotDeselectTimelineClip();
318     void slotDeselectTimelineTransition();
319     void slotSelectAddTimelineClip();
320     void slotSelectAddTimelineTransition();
321     void slotAddVideoEffect(QAction *result);
322     void slotAddAudioEffect(QAction *result);
323     void slotAddCustomEffect(QAction *result);
324     void slotAddTransition(QAction *result);
325     void slotAddProjectClip(KUrl url);
326 #ifndef NO_JOGSHUTTLE
327     void slotShuttleButton(int code);
328 #endif /* NO_JOGSHUTTLE */
329     void slotShowClipProperties(DocClipBase *clip);
330     void slotShowClipProperties(QList <DocClipBase *>cliplist, QMap<QString, QString> commonproperties);
331     void slotActivateEffectStackView();
332     void slotActivateTransitionView(Transition *);
333     void slotChangeTool(QAction * action);
334     void slotChangeEdit(QAction * action);
335     void slotSetTool(PROJECTTOOL tool);
336     void slotSnapForward();
337     void slotSnapRewind();
338     void slotClipStart();
339     void slotClipEnd();
340     void slotZoneStart();
341     void slotZoneEnd();
342     void slotFind();
343     void findTimeout();
344     void slotFindNext();
345     void slotSelectClipInTimeline();
346     void slotClipInTimeline(const QString &clipId);
347
348     void slotInsertSpace();
349     void slotRemoveSpace();
350     void slotAddGuide();
351     void slotEditGuide();
352     void slotDeleteGuide();
353     void slotDeleteAllGuides();
354     void slotGuidesUpdated();
355
356     void slotCopy();
357     void slotPaste();
358     void slotPasteEffects();
359     void slotReloadEffects();
360
361     void slotAdjustClipMonitor();
362     void slotAdjustProjectMonitor();
363     void slotSaveZone(Render *render, QPoint zone);
364
365     void slotSetInPoint();
366     void slotSetOutPoint();
367     void slotResizeItemStart();
368     void slotResizeItemEnd();
369     void configureNotifications();
370     void slotInsertTrack(int ix = 0);
371     void slotDeleteTrack(int ix = 0);
372     /** @brief Shows the configure tracks dialog and updates transitions afterwards. */
373     void slotConfigTrack(int ix = -1);
374     void slotGetNewLumaStuff();
375     void slotGetNewTitleStuff();
376     void slotGetNewRenderStuff();
377     void slotGetNewMltProfileStuff();
378     void slotAutoTransition();
379     void slotRunWizard();
380     /** @brief Lets the sampleplugin create a generator.  */
381     void generateClip();
382     void slotZoneMoved(int start, int end);
383     void slotUpdatePreviewSettings();
384     void slotDvdWizard(const QString &url = QString(), const QString &profile = "dv_pal");
385     void slotGroupClips();
386     void slotUnGroupClips();
387     void slotEditItemDuration();
388     void slotClipInProjectTree();
389     void slotSplitAudio();
390     void slotUpdateClipType(QAction *action);
391     void slotShowTimeline(bool show);
392     void slotMaximizeCurrent(bool show);
393     void slotTranscode(KUrl::List urls = KUrl::List());
394     void slotTranscodeClip();
395     void slotSetDocumentRenderProfile(const QString &dest, const QString &group, const QString &name, const QString &file);
396     void slotPrepareRendering(bool scriptExport, bool zoneOnly, const QString &chapterFile);
397     /** @brief Switches between displaying frames or timecode.
398     * @param ix 0 = display timecode, 1 = display frames. */
399     void slotUpdateTimecodeFormat(int ix);
400     /** @brief Removes the focus of anything. */
401     void slotRemoveFocus();
402     void slotCleanProject();
403     void slotUpdateClipMarkers(DocClipBase *clip);
404     void slotRevert();
405     void slotShutdown();
406     void slotUpdateTrackInfo();
407
408     /** @brief Changes the color scheme. */
409     void slotChangePalette(QAction *action, const QString &themename = QString());
410     void slotSwitchMonitors();
411     void slotCheckRenderStatus();
412     void slotInsertZoneToTree();
413     void slotInsertZoneToTimeline();
414     /** @brief Deletes items from timeline and document.
415     * @param ids The ids of the clips to delete.
416     * @param folderids The names and ids of the folders to delete. */
417     void slotDeleteProjectClips(QStringList ids, QMap<QString, QString> folderids);
418     void slotShowTitleBars(bool show);
419     void slotSwitchTitles();
420
421 signals:
422     Q_SCRIPTABLE void abortRenderJob(const QString &url);
423 };
424
425
426 #endif