1 /***************************************************************************
2 * Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org) *
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. *
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. *
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 ***************************************************************************/
24 #include <QDockWidget>
27 #include <QProgressBar>
35 #include <KXmlGuiWindow>
37 #include <KListWidget>
40 #include <KRecentFilesAction>
42 #include <kautosavefile.h>
43 #include <KActionCategory>
45 #include "effectslist.h"
47 #include "definitions.h"
48 #include "statusbarmessagelabel.h"
49 #include "dvdwizard.h"
50 #include "stopmotion/stopmotion.h"
51 #include "noteswidget.h"
52 #include "ui_backupdialog_ui.h"
58 class EffectsListView;
59 class EffectStackView;
60 class EffectStackView2;
61 class TransitionSettings;
64 class CustomTrackView;
68 class JogShuttleAction;
78 class KActionCollection;
80 class AbstractAudioScopeWidget;
84 class MainWindow : public KXmlGuiWindow
87 Q_CLASSINFO("D-Bus Interface", "org.kdenlive.MainWindow")
91 /** @brief Initialises the main window.
92 * @param MltPath (optional) path to MLT environment
93 * @param Url (optional) file to open
94 * @param clipsToLoad (optional) a comma separated list of clips to import in project
96 * If Url is present, it will be opened, otherwhise, if openlastproject is
97 * set, latest project will be opened. If no file is open after trying this,
98 * a default new file will be created. */
99 explicit MainWindow(const QString &MltPath = QString(),
100 const KUrl &Url = KUrl(), const QString & clipsToLoad = QString(), QWidget *parent = 0);
101 virtual ~MainWindow();
103 /** @brief Locates the MLT environment.
104 * @param mltPath (optional) path to MLT environment
106 * It tries to set the paths of the MLT profiles and renderer, using
107 * mltPath, MLT_PREFIX, searching for the binary `melt`, or asking to the
108 * user. It doesn't fill any list of profiles, while its name suggests so. */
109 void parseProfiles(const QString &mltPath = QString());
111 static EffectsList videoEffects;
112 static EffectsList audioEffects;
113 static EffectsList customEffects;
114 static EffectsList transitions;
116 /** @brief Cache for luma files thumbnails. */
117 static QMap <QString,QImage> m_lumacache;
121 /** @brief Closes the window.
122 * @return false if the user presses "Cancel" on a confirmation dialog or
123 * the operation requested (starting waiting jobs or saving file) fails,
125 virtual bool queryClose();
127 /** @brief Reports a message in the status bar when an error occurs. */
128 virtual void customEvent(QEvent *e);
130 /** @brief Enables live search in the timeline. */
131 virtual void keyPressEvent(QKeyEvent *ke);
133 /** @brief Stops the active monitor when the window gets hidden. */
134 virtual void hideEvent(QHideEvent *e);
136 /** @brief Filters key events to the live search. */
137 bool eventFilter(QObject *obj, QEvent *ev);
139 /** @brief Saves the file and the window properties when saving the session. */
140 virtual void saveProperties(KConfigGroup &config);
142 /** @brief Restores the window and the file when a session is loaded. */
143 virtual void readProperties(const KConfigGroup &config);
146 KTabWidget* m_timelineArea;
147 QProgressBar *m_statusProgressBar;
149 ScopeManager *m_scopeManager;
151 /** @brief Sets up all the actions and attaches them to the collection. */
153 KdenliveDoc *m_activeDocument;
154 TrackView *m_activeTimeline;
155 MonitorManager *m_monitorManager;
157 QDockWidget *m_projectListDock;
158 ProjectList *m_projectList;
160 QDockWidget *m_effectListDock;
161 EffectsListView *m_effectList;
162 //KListWidget *m_effectList;
164 QDockWidget *m_notesDock;
165 NotesWidget *m_notesWidget;
167 QDockWidget *m_effectStackDock;
168 EffectStackView2 *m_effectStack;
170 QDockWidget *m_transitionConfigDock;
171 TransitionSettings *m_transitionConfig;
173 QDockWidget *m_clipMonitorDock;
174 Monitor *m_clipMonitor;
176 QDockWidget *m_projectMonitorDock;
177 Monitor *m_projectMonitor;
179 QDockWidget *m_recMonitorDock;
180 RecMonitor *m_recMonitor;
182 QDockWidget *m_vectorscopeDock;
183 Vectorscope *m_vectorscope;
185 QDockWidget *m_waveformDock;
186 Waveform *m_waveform;
188 QDockWidget *m_RGBParadeDock;
189 RGBParade *m_RGBParade;
191 QDockWidget *m_histogramDock;
192 Histogram *m_histogram;
194 QDockWidget *m_audiosignalDock;
195 AudioSignal *m_audiosignal;
197 QDockWidget *m_audioSpectrumDock;
198 AudioSpectrum *m_audioSpectrum;
200 QDockWidget *m_spectrogramDock;
201 Spectrogram *m_spectrogram;
203 QDockWidget *m_undoViewDock;
204 QUndoView *m_undoView;
205 QUndoGroup *m_commandStack;
207 KComboBox *m_timecodeFormat;
209 /** This list holds all the scopes used in Kdenlive, allowing to manage some global settings */
210 QList <QDockWidget *> m_gfxScopesList;
212 KActionCategory *m_effectActions;
213 QMenu *m_effectsMenu;
214 QMenu *m_transitionsMenu;
215 QMenu *m_timelineContextMenu;
216 QMenu *m_timelineContextClipMenu;
217 QMenu *m_timelineContextTransitionMenu;
220 /** Actions used in the stopmotion widget */
221 KActionCategory *m_stopmotion_actions;
223 /** Action names that can be used in the slotDoAction() slot, with their i18n() names */
224 QStringList m_action_names;
227 /** @brief Shortcut to remove the focus from any element.
229 * It allows to get out of e.g. text input fields and to press another
231 QShortcut* m_shortcutRemoveFocus;
233 RenderWidget *m_renderWidget;
235 #ifdef USE_JOGSHUTTLE
236 JogShuttle *m_jogProcess;
237 JogShuttleAction* m_jogShuttle;
240 KRecentFilesAction *m_fileOpenRecent;
241 KAction *m_fileRevert;
242 KAction *m_projectSearch;
243 KAction *m_projectSearchNext;
245 KAction **m_videoEffects;
246 KAction **m_audioEffects;
247 KAction **m_customEffects;
248 KAction **m_transitions;
249 KAction *m_buttonAudioThumbs;
250 KAction *m_buttonVideoThumbs;
251 KAction *m_buttonShowMarkers;
252 KAction *m_buttonFitZoom;
253 KAction *m_buttonAutomaticSplitAudio;
254 KAction *m_normalEditTool;
255 KAction *m_overwriteEditTool;
256 KAction *m_insertEditTool;
257 KAction *m_buttonSelectTool;
258 KAction *m_buttonRazorTool;
259 KAction *m_buttonSpacerTool;
260 KAction *m_buttonSnap;
261 KAction *m_saveAction;
262 KAction *m_closeAction;
263 QSlider *m_zoomSlider;
269 KSelectAction *m_loadLayout;
270 StatusBarMessageLabel *m_messageLabel;
271 QActionGroup *m_clipTypeGroup;
272 KActionCollection *m_effectsActionCollection;
273 KActionCollection *m_tracksActionCollection;
275 bool m_findActivated;
276 QString m_findString;
281 #ifdef USE_JOGSHUTTLE
282 void activateShuttleDevice();
284 void connectDocumentInfo(KdenliveDoc *doc);
286 void doOpenFile(const KUrl &url, KAutoSaveFile *stale);
287 void recoverFiles(QList<KAutoSaveFile *> staleFiles, const KUrl &originUrl);
289 /** @brief Loads static and dynamic plugins.
291 * It scans static plugins as well as the filesystem: it doesn't load more
292 * than one plugin per file name, to avoid duplication due to conflicting
295 void populateMenus(QObject *plugin);
296 void addToMenu(QObject *plugin, const QStringList &texts,
297 QMenu *menu, const char *member,
298 QActionGroup *actionGroup);
301 /** @brief Instantiates a "Get Hot New Stuff" dialog.
302 * @param configFile configuration file for KNewStuff
303 * @return number of installed items */
304 int getNewStuff(const QString &configFile = QString());
305 QStringList m_pluginFileNames;
306 QByteArray m_timelineState;
307 void loadTranscoders();
308 void loadClipActions();
309 QPixmap createSchemePreviewIcon(const KSharedConfigPtr &config);
311 /** @brief Checks that the Kdenlive mime type is correctly installed.
312 * @param open If set to true, this will return the mimetype allowed for file opening (adds .tar.gz format)
313 * @return The mimetype */
314 QString getMimeType(bool open = true);
316 /** @brief Populates the "load layout" menu. */
319 StopmotionWidget *m_stopmotion;
321 /** @brief The last selected clip in timeline. */
322 ClipItem *m_mainClip;
323 /** @brief Update statusbar stylesheet (in case of color theme change). */
324 void setStatusBarStyleSheet(const QPalette &p);
327 /** @brief Prepares opening @param url.
329 * Checks if already open and whether backup exists */
330 void openFile(const KUrl &url);
331 void slotGotProgressInfo(const QString &message, int progress);
332 void slotReloadEffects();
333 Q_SCRIPTABLE void setRenderingProgress(const QString &url, int progress);
334 Q_SCRIPTABLE void setRenderingFinished(const QString &url, int status, const QString &error);
338 void newFile(bool showProjectSettings = true, bool force = false);
339 void activateDocument();
340 void connectDocument(TrackView*, KdenliveDoc*);
342 /** @brief Shows file open dialog. */
346 /** @brief Checks whether a URL is available to save to.
347 * @return Whether the file was saved. */
350 /** @brief Shows a save file dialog for saving the project.
351 * @return Whether the file was saved. */
354 /** @brief Set properties to match outputFileName and save the document.
355 * @param outputFileName The URL to save to / The document's URL.
356 * @return Whether we had success. */
357 bool saveFileAs(const QString &outputFileName);
359 /** @brief Shows the shortcut dialog. */
361 void slotPreferences(int page = -1, int option = -1);
363 /** @brief Reflects setting changes to the GUI. */
364 void updateConfiguration();
365 void slotConnectMonitors();
366 void slotUpdateClip(const QString &id);
367 void slotUpdateMousePosition(int pos);
368 void slotAddEffect(const QDomElement effect);
369 void slotEditProfiles();
370 void slotDetectAudioDriver();
371 void slotEditProjectSettings();
372 /** @brief Change current document MLT profile. */
373 void slotUpdateProjectProfile(const QString &profile);
374 void slotDisplayActionMessage(QAction *a);
376 /** @brief Turns automatic splitting of audio and video on/off. */
377 void slotSwitchSplitAudio();
378 void slotSwitchVideoThumbs();
379 void slotSwitchAudioThumbs();
380 void slotSwitchMarkersComments();
381 void slotSwitchSnap();
382 void slotRenderProject();
383 void slotFullScreen();
384 void slotUpdateDocumentState(bool modified);
386 /** @brief Sets the timeline zoom slider to @param value.
388 * Also disables zoomIn and zoomOut actions if they cannot be used at the moment. */
389 void slotSetZoom(int value);
390 /** @brief Decreases the timeline zoom level by 1. */
392 /** @brief Increases the timeline zoom level by 1. */
394 /** @brief Makes the timeline zoom level fit the timeline content. */
396 /** @brief Updates the zoom slider tooltip to fit @param zoomlevel. */
397 void slotUpdateZoomSliderToolTip(int zoomlevel);
399 /** @brief Displays the zoom slider tooltip.
400 * @param zoomlevel (optional) The zoom level to show in the tooltip.
402 * Adopted from Dolphin (src/statusbar/dolphinstatusbar.cpp) */
403 void slotShowZoomSliderToolTip(int zoomlevel = -1);
404 /** @brief Close currently opened document. Returns false if something went wrong (cannot save modifications, ...). */
405 bool closeCurrentDocument(bool saveChanges = true);
406 /** @brief Deletes item in timeline, project tree or effect stack depending on focus. */
407 void slotDeleteItem();
408 void slotAddClipMarker();
409 void slotDeleteClipMarker();
410 void slotDeleteAllClipMarkers();
411 void slotEditClipMarker();
413 /** @brief Adds marker or auide at the current position without showing the marker dialog.
415 * Adds a marker if clip monitor is active, otherwise a guide.
416 * The comment is set to the current position (therefore not dialog).
417 * This can be useful to mark something during playback. */
418 void slotAddMarkerGuideQuickly();
419 void slotCutTimelineClip();
420 void slotInsertClipOverwrite();
421 void slotSelectTimelineClip();
422 void slotSelectTimelineTransition();
423 void slotDeselectTimelineClip();
424 void slotDeselectTimelineTransition();
425 void slotSelectAddTimelineClip();
426 void slotSelectAddTimelineTransition();
427 void slotAddVideoEffect(QAction *result);
428 void slotAddTransition(QAction *result);
429 void slotAddProjectClip(KUrl url, stringMap data = stringMap());
430 void slotAddProjectClipList(KUrl::List urls);
431 void slotShowClipProperties(DocClipBase *clip);
432 void slotShowClipProperties(QList <DocClipBase *>cliplist, QMap<QString, QString> commonproperties);
433 void slotTimelineClipSelected(ClipItem* item, bool raise = true);
434 void slotTrackSelected(int index, TrackInfo info, bool raise = true);
435 void slotActivateTransitionView(Transition *);
436 void slotChangeTool(QAction * action);
437 void slotChangeEdit(QAction * action);
438 void slotSetTool(PROJECTTOOL tool);
439 void slotSnapForward();
440 void slotSnapRewind();
441 void slotClipStart();
443 void slotZoneStart();
448 void slotSelectClipInTimeline();
449 void slotClipInTimeline(const QString &clipId);
451 void slotInsertSpace();
452 void slotRemoveSpace();
454 void slotEditGuide();
455 void slotDeleteGuide();
456 void slotDeleteAllGuides();
457 void slotGuidesUpdated();
461 void slotPasteEffects();
463 void slotAdjustClipMonitor();
464 void slotAdjustProjectMonitor();
465 void slotSaveZone(Render *render, QPoint zone, DocClipBase *baseClip = NULL, KUrl path = KUrl());
467 void slotSetInPoint();
468 void slotSetOutPoint();
469 void slotResizeItemStart();
470 void slotResizeItemEnd();
471 void configureNotifications();
472 void slotInsertTrack(int ix = -1);
473 void slotDeleteTrack(int ix = -1);
474 /** @brief Shows the configure tracks dialog and updates transitions afterwards. */
475 void slotConfigTrack(int ix = -1);
476 /** @brief Select all clips in active track. */
477 void slotSelectTrack();
478 /** @brief Select all clips in timeline. */
479 void slotSelectAllTracks();
480 void slotGetNewLumaStuff();
481 void slotGetNewTitleStuff();
482 void slotGetNewRenderStuff();
483 void slotGetNewMltProfileStuff();
484 void slotAutoTransition();
485 void slotRunWizard();
486 /** @brief Lets the sampleplugin create a generator. */
488 void slotZoneMoved(int start, int end);
489 void slotDvdWizard(const QString &url = QString(), const QString &profile = "dv_pal");
490 void slotGroupClips();
491 void slotUnGroupClips();
492 void slotEditItemDuration();
493 void slotClipInProjectTree();
494 //void slotClipToProjectTree();
495 void slotSplitAudio();
496 void slotSetAudioAlignReference();
497 void slotAlignAudio();
498 void slotUpdateClipType(QAction *action);
499 void slotShowTimeline(bool show);
500 void slotMaximizeCurrent(bool show);
501 void slotTranscode(KUrl::List urls = KUrl::List());
502 void slotStartClipAction();
503 void slotTranscodeClip();
504 /** @brief Archive project: creates a copy of the project file with all clips in a new folder. */
505 void slotArchiveProject();
506 void slotSetDocumentRenderProfile(QMap <QString, QString> props);
507 void slotPrepareRendering(bool scriptExport, bool zoneOnly, const QString &chapterFile);
509 /** @brief Switches between displaying frames or timecode.
510 * @param ix 0 = display timecode, 1 = display frames. */
511 void slotUpdateTimecodeFormat(int ix);
513 /** @brief Removes the focus of anything. */
514 void slotRemoveFocus();
515 void slotCleanProject();
516 void slotUpdateClipMarkers(DocClipBase *clip);
519 void slotUpdateTrackInfo();
521 /** @brief Changes the color scheme. */
522 void slotChangePalette(QAction *action, const QString &themename = QString());
523 void slotSwitchMonitors();
524 void slotCheckRenderStatus();
525 void slotInsertZoneToTree();
526 void slotInsertZoneToTimeline();
528 /** @brief Deletes items from timeline and document.
529 * @param ids The ids of the clips to delete.
530 * @param folderids The names and ids of the folders to delete. */
531 void slotDeleteProjectClips(QStringList ids, QMap<QString, QString> folderids);
532 void slotShowTitleBars(bool show);
533 void slotSwitchTitles();
534 /** @brief Update the capture folder if user asked a change. */
535 void slotUpdateCaptureFolder();
537 /** @brief Apply new properties to a clip */
538 void slotApplyNewClipProperties(const QString id, QMap <QString, QString> props, QMap <QString, QString> newprops, bool refresh, bool reload);
540 /** @brief Delete a clip from current project */
541 void slotDeleteClip(const QString &id);
543 /** @brief Saves the widgets layout */
544 void slotSaveLayout(QAction*);
545 void slotLoadLayout(QAction*);
547 /** @brief The monitor informs that it needs (or not) to have frames sent by the renderer. */
548 void slotMonitorRequestRenderFrame(bool request);
549 /** @brief Open the stopmotion dialog. */
550 void slotOpenStopmotion();
551 /** @brief Implements all the actions that are int he ActionsCollection. */
552 void slotDoAction(const QString& action_name);
553 /** @brief Update project because the use of proxy clips was enabled / disabled. */
554 void slotUpdateProxySettings();
555 /** @brief Insert current project's timecode into the notes widget. */
556 void slotInsertNotesTimecode();
557 /** @brief Open the project's backupdialog. */
558 void slotOpenBackupDialog(const KUrl url = KUrl());
559 /** @brief Disable proxies for this project. */
560 void slotDisableProxies();
562 void slotElapsedTime();
563 /** @brief Open the online services search dialog. */
564 void slotDownloadResources();
566 void slotChangePalette();
567 /** @brief Save current timeline clip as mlt playlist. */
568 void slotSaveTimelineClip();
569 /** @brief Process keyframe data sent from a clip to effect / transition stack. */
570 void slotProcessImportKeyframes(GRAPHICSRECTITEM type, const QString& data);
571 /** @brief Move playhead to mouse curser position if defined key is pressed */
572 void slotAlignPlayheadToMousePos();
575 Q_SCRIPTABLE void abortRenderJob(const QString &url);