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>
31 #include <KXmlGuiWindow>
33 #include <KListWidget>
36 #include <KRecentFilesAction>
38 #include <kautosavefile.h>
40 #include "effectslist.h"
42 #include "definitions.h"
43 #include "statusbarmessagelabel.h"
44 #include "dvdwizard.h"
50 class EffectsListView;
51 class EffectStackView;
52 class TransitionSettings;
55 class CustomTrackView;
59 #endif /* NO_JOGSHUTTLE */
64 class MainWindow : public KXmlGuiWindow
67 Q_CLASSINFO("D-Bus Interface", "org.kdenlive.MainWindow")
71 * \param MltPath path to MLT environment
72 * \param Url Url to open
73 * \param parent Std. widget parent
75 * The constructor inits the main window. If Url is present, it will be opened.
76 * If Url is not present, and openLastproject is set, last project will be set
77 * If no file is open after trying this, a default "newfile" will be created. */
78 explicit MainWindow(const QString &MltPath = QString(), const KUrl & Url = KUrl(), QWidget *parent = 0);
79 void parseProfiles(const QString &mltPath = QString());
81 static EffectsList videoEffects;
82 static EffectsList audioEffects;
83 static EffectsList customEffects;
84 static EffectsList transitions;
86 virtual bool queryClose();
87 virtual void customEvent(QEvent * e);
88 virtual void keyPressEvent(QKeyEvent *ke);
89 /** Override hideEvent to get events when the mainwindow gets hidden */
90 virtual void hideEvent(QHideEvent *e);
91 bool eventFilter(QObject *obj, QEvent *ev);
93 * This function is called when it is time for the app to save its
94 * properties for session management purposes.
96 void saveProperties(KConfig *);
99 * This function is called when this app is restored. The KConfig
100 * object points to the session management config file that was saved
101 * with @ref saveProperties
103 void readProperties(KConfig *);
106 KTabWidget* m_timelineArea;
107 QProgressBar *m_statusProgressBar;
109 KdenliveDoc *m_activeDocument;
110 TrackView *m_activeTimeline;
111 MonitorManager *m_monitorManager;
113 QDockWidget *m_projectListDock;
114 ProjectList *m_projectList;
116 QDockWidget *m_effectListDock;
117 EffectsListView *m_effectList;
118 //KListWidget *m_effectList;
120 QDockWidget *m_effectStackDock;
121 EffectStackView *m_effectStack;
123 QDockWidget *m_transitionConfigDock;
124 TransitionSettings *m_transitionConfig;
126 QDockWidget *m_clipMonitorDock;
127 Monitor *m_clipMonitor;
129 QDockWidget *m_projectMonitorDock;
130 Monitor *m_projectMonitor;
132 QDockWidget *m_recMonitorDock;
133 RecMonitor *m_recMonitor;
135 QDockWidget *m_undoViewDock;
136 QUndoView *m_undoView;
137 QUndoGroup *m_commandStack;
139 KComboBox *m_timecodeFormat;
141 QMenu *m_customEffectsMenu;
142 QMenu *m_timelineContextMenu;
143 QMenu *m_timelineContextClipMenu;
144 QMenu *m_timelineContextTransitionMenu;
146 RenderWidget *m_renderWidget;
148 #ifndef NO_JOGSHUTTLE
149 JogShuttle *m_jogProcess;
150 #endif /* NO_JOGSHUTTLE */
152 KRecentFilesAction *m_fileOpenRecent;
153 KAction *m_projectSearch;
154 KAction *m_projectSearchNext;
156 KAction *m_buttonAudioThumbs;
157 KAction *m_buttonVideoThumbs;
158 KAction *m_buttonShowMarkers;
159 KAction *m_buttonFitZoom;
160 KAction *m_buttonSelectTool;
161 KAction *m_buttonRazorTool;
162 KAction *m_buttonSpacerTool;
163 KAction *m_buttonSnap;
164 QActionGroup *m_toolGroup;
165 KAction *m_saveAction;
166 KAction *m_closeAction;
167 QSlider *m_zoomSlider;
170 StatusBarMessageLabel *m_messageLabel;
171 QActionGroup *m_clipTypeGroup;
173 bool m_findActivated;
174 QString m_findString;
179 #ifndef NO_JOGSHUTTLE
180 void activateShuttleDevice();
181 void slotShuttleAction(int code);
182 #endif /* NO_JOGSHUTTLE */
183 void connectDocumentInfo(KdenliveDoc *doc);
185 void doOpenFile(const KUrl &url, KAutoSaveFile *stale);
186 void recoverFiles(QList<KAutoSaveFile *> staleFiles);
188 void populateMenus(QObject *plugin);
189 void addToMenu(QObject *plugin, const QStringList &texts,
190 QMenu *menu, const char *member,
191 QActionGroup *actionGroup);
193 QStringList m_pluginFileNames;
194 QByteArray m_timelineState;
197 void openFile(const KUrl &url);
198 void slotGotProgressInfo(const QString &message, int progress);
199 Q_SCRIPTABLE void setRenderingProgress(const QString &url, int progress);
200 Q_SCRIPTABLE void setRenderingFinished(const QString &url, int status, const QString &error);
203 void newFile(bool showProjectSettings = true);
205 void activateDocument();
206 void connectDocument(TrackView*, KdenliveDoc*);
211 bool saveFileAs(const QString &outputFileName);
212 void slotPreferences(int page = -1, int option = -1);
213 void updateConfiguration();
214 void slotConnectMonitors();
215 void slotRaiseMonitor(bool clipMonitor);
216 void slotUpdateClip(const QString &id);
217 void slotUpdateMousePosition(int pos);
218 void slotAddEffect(QDomElement effect, GenTime pos = GenTime(), int track = -1);
219 void slotEditProfiles();
220 void slotEditProjectSettings();
221 void slotDisplayActionMessage(QAction *a);
222 void slotSwitchVideoThumbs();
223 void slotSwitchAudioThumbs();
224 void slotSwitchMarkersComments();
225 void slotSwitchSnap();
226 void slotRenderProject();
227 void slotDoRender(const QString &dest, const QString &render, const QStringList &overlay_args, const QStringList &avformat_args, bool zoneOnly, bool playAfter, double guideStart, double guideEnd, bool resizeProfile, const QString &scriptExport);
228 void slotFullScreen();
229 void slotUpdateDocumentState(bool modified);
233 void closeCurrentDocument();
234 void slotDeleteTimelineClip();
235 void slotAddClipMarker();
236 void slotDeleteClipMarker();
237 void slotDeleteAllClipMarkers();
238 void slotEditClipMarker();
239 void slotCutTimelineClip();
240 void slotAddVideoEffect(QAction *result);
241 void slotAddAudioEffect(QAction *result);
242 void slotAddCustomEffect(QAction *result);
243 void slotAddTransition(QAction *result);
244 void slotAddProjectClip(KUrl url);
245 #ifndef NO_JOGSHUTTLE
246 void slotShuttleButton(int code);
247 #endif /* NO_JOGSHUTTLE */
248 void slotShowClipProperties(DocClipBase *clip);
249 void slotActivateEffectStackView();
250 void slotActivateTransitionView(Transition *);
251 void slotChangeTool(QAction * action);
252 void slotSetTool(PROJECTTOOL tool);
253 void slotSnapForward();
254 void slotSnapRewind();
255 void slotClipStart();
261 void slotInsertSpace();
262 void slotRemoveSpace();
264 void slotEditGuide();
265 void slotDeleteGuide();
266 void slotDeleteAllGuides();
267 void slotGuidesUpdated();
271 void slotPasteEffects();
272 void slotReloadEffects();
273 void slotChangeClipSpeed();
275 void slotAdjustClipMonitor();
276 void slotAdjustProjectMonitor();
277 void slotSaveZone(Render *render, QPoint zone);
279 void slotSetInPoint();
280 void slotSetOutPoint();
281 void configureNotifications();
282 void slotInsertTrack(int ix = 0);
283 void slotDeleteTrack(int ix = 0);
284 void slotChangeTrack(int ix = 0);
285 void slotGetNewLumaStuff();
286 void slotGetNewRenderStuff();
287 void slotGetNewMltProfileStuff();
288 void slotAutoTransition();
289 void slotRunWizard();
291 void slotZoneMoved(int start, int end);
292 void slotUpdatePreviewSettings();
293 void slotDvdWizard(const QString &url = QString(), const QString &profile = "dv_pal");
294 void slotGroupClips();
295 void slotUnGroupClips();
296 void slotSplitAudio();
297 void slotUpdateClipType(QAction *action);
298 void slotShowTimeline(bool show);
299 void slotMaximizeCurrent(bool show);
302 Q_SCRIPTABLE void abortRenderJob(const QString &url);