]> git.sesse.net Git - kdenlive/blob - src/mainwindow.h
- Enable shortcuts for effects and transitions.
[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_loopZone;
203     KAction *m_playZone;
204     StatusBarMessageLabel *m_messageLabel;
205     QActionGroup *m_clipTypeGroup;
206
207     bool m_findActivated;
208     QString m_findString;
209     QTimer m_findTimer;
210
211     void readOptions();
212     void saveOptions();
213 #ifndef NO_JOGSHUTTLE
214     void activateShuttleDevice();
215     void slotShuttleAction(int code);
216 #endif /* NO_JOGSHUTTLE */
217     void connectDocumentInfo(KdenliveDoc *doc);
218     void findAhead();
219     void doOpenFile(const KUrl &url, KAutoSaveFile *stale);
220     void recoverFiles(QList<KAutoSaveFile *> staleFiles);
221     void loadPlugins();
222     void populateMenus(QObject *plugin);
223     void addToMenu(QObject *plugin, const QStringList &texts,
224                    QMenu *menu, const char *member,
225                    QActionGroup *actionGroup);
226     void aboutPlugins();
227
228     /** @brief Instantiates a "Get Hot New Stuff" dialog.
229      * @param configFile configuration file for KNewStuff
230      * @return number of installed items */
231     int getNewStuff(const QString &configFile = QString());
232     QStringList m_pluginFileNames;
233     QByteArray m_timelineState;
234     void loadTranscoders();
235     QPixmap createSchemePreviewIcon(const KSharedConfigPtr &config);
236
237 public slots:
238     void openFile(const KUrl &url);
239     void slotGotProgressInfo(const QString &message, int progress);
240     Q_SCRIPTABLE void setRenderingProgress(const QString &url, int progress);
241     Q_SCRIPTABLE void setRenderingFinished(const QString &url, int status, const QString &error);
242
243 private slots:
244     void newFile(bool showProjectSettings = true, bool force = false);
245     void queryQuit();
246     void activateDocument();
247     void connectDocument(TrackView*, KdenliveDoc*);
248     void openFile();
249     void openLastFile();
250     /** @brief Checks whether a URL is available to save to.
251     * @return Whether the file was saved. */
252     bool saveFile();
253     /** @brief Shows a save file dialog for saving the project.
254     * @return Whether the file was saved. */
255     bool saveFileAs();
256     /** @brief Set properties to match outputFileName and save the document.
257     * @param outputFileName The URL to save to / The document's URL.
258     * @return Whether we had success. */
259     bool saveFileAs(const QString &outputFileName);
260     void slotPreferences(int page = -1, int option = -1);
261     void updateConfiguration();
262     void slotConnectMonitors();
263     void slotRaiseMonitor(bool clipMonitor);
264     void slotUpdateClip(const QString &id);
265     void slotUpdateMousePosition(int pos);
266     void slotAddEffect(const QDomElement effect, GenTime pos = GenTime(), int track = -1);
267     void slotEditProfiles();
268     void slotDetectAudioDriver();
269     void slotEditProjectSettings();
270     void slotDisplayActionMessage(QAction *a);
271     void slotSwitchVideoThumbs();
272     void slotSwitchAudioThumbs();
273     void slotSwitchMarkersComments();
274     void slotSwitchSnap();
275     void slotRenderProject();
276     void slotFullScreen();
277     void slotUpdateDocumentState(bool modified);
278     void slotZoomIn();
279     void slotZoomOut();
280     void slotFitZoom();
281     void closeCurrentDocument(bool saveChanges = true);
282     /** @brief Delete item in timeline, project tree or effect stack depending on focus. */
283     void slotDeleteItem();
284     void slotAddClipMarker();
285     void slotDeleteClipMarker();
286     void slotDeleteAllClipMarkers();
287     void slotEditClipMarker();
288     void slotCutTimelineClip();
289     void slotInsertClipOverwrite();
290     void slotSelectTimelineClip();
291     void slotSelectTimelineTransition();
292     void slotDeselectTimelineClip();
293     void slotDeselectTimelineTransition();
294     void slotSelectAddTimelineClip();
295     void slotSelectAddTimelineTransition();
296     void slotAddVideoEffect(QAction *result);
297     void slotAddAudioEffect(QAction *result);
298     void slotAddCustomEffect(QAction *result);
299     void slotAddTransition(QAction *result);
300     void slotAddProjectClip(KUrl url);
301 #ifndef NO_JOGSHUTTLE
302     void slotShuttleButton(int code);
303 #endif /* NO_JOGSHUTTLE */
304     void slotShowClipProperties(DocClipBase *clip);
305     void slotShowClipProperties(QList <DocClipBase *>cliplist, QMap<QString, QString> commonproperties);
306     void slotActivateEffectStackView();
307     void slotActivateTransitionView(Transition *);
308     void slotChangeTool(QAction * action);
309     void slotChangeEdit(QAction * action);
310     void slotSetTool(PROJECTTOOL tool);
311     void slotSnapForward();
312     void slotSnapRewind();
313     void slotClipStart();
314     void slotClipEnd();
315     void slotZoneStart();
316     void slotZoneEnd();
317     void slotFind();
318     void findTimeout();
319     void slotFindNext();
320     void slotSelectClipInTimeline();
321     void slotClipInTimeline(const QString &clipId);
322
323     void slotInsertSpace();
324     void slotRemoveSpace();
325     void slotAddGuide();
326     void slotEditGuide();
327     void slotDeleteGuide();
328     void slotDeleteAllGuides();
329     void slotGuidesUpdated();
330
331     void slotCopy();
332     void slotPaste();
333     void slotPasteEffects();
334     void slotReloadEffects();
335
336     void slotAdjustClipMonitor();
337     void slotAdjustProjectMonitor();
338     void slotSaveZone(Render *render, QPoint zone);
339
340     void slotSetInPoint();
341     void slotSetOutPoint();
342     void slotResizeItemStart();
343     void slotResizeItemEnd();
344     void configureNotifications();
345     void slotInsertTrack(int ix = 0);
346     void slotDeleteTrack(int ix = 0);
347     void slotChangeTrack(int ix = 0);
348     void slotGetNewLumaStuff();
349     void slotGetNewTitleStuff();
350     void slotGetNewRenderStuff();
351     void slotGetNewMltProfileStuff();
352     void slotAutoTransition();
353     void slotRunWizard();
354     void generateClip();
355     void slotZoneMoved(int start, int end);
356     void slotUpdatePreviewSettings();
357     void slotDvdWizard(const QString &url = QString(), const QString &profile = "dv_pal");
358     void slotGroupClips();
359     void slotUnGroupClips();
360     void slotEditItemDuration();
361     void slotClipInProjectTree();
362     void slotSplitAudio();
363     void slotUpdateClipType(QAction *action);
364     void slotShowTimeline(bool show);
365     void slotMaximizeCurrent(bool show);
366     void slotTranscode(KUrl::List urls = KUrl::List());
367     void slotTranscodeClip();
368     void slotSetDocumentRenderProfile(const QString &dest, const QString &group, const QString &name, const QString &file);
369     void slotPrepareRendering(bool scriptExport, bool zoneOnly, const QString &chapterFile);
370     void slotUpdateTimecodeFormat(int ix);
371     /** Removes the focus of anything */
372     void slotRemoveFocus();
373     void slotCleanProject();
374     void slotSetZoom(int value);
375     void slotUpdateClipMarkers(DocClipBase *clip);
376     void slotRevert();
377     void slotShutdown();
378     void slotUpdateTrackInfo();
379
380     /** @brief Changes the color scheme. */
381     void slotChangePalette(QAction *action, const QString &themename = QString());
382     void slotSwitchMonitors();
383     void slotCheckRenderStatus();
384     void slotInsertZoneToTree();
385     void slotInsertZoneToTimeline();
386     void slotDeleteProjectClips(QStringList ids, QMap<QString, QString> folderids);
387     void slotShowTitleBars(bool show);
388     void slotSwitchTitles();
389
390 signals:
391     Q_SCRIPTABLE void abortRenderJob(const QString &url);
392 };
393
394
395 #endif