]> git.sesse.net Git - kdenlive/blob - src/mainwindow.cpp
fa3a8346e7479420bfba344f6690b3d6eac0fdf3
[kdenlive] / src / mainwindow.cpp
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 #include "mainwindow.h"
22 #include "mainwindowadaptor.h"
23 #include "kdenlivesettings.h"
24 #include "kdenlivesettingsdialog.h"
25 #include "initeffects.h"
26 #include "profilesdialog.h"
27 #include "projectsettings.h"
28 #include "events.h"
29 #include "clipmanager.h"
30 #include "projectlist.h"
31 #include "monitor.h"
32 #include "recmonitor.h"
33 #include "monitormanager.h"
34 #include "kdenlivedoc.h"
35 #include "trackview.h"
36 #include "customtrackview.h"
37 #include "effectslistview.h"
38 #include "effectstackview.h"
39 #include "transitionsettings.h"
40 #include "renderwidget.h"
41 #include "renderer.h"
42 #ifndef NO_JOGSHUTTLE
43 #include "jogshuttle.h"
44 #endif /* NO_JOGSHUTTLE */
45 #include "clipproperties.h"
46 #include "wizard.h"
47 #include "editclipcommand.h"
48 #include "titlewidget.h"
49 #include "markerdialog.h"
50 #include "clipitem.h"
51 #include "interfaces.h"
52 #include "kdenlive-config.h"
53 #include "cliptranscode.h"
54 #include "ui_templateclip_ui.h"
55
56 #include <KApplication>
57 #include <KAction>
58 #include <KLocale>
59 #include <KGlobal>
60 #include <KActionCollection>
61 #include <KStandardAction>
62 #include <KFileDialog>
63 #include <KMessageBox>
64 #include <KDebug>
65 #include <KIO/NetAccess>
66 #include <KSaveFile>
67 #include <KRuler>
68 #include <KConfigDialog>
69 #include <KXMLGUIFactory>
70 #include <KStatusBar>
71 #include <kstandarddirs.h>
72 #include <KUrlRequesterDialog>
73 #include <KTemporaryFile>
74 #include <KProcess>
75 #include <KActionMenu>
76 #include <KMenu>
77 #include <locale.h>
78 #include <ktogglefullscreenaction.h>
79 #include <KFileItem>
80 #include <KNotification>
81 #include <KNotifyConfigWidget>
82 #if KDE_IS_VERSION(4,3,80)
83 #include <knewstuff3/downloaddialog.h>
84 #include <knewstuff3/knewstuffaction.h>
85 #else
86 #include <knewstuff2/engine.h>
87 #include <knewstuff2/ui/knewstuffaction.h>
88 #define KNS3 KNS
89 #endif /* KDE_IS_VERSION(4,3,80) */
90 #include <KToolBar>
91 #include <KColorScheme>
92
93 #include <QTextStream>
94 #include <QTimer>
95 #include <QAction>
96 #include <QKeyEvent>
97 #include <QInputDialog>
98 #include <QDesktopWidget>
99 #include <QBitmap>
100
101 #include <stdlib.h>
102
103 static const char version[] = VERSION;
104
105 static const int ID_TIMELINE_POS = 0;
106
107 namespace Mlt
108 {
109 class Producer;
110 };
111
112 EffectsList MainWindow::videoEffects;
113 EffectsList MainWindow::audioEffects;
114 EffectsList MainWindow::customEffects;
115 EffectsList MainWindow::transitions;
116
117 MainWindow::MainWindow(const QString &MltPath, const KUrl & Url, QWidget *parent) :
118         KXmlGuiWindow(parent),
119         m_activeDocument(NULL),
120         m_activeTimeline(NULL),
121         m_renderWidget(NULL),
122 #ifndef NO_JOGSHUTTLE
123         m_jogProcess(NULL),
124 #endif /* NO_JOGSHUTTLE */
125         m_findActivated(false)
126 {
127
128     // Create DBus interface
129     new MainWindowAdaptor(this);
130     QDBusConnection dbus = QDBusConnection::sessionBus();
131     dbus.registerObject("/MainWindow", this);
132
133     setlocale(LC_NUMERIC, "POSIX");
134     if (!KdenliveSettings::colortheme().isEmpty()) slotChangePalette(NULL, KdenliveSettings::colortheme());
135     setFont(KGlobalSettings::toolBarFont());
136     parseProfiles(MltPath);
137     m_commandStack = new QUndoGroup;
138     m_timelineArea = new KTabWidget(this);
139     m_timelineArea->setTabReorderingEnabled(true);
140     m_timelineArea->setTabBarHidden(true);
141
142     QToolButton *closeTabButton = new QToolButton;
143     connect(closeTabButton, SIGNAL(clicked()), this, SLOT(closeCurrentDocument()));
144     closeTabButton->setIcon(KIcon("tab-close"));
145     closeTabButton->adjustSize();
146     closeTabButton->setToolTip(i18n("Close the current tab"));
147     m_timelineArea->setCornerWidget(closeTabButton);
148     connect(m_timelineArea, SIGNAL(currentChanged(int)), this, SLOT(activateDocument()));
149
150     connect(&m_findTimer, SIGNAL(timeout()), this, SLOT(findTimeout()));
151     m_findTimer.setSingleShot(true);
152
153     // FIXME: the next call returns a newly allocated object, which leaks
154     initEffects::parseEffectFiles();
155     //initEffects::parseCustomEffectsFile();
156
157     m_monitorManager = new MonitorManager();
158
159     m_projectListDock = new QDockWidget(i18n("Project Tree"), this);
160     m_projectListDock->setObjectName("project_tree");
161     m_projectList = new ProjectList(this);
162     m_projectListDock->setWidget(m_projectList);
163     addDockWidget(Qt::TopDockWidgetArea, m_projectListDock);
164
165     m_shortcutRemoveFocus = new QShortcut(QKeySequence("Esc"), this);
166     connect(m_shortcutRemoveFocus, SIGNAL(activated()), this, SLOT(slotRemoveFocus()));
167
168     m_effectListDock = new QDockWidget(i18n("Effect List"), this);
169     m_effectListDock->setObjectName("effect_list");
170     m_effectList = new EffectsListView();
171
172     //m_effectList = new KListWidget(this);
173     m_effectListDock->setWidget(m_effectList);
174     addDockWidget(Qt::TopDockWidgetArea, m_effectListDock);
175
176     m_effectStackDock = new QDockWidget(i18n("Effect Stack"), this);
177     m_effectStackDock->setObjectName("effect_stack");
178     m_effectStack = new EffectStackView(this);
179     m_effectStackDock->setWidget(m_effectStack);
180     addDockWidget(Qt::TopDockWidgetArea, m_effectStackDock);
181
182     m_transitionConfigDock = new QDockWidget(i18n("Transition"), this);
183     m_transitionConfigDock->setObjectName("transition");
184     m_transitionConfig = new TransitionSettings(this);
185     m_transitionConfigDock->setWidget(m_transitionConfig);
186     addDockWidget(Qt::TopDockWidgetArea, m_transitionConfigDock);
187
188     KdenliveSettings::setCurrent_profile(KdenliveSettings::default_profile());
189     m_fileOpenRecent = KStandardAction::openRecent(this, SLOT(openFile(const KUrl &)), actionCollection());
190     readOptions();
191     m_fileRevert = KStandardAction::revert(this, SLOT(slotRevert()), actionCollection());
192     m_fileRevert->setEnabled(false);
193
194     //slotDetectAudioDriver();
195
196     m_clipMonitorDock = new QDockWidget(i18n("Clip Monitor"), this);
197     m_clipMonitorDock->setObjectName("clip_monitor");
198     m_clipMonitor = new Monitor("clip", m_monitorManager, QString(), this);
199     m_clipMonitorDock->setWidget(m_clipMonitor);
200     addDockWidget(Qt::TopDockWidgetArea, m_clipMonitorDock);
201     //m_clipMonitor->stop();
202
203     m_projectMonitorDock = new QDockWidget(i18n("Project Monitor"), this);
204     m_projectMonitorDock->setObjectName("project_monitor");
205     m_projectMonitor = new Monitor("project", m_monitorManager, QString(), this);
206     m_projectMonitorDock->setWidget(m_projectMonitor);
207     addDockWidget(Qt::TopDockWidgetArea, m_projectMonitorDock);
208
209 #ifndef Q_WS_MAC
210     m_recMonitorDock = new QDockWidget(i18n("Record Monitor"), this);
211     m_recMonitorDock->setObjectName("record_monitor");
212     m_recMonitor = new RecMonitor("record", this);
213     m_recMonitorDock->setWidget(m_recMonitor);
214     addDockWidget(Qt::TopDockWidgetArea, m_recMonitorDock);
215
216     connect(m_recMonitor, SIGNAL(addProjectClip(KUrl)), this, SLOT(slotAddProjectClip(KUrl)));
217     connect(m_recMonitor, SIGNAL(showConfigDialog(int, int)), this, SLOT(slotPreferences(int, int)));
218 #endif
219
220     m_undoViewDock = new QDockWidget(i18n("Undo History"), this);
221     m_undoViewDock->setObjectName("undo_history");
222     m_undoView = new QUndoView(this);
223     m_undoView->setCleanIcon(KIcon("edit-clear"));
224     m_undoView->setEmptyLabel(i18n("Clean"));
225     m_undoViewDock->setWidget(m_undoView);
226     m_undoView->setGroup(m_commandStack);
227     addDockWidget(Qt::TopDockWidgetArea, m_undoViewDock);
228
229     //overviewDock = new QDockWidget(i18n("Project Overview"), this);
230     //overviewDock->setObjectName("project_overview");
231     //m_overView = new CustomTrackView(NULL, NULL, this);
232     //overviewDock->setWidget(m_overView);
233     //addDockWidget(Qt::TopDockWidgetArea, overviewDock);
234
235     setupActions();
236     //tabifyDockWidget(projectListDock, effectListDock);
237     tabifyDockWidget(m_projectListDock, m_effectStackDock);
238     tabifyDockWidget(m_projectListDock, m_transitionConfigDock);
239     //tabifyDockWidget(projectListDock, undoViewDock);
240
241
242     tabifyDockWidget(m_clipMonitorDock, m_projectMonitorDock);
243 #ifndef Q_WS_MAC
244     tabifyDockWidget(m_clipMonitorDock, m_recMonitorDock);
245 #endif
246     setCentralWidget(m_timelineArea);
247     setupGUI();
248
249     // Find QDockWidget tab bars and show / hide widget title bars on right click
250     QList <QTabBar *> tabs = findChildren<QTabBar *>();
251     for (int i = 0; i < tabs.count(); i++) {
252         tabs.at(i)->setContextMenuPolicy(Qt::CustomContextMenu);
253         connect(tabs.at(i), SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(slotSwitchTitles()));
254     }
255
256     /*ScriptingPart* sp = new ScriptingPart(this, QStringList());
257     guiFactory()->addClient(sp);*/
258
259     loadPlugins();
260     loadTranscoders();
261     //kDebug() << factory() << " " << factory()->container("video_effects_menu", this);
262
263     m_projectMonitor->setupMenu(static_cast<QMenu*>(factory()->container("monitor_go", this)), m_playZone, m_loopZone);
264     m_clipMonitor->setupMenu(static_cast<QMenu*>(factory()->container("monitor_go", this)), m_playZone, m_loopZone, static_cast<QMenu*>(factory()->container("marker_menu", this)));
265     m_projectList->setupGeneratorMenu(static_cast<QMenu*>(factory()->container("generators", this)), static_cast<QMenu*>(factory()->container("transcoders", this)));
266
267     QAction *action;
268     // build themes menus
269     QMenu *themesMenu = static_cast<QMenu*>(factory()->container("themes_menu", this));
270     QActionGroup *themegroup = new QActionGroup(this);
271     themegroup->setExclusive(true);
272     action = new QAction(i18n("Default"), this);
273     action->setCheckable(true);
274     themegroup->addAction(action);
275     if (KdenliveSettings::colortheme().isEmpty()) action->setChecked(true);
276
277
278     const QStringList schemeFiles = KGlobal::dirs()->findAllResources("data", "color-schemes/*.colors", KStandardDirs::NoDuplicates);
279
280     for (int i = 0; i < schemeFiles.size(); ++i) {
281         // get the file name
282         const QString filename = schemeFiles.at(i);
283         const QFileInfo info(filename);
284
285         // add the entry
286         KSharedConfigPtr config = KSharedConfig::openConfig(filename);
287         QIcon icon = createSchemePreviewIcon(config);
288         KConfigGroup group(config, "General");
289         const QString name = group.readEntry("Name", info.baseName());
290         action = new QAction(name, this);
291         action->setData(filename);
292         action->setIcon(icon);
293         action->setCheckable(true);
294         themegroup->addAction(action);
295         if (KdenliveSettings::colortheme() == filename) action->setChecked(true);
296     }
297
298
299
300
301
302
303     /*KGlobal::dirs()->addResourceDir("themes", KStandardDirs::installPath("data") + QString("kdenlive/themes"));
304     QStringList themes = KGlobal::dirs()->findAllResources("themes", QString(), KStandardDirs::Recursive | KStandardDirs::NoDuplicates);
305     for (QStringList::const_iterator it = themes.constBegin(); it != themes.constEnd(); ++it)
306     {
307     QFileInfo fi(*it);
308         action = new QAction(fi.fileName(), this);
309         action->setData(*it);
310     action->setCheckable(true);
311     themegroup->addAction(action);
312     if (KdenliveSettings::colortheme() == *it) action->setChecked(true);
313     }*/
314     themesMenu->addActions(themegroup->actions());
315     connect(themesMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotChangePalette(QAction*)));
316
317     // build effects menus
318     QMenu *videoEffectsMenu = static_cast<QMenu*>(factory()->container("video_effects_menu", this));
319
320     QStringList effectInfo;
321     QMap<QString, QStringList> effectsList;
322     for (int ix = 0; ix < videoEffects.count(); ix++) {
323         effectInfo = videoEffects.effectIdInfo(ix);
324         effectsList.insert(effectInfo.at(0).toLower(), effectInfo);
325     }
326
327     foreach(const QStringList &value, effectsList) {
328         action = new QAction(value.at(0), this);
329         action->setData(value);
330         videoEffectsMenu->addAction(action);
331     }
332
333     QMenu *audioEffectsMenu = static_cast<QMenu*>(factory()->container("audio_effects_menu", this));
334
335
336     effectsList.clear();
337     for (int ix = 0; ix < audioEffects.count(); ix++) {
338         effectInfo = audioEffects.effectIdInfo(ix);
339         effectsList.insert(effectInfo.at(0).toLower(), effectInfo);
340     }
341
342     foreach(const QStringList &value, effectsList) {
343         action = new QAction(value.at(0), this);
344         action->setData(value);
345         audioEffectsMenu->addAction(action);
346     }
347
348     m_customEffectsMenu = static_cast<QMenu*>(factory()->container("custom_effects_menu", this));
349
350     if (customEffects.isEmpty()) m_customEffectsMenu->setEnabled(false);
351     else m_customEffectsMenu->setEnabled(true);
352
353     effectsList.clear();
354     for (int ix = 0; ix < customEffects.count(); ix++) {
355         effectInfo = customEffects.effectIdInfo(ix);
356         effectsList.insert(effectInfo.at(0).toLower(), effectInfo);
357     }
358
359     foreach(const QStringList &value, effectsList) {
360         action = new QAction(value.at(0), this);
361         action->setData(value);
362         m_customEffectsMenu->addAction(action);
363     }
364
365     QMenu *newEffect = new QMenu(this);
366     newEffect->addMenu(videoEffectsMenu);
367     newEffect->addMenu(audioEffectsMenu);
368     newEffect->addMenu(m_customEffectsMenu);
369     m_effectStack->setMenu(newEffect);
370
371
372     QMenu *viewMenu = static_cast<QMenu*>(factory()->container("dockwindows", this));
373     const QList<QAction *> viewActions = createPopupMenu()->actions();
374     viewMenu->insertActions(NULL, viewActions);
375
376     connect(videoEffectsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddVideoEffect(QAction *)));
377     connect(audioEffectsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddAudioEffect(QAction *)));
378     connect(m_customEffectsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddCustomEffect(QAction *)));
379
380     m_timelineContextMenu = new QMenu(this);
381     m_timelineContextClipMenu = new QMenu(this);
382     m_timelineContextTransitionMenu = new QMenu(this);
383
384
385     QMenu *transitionsMenu = new QMenu(i18n("Add Transition"), this);
386     QStringList effects = transitions.effectNames();
387
388     effectsList.clear();
389     for (int ix = 0; ix < transitions.count(); ix++) {
390         effectInfo = transitions.effectIdInfo(ix);
391         effectsList.insert(effectInfo.at(0).toLower(), effectInfo);
392     }
393     foreach(const QStringList &value, effectsList) {
394         action = new QAction(value.at(0), this);
395         action->setData(value);
396         transitionsMenu->addAction(action);
397     }
398     connect(transitionsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddTransition(QAction *)));
399
400     m_timelineContextMenu->addAction(actionCollection()->action("insert_space"));
401     m_timelineContextMenu->addAction(actionCollection()->action("delete_space"));
402     m_timelineContextMenu->addAction(actionCollection()->action(KStandardAction::name(KStandardAction::Paste)));
403
404     m_timelineContextClipMenu->addAction(actionCollection()->action("edit_clip_duration"));
405     m_timelineContextClipMenu->addAction(actionCollection()->action("delete_timeline_clip"));
406     m_timelineContextClipMenu->addAction(actionCollection()->action("group_clip"));
407     m_timelineContextClipMenu->addAction(actionCollection()->action("ungroup_clip"));
408     m_timelineContextClipMenu->addAction(actionCollection()->action("cut_timeline_clip"));
409     m_timelineContextClipMenu->addAction(actionCollection()->action(KStandardAction::name(KStandardAction::Copy)));
410     m_timelineContextClipMenu->addAction(actionCollection()->action("paste_effects"));
411     m_timelineContextClipMenu->addAction(actionCollection()->action("split_audio"));
412
413     QMenu *markersMenu = (QMenu*)(factory()->container("marker_menu", this));
414     m_timelineContextClipMenu->addMenu(markersMenu);
415     m_timelineContextClipMenu->addMenu(transitionsMenu);
416     m_timelineContextClipMenu->addMenu(videoEffectsMenu);
417     m_timelineContextClipMenu->addMenu(audioEffectsMenu);
418     //TODO: re-enable custom effects menu when it is implemented
419     m_timelineContextClipMenu->addMenu(m_customEffectsMenu);
420
421     m_timelineContextTransitionMenu->addAction(actionCollection()->action("edit_clip_duration"));
422     m_timelineContextTransitionMenu->addAction(actionCollection()->action("delete_timeline_clip"));
423     m_timelineContextTransitionMenu->addAction(actionCollection()->action(KStandardAction::name(KStandardAction::Copy)));
424
425     m_timelineContextTransitionMenu->addAction(actionCollection()->action("auto_transition"));
426
427     connect(m_projectMonitorDock, SIGNAL(visibilityChanged(bool)), m_projectMonitor, SLOT(refreshMonitor(bool)));
428     connect(m_clipMonitorDock, SIGNAL(visibilityChanged(bool)), m_clipMonitor, SLOT(refreshMonitor(bool)));
429     //connect(m_monitorManager, SIGNAL(connectMonitors()), this, SLOT(slotConnectMonitors()));
430     connect(m_monitorManager, SIGNAL(raiseClipMonitor(bool)), this, SLOT(slotRaiseMonitor(bool)));
431     connect(m_effectList, SIGNAL(addEffect(const QDomElement)), this, SLOT(slotAddEffect(const QDomElement)));
432     connect(m_effectList, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
433
434     m_monitorManager->initMonitors(m_clipMonitor, m_projectMonitor);
435     slotConnectMonitors();
436
437     // Disable drop B frames, see Kdenlive issue #1330, see also kdenlivesettingsdialog.cpp
438     KdenliveSettings::setDropbframes(false);
439
440     // Open or create a file.  Command line argument passed in Url has
441     // precedence, then "openlastproject", then just a plain empty file.
442     // If opening Url fails, openlastproject will _not_ be used.
443     if (!Url.isEmpty()) {
444         // delay loading so that the window shows up
445         m_startUrl = Url;
446         QTimer::singleShot(500, this, SLOT(openFile()));
447     } else if (KdenliveSettings::openlastproject()) {
448         QTimer::singleShot(500, this, SLOT(openLastFile()));
449     } else { //if (m_timelineArea->count() == 0) {
450         newFile(false);
451     }
452
453 #ifndef NO_JOGSHUTTLE
454     activateShuttleDevice();
455 #endif /* NO_JOGSHUTTLE */
456     m_projectListDock->raise();
457 }
458
459 void MainWindow::queryQuit()
460 {
461     if (queryClose()) {
462         if (m_projectMonitor) m_projectMonitor->stop();
463         if (m_clipMonitor) m_clipMonitor->stop();
464         delete m_effectStack;
465         delete m_activeTimeline;
466 #ifndef Q_WS_MAC
467         // This sometimes causes crash on exit on OS X for some reason.
468         delete m_projectMonitor;
469         delete m_clipMonitor;
470 #endif
471         delete m_activeDocument;
472         delete m_shortcutRemoveFocus;
473         Mlt::Factory::close();
474         kapp->quit();
475     }
476 }
477
478 //virtual
479 bool MainWindow::queryClose()
480 {
481     if (m_renderWidget) {
482         int waitingJobs = m_renderWidget->waitingJobsCount();
483         if (waitingJobs > 0) {
484             switch (KMessageBox::warningYesNoCancel(this, i18np("You have 1 rendering job waiting in the queue.\nWhat do you want to do with this job?", "You have %1 rendering jobs waiting in the queue.\nWhat do you want to do with these jobs?", waitingJobs), QString(), KGuiItem(i18n("Start them now")), KGuiItem(i18n("Delete them")))) {
485             case KMessageBox::Yes :
486                 // create script with waiting jobs and start it
487                 if (m_renderWidget->startWaitingRenderJobs() == false) return false;
488                 break;
489             case KMessageBox::No :
490                 // Don't do anything, jobs will be deleted
491                 break;
492             default:
493                 return false;
494             }
495         }
496     }
497     saveOptions();
498     if (m_monitorManager) m_monitorManager->stopActiveMonitor();
499     if (m_activeDocument && m_activeDocument->isModified()) {
500         switch (KMessageBox::warningYesNoCancel(this, i18n("Save changes to document?"))) {
501         case KMessageBox::Yes :
502             // save document here. If saving fails, return false;
503             return saveFile();
504         case KMessageBox::No :
505             // User does not want to save the changes, clear recovery files
506             m_activeDocument->m_autosave->resize(0);
507             return true;
508         default: // cancel
509             return false;
510         }
511     }
512     return true;
513 }
514
515
516 void MainWindow::loadPlugins()
517 {
518     foreach(QObject *plugin, QPluginLoader::staticInstances())
519     populateMenus(plugin);
520
521     QStringList directories = KGlobal::dirs()->findDirs("module", QString());
522     QStringList filters;
523     filters << "libkdenlive*";
524     foreach(const QString &folder, directories) {
525         kDebug() << "// PARSING FIOLER: " << folder;
526         QDir pluginsDir(folder);
527         foreach(const QString &fileName, pluginsDir.entryList(filters, QDir::Files)) {
528             kDebug() << "// FOUND PLUGIN: " << fileName << "= " << pluginsDir.absoluteFilePath(fileName);
529             QPluginLoader loader(pluginsDir.absoluteFilePath(fileName));
530             QObject *plugin = loader.instance();
531             if (plugin) {
532                 populateMenus(plugin);
533                 m_pluginFileNames += fileName;
534             } else kDebug() << "// ERROR LOADING PLUGIN: " << fileName << ", " << loader.errorString();
535         }
536     }
537     //exit(1);
538 }
539
540 void MainWindow::populateMenus(QObject *plugin)
541 {
542     QMenu *addMenu = static_cast<QMenu*>(factory()->container("generators", this));
543     ClipGenerator *iGenerator = qobject_cast<ClipGenerator *>(plugin);
544     if (iGenerator)
545         addToMenu(plugin, iGenerator->generators(KdenliveSettings::producerslist()), addMenu, SLOT(generateClip()),
546                   NULL);
547 }
548
549 void MainWindow::addToMenu(QObject *plugin, const QStringList &texts,
550                            QMenu *menu, const char *member,
551                            QActionGroup *actionGroup)
552 {
553     kDebug() << "// ADD to MENU" << texts;
554     foreach(const QString &text, texts) {
555         QAction *action = new QAction(text, plugin);
556         action->setData(text);
557         connect(action, SIGNAL(triggered()), this, member);
558         menu->addAction(action);
559
560         if (actionGroup) {
561             action->setCheckable(true);
562             actionGroup->addAction(action);
563         }
564     }
565 }
566
567 void MainWindow::aboutPlugins()
568 {
569     //PluginDialog dialog(pluginsDir.path(), m_pluginFileNames, this);
570     //dialog.exec();
571 }
572
573
574 void MainWindow::generateClip()
575 {
576     QAction *action = qobject_cast<QAction *>(sender());
577     ClipGenerator *iGenerator = qobject_cast<ClipGenerator *>(action->parent());
578
579     KUrl clipUrl = iGenerator->generatedClip(action->data().toString(), m_activeDocument->projectFolder(), QStringList(), QStringList(), 25, 720, 576);
580     if (!clipUrl.isEmpty()) {
581         m_projectList->slotAddClip(QList <QUrl> () << clipUrl);
582     }
583 }
584
585 void MainWindow::saveProperties(KConfigGroup &config)
586 {
587     // save properties here,used by session management
588     saveFile();
589     KMainWindow::saveProperties(config);
590 }
591
592
593 void MainWindow::readProperties(const KConfigGroup &config)
594 {
595     // read properties here,used by session management
596     KMainWindow::readProperties(config);
597     QString Lastproject = config.group("Recent Files").readPathEntry("File1", QString());
598     openFile(KUrl(Lastproject));
599 }
600
601 void MainWindow::slotReloadEffects()
602 {
603     m_customEffectsMenu->clear();
604     initEffects::parseCustomEffectsFile();
605     QAction *action;
606     QStringList effectInfo;
607     QMap<QString, QStringList> effectsList;
608
609     for (int ix = 0; ix < customEffects.count(); ix++) {
610         effectInfo = customEffects.effectIdInfo(ix);
611         effectsList.insert(effectInfo.at(0).toLower(), effectInfo);
612     }
613     if (effectsList.isEmpty()) {
614         m_customEffectsMenu->setEnabled(false);
615         return;
616     } else m_customEffectsMenu->setEnabled(true);
617
618     foreach(const QStringList &value, effectsList) {
619         action = new QAction(value.at(0), this);
620         action->setData(value);
621         m_customEffectsMenu->addAction(action);
622     }
623     m_effectList->reloadEffectList();
624 }
625
626 #ifndef NO_JOGSHUTTLE
627 void MainWindow::activateShuttleDevice()
628 {
629     delete m_jogProcess;
630     m_jogProcess = NULL;
631     if (KdenliveSettings::enableshuttle() == false) return;
632     m_jogProcess = new JogShuttle(KdenliveSettings::shuttledevice());
633     connect(m_jogProcess, SIGNAL(rewind1()), m_monitorManager, SLOT(slotRewindOneFrame()));
634     connect(m_jogProcess, SIGNAL(forward1()), m_monitorManager, SLOT(slotForwardOneFrame()));
635     connect(m_jogProcess, SIGNAL(rewind(double)), m_monitorManager, SLOT(slotRewind(double)));
636     connect(m_jogProcess, SIGNAL(forward(double)), m_monitorManager, SLOT(slotForward(double)));
637     connect(m_jogProcess, SIGNAL(stop()), m_monitorManager, SLOT(slotPlay()));
638     connect(m_jogProcess, SIGNAL(button(int)), this, SLOT(slotShuttleButton(int)));
639 }
640
641 void MainWindow::slotShuttleButton(int code)
642 {
643     switch (code) {
644     case 5:
645         slotShuttleAction(KdenliveSettings::shuttle1());
646         break;
647     case 6:
648         slotShuttleAction(KdenliveSettings::shuttle2());
649         break;
650     case 7:
651         slotShuttleAction(KdenliveSettings::shuttle3());
652         break;
653     case 8:
654         slotShuttleAction(KdenliveSettings::shuttle4());
655         break;
656     case 9:
657         slotShuttleAction(KdenliveSettings::shuttle5());
658         break;
659     }
660 }
661
662 void MainWindow::slotShuttleAction(int code)
663 {
664     switch (code) {
665     case 0:
666         return;
667     case 1:
668         m_monitorManager->slotPlay();
669         break;
670     default:
671         m_monitorManager->slotPlay();
672         break;
673     }
674 }
675 #endif /* NO_JOGSHUTTLE */
676
677 void MainWindow::configureNotifications()
678 {
679     KNotifyConfigWidget::configure(this);
680 }
681
682 void MainWindow::slotFullScreen()
683 {
684     KToggleFullScreenAction::setFullScreen(this, actionCollection()->action("fullscreen")->isChecked());
685 }
686
687 void MainWindow::slotAddEffect(const QDomElement effect, GenTime pos, int track)
688 {
689     if (!m_activeDocument) return;
690     if (effect.isNull()) {
691         kDebug() << "--- ERROR, TRYING TO APPEND NULL EFFECT";
692         return;
693     }
694     QDomElement effectToAdd = effect.cloneNode().toElement();
695     m_activeTimeline->projectView()->slotAddEffect(effectToAdd, pos, track);
696 }
697
698 void MainWindow::slotRaiseMonitor(bool clipMonitor)
699 {
700     if (clipMonitor) m_clipMonitorDock->raise();
701     else m_projectMonitorDock->raise();
702 }
703
704 void MainWindow::slotUpdateClip(const QString &id)
705 {
706     if (!m_activeDocument) return;
707     m_activeTimeline->projectView()->slotUpdateClip(id);
708 }
709
710 void MainWindow::slotConnectMonitors()
711 {
712
713     m_projectList->setRenderer(m_projectMonitor->render);
714     //connect(m_projectList, SIGNAL(receivedClipDuration(const QString &)), this, SLOT(slotUpdateClip(const QString &)));
715     connect(m_projectList, SIGNAL(deleteProjectClips(QStringList, QMap<QString, QString>)), this, SLOT(slotDeleteProjectClips(QStringList, QMap<QString, QString>)));
716     connect(m_projectList, SIGNAL(showClipProperties(DocClipBase *)), this, SLOT(slotShowClipProperties(DocClipBase *)));
717     connect(m_projectList, SIGNAL(showClipProperties(QList <DocClipBase *>, QMap<QString, QString>)), this, SLOT(slotShowClipProperties(QList <DocClipBase *>, QMap<QString, QString>)));
718     connect(m_projectList, SIGNAL(getFileProperties(const QDomElement, const QString &, int, bool)), m_projectMonitor->render, SLOT(getFileProperties(const QDomElement, const QString &, int, bool)));
719     connect(m_projectMonitor->render, SIGNAL(replyGetImage(const QString &, const QPixmap &)), m_projectList, SLOT(slotReplyGetImage(const QString &, const QPixmap &)));
720     connect(m_projectMonitor->render, SIGNAL(replyGetFileProperties(const QString &, Mlt::Producer*, const QMap < QString, QString > &, const QMap < QString, QString > &, bool)), m_projectList, SLOT(slotReplyGetFileProperties(const QString &, Mlt::Producer*, const QMap < QString, QString > &, const QMap < QString, QString > &, bool)));
721
722     connect(m_projectMonitor->render, SIGNAL(removeInvalidClip(const QString &, bool)), m_projectList, SLOT(slotRemoveInvalidClip(const QString &, bool)));
723
724     connect(m_clipMonitor, SIGNAL(refreshClipThumbnail(const QString &)), m_projectList, SLOT(slotRefreshClipThumbnail(const QString &)));
725
726     connect(m_clipMonitor, SIGNAL(adjustMonitorSize()), this, SLOT(slotAdjustClipMonitor()));
727     connect(m_projectMonitor, SIGNAL(adjustMonitorSize()), this, SLOT(slotAdjustProjectMonitor()));
728
729     connect(m_clipMonitor, SIGNAL(saveZone(Render *, QPoint)), this, SLOT(slotSaveZone(Render *, QPoint)));
730     connect(m_projectMonitor, SIGNAL(saveZone(Render *, QPoint)), this, SLOT(slotSaveZone(Render *, QPoint)));
731 }
732
733 void MainWindow::slotAdjustClipMonitor()
734 {
735     m_clipMonitorDock->updateGeometry();
736     m_clipMonitorDock->adjustSize();
737     m_clipMonitor->resetSize();
738 }
739
740 void MainWindow::slotAdjustProjectMonitor()
741 {
742     m_projectMonitorDock->updateGeometry();
743     m_projectMonitorDock->adjustSize();
744     m_projectMonitor->resetSize();
745 }
746
747 void MainWindow::setupActions()
748 {
749
750     KActionCollection* collection = actionCollection();
751     m_timecodeFormat = new KComboBox(this);
752     m_timecodeFormat->addItem(i18n("hh:mm:ss::ff"));
753     m_timecodeFormat->addItem(i18n("Frames"));
754     if (KdenliveSettings::frametimecode()) m_timecodeFormat->setCurrentIndex(1);
755     connect(m_timecodeFormat, SIGNAL(activated(int)), this, SLOT(slotUpdateTimecodeFormat(int)));
756
757     m_statusProgressBar = new QProgressBar(this);
758     m_statusProgressBar->setMinimum(0);
759     m_statusProgressBar->setMaximum(100);
760     m_statusProgressBar->setMaximumWidth(150);
761     m_statusProgressBar->setVisible(false);
762
763     KToolBar *toolbar = new KToolBar("statusToolBar", this, Qt::BottomToolBarArea);
764     toolbar->setMovable(false);
765     statusBar()->setStyleSheet(QString("QStatusBar QLabel {font-size:%1pt;} QStatusBar::item { border: 0px; font-size:%1pt;padding:0px; }").arg(statusBar()->font().pointSize()));
766     QString style1 = "QToolBar { border: 0px } QToolButton { border-style: inset; border:1px solid #999999;border-radius: 3px;margin: 0px 3px;padding: 0px;} QToolButton:checked { background-color: rgba(224, 224, 0, 100); border-style: inset; border:1px solid #cc6666;border-radius: 3px;}";
767
768     //create edit mode buttons
769     m_normalEditTool = new KAction(KIcon("kdenlive-normal-edit"), i18n("Normal mode"), this);
770     m_normalEditTool->setShortcut(i18nc("Normal editing", "n"));
771     toolbar->addAction(m_normalEditTool);
772     m_normalEditTool->setCheckable(true);
773     m_normalEditTool->setChecked(true);
774
775     m_overwriteEditTool = new KAction(KIcon("kdenlive-overwrite-edit"), i18n("Overwrite mode"), this);
776     //m_overwriteEditTool->setShortcut(i18nc("Overwrite mode shortcut", "o"));
777     toolbar->addAction(m_overwriteEditTool);
778     m_overwriteEditTool->setCheckable(true);
779     m_overwriteEditTool->setChecked(false);
780
781     m_insertEditTool = new KAction(KIcon("kdenlive-insert-edit"), i18n("Insert mode"), this);
782     //m_insertEditTool->setShortcut(i18nc("Insert mode shortcut", "i"));
783     toolbar->addAction(m_insertEditTool);
784     m_insertEditTool->setCheckable(true);
785     m_insertEditTool->setChecked(false);
786     // not implemented yet
787     m_insertEditTool->setEnabled(false);
788
789     QActionGroup *editGroup = new QActionGroup(this);
790     editGroup->addAction(m_normalEditTool);
791     editGroup->addAction(m_overwriteEditTool);
792     editGroup->addAction(m_insertEditTool);
793     editGroup->setExclusive(true);
794     connect(editGroup, SIGNAL(triggered(QAction *)), this, SLOT(slotChangeEdit(QAction *)));
795     //connect(m_overwriteEditTool, SIGNAL(toggled(bool)), this, SLOT(slotSetOverwriteMode(bool)));
796
797     toolbar->addSeparator();
798
799     // create tools buttons
800     m_buttonSelectTool = new KAction(KIcon("kdenlive-select-tool"), i18n("Selection tool"), this);
801     m_buttonSelectTool->setShortcut(i18nc("Selection tool shortcut", "s"));
802     toolbar->addAction(m_buttonSelectTool);
803     m_buttonSelectTool->setCheckable(true);
804     m_buttonSelectTool->setChecked(true);
805
806     m_buttonRazorTool = new KAction(KIcon("edit-cut"), i18n("Razor tool"), this);
807     m_buttonRazorTool->setShortcut(i18nc("Razor tool shortcut", "x"));
808     toolbar->addAction(m_buttonRazorTool);
809     m_buttonRazorTool->setCheckable(true);
810     m_buttonRazorTool->setChecked(false);
811
812     m_buttonSpacerTool = new KAction(KIcon("kdenlive-spacer-tool"), i18n("Spacer tool"), this);
813     m_buttonSpacerTool->setShortcut(i18nc("Spacer tool shortcut", "m"));
814     toolbar->addAction(m_buttonSpacerTool);
815     m_buttonSpacerTool->setCheckable(true);
816     m_buttonSpacerTool->setChecked(false);
817
818     QActionGroup *toolGroup = new QActionGroup(this);
819     toolGroup->addAction(m_buttonSelectTool);
820     toolGroup->addAction(m_buttonRazorTool);
821     toolGroup->addAction(m_buttonSpacerTool);
822     toolGroup->setExclusive(true);
823     toolbar->setToolButtonStyle(Qt::ToolButtonIconOnly);
824
825     QWidget * actionWidget;
826     int max = toolbar->iconSizeDefault() + 2;
827     actionWidget = toolbar->widgetForAction(m_normalEditTool);
828     actionWidget->setMaximumWidth(max);
829     actionWidget->setMaximumHeight(max - 4);
830
831     actionWidget = toolbar->widgetForAction(m_insertEditTool);
832     actionWidget->setMaximumWidth(max);
833     actionWidget->setMaximumHeight(max - 4);
834
835     actionWidget = toolbar->widgetForAction(m_overwriteEditTool);
836     actionWidget->setMaximumWidth(max);
837     actionWidget->setMaximumHeight(max - 4);
838
839     actionWidget = toolbar->widgetForAction(m_buttonSelectTool);
840     actionWidget->setMaximumWidth(max);
841     actionWidget->setMaximumHeight(max - 4);
842
843     actionWidget = toolbar->widgetForAction(m_buttonRazorTool);
844     actionWidget->setMaximumWidth(max);
845     actionWidget->setMaximumHeight(max - 4);
846
847     actionWidget = toolbar->widgetForAction(m_buttonSpacerTool);
848     actionWidget->setMaximumWidth(max);
849     actionWidget->setMaximumHeight(max - 4);
850
851     toolbar->setStyleSheet(style1);
852     connect(toolGroup, SIGNAL(triggered(QAction *)), this, SLOT(slotChangeTool(QAction *)));
853
854     toolbar->addSeparator();
855     m_buttonFitZoom = new KAction(KIcon("zoom-fit-best"), i18n("Fit zoom to project"), this);
856     toolbar->addAction(m_buttonFitZoom);
857     m_buttonFitZoom->setCheckable(false);
858     connect(m_buttonFitZoom, SIGNAL(triggered()), this, SLOT(slotFitZoom()));
859
860     actionWidget = toolbar->widgetForAction(m_buttonFitZoom);
861     actionWidget->setMaximumWidth(max);
862     actionWidget->setMaximumHeight(max - 4);
863
864     m_zoomSlider = new QSlider(Qt::Horizontal, this);
865     m_zoomSlider->setMaximum(13);
866     m_zoomSlider->setPageStep(1);
867
868     m_zoomSlider->setMaximumWidth(150);
869     m_zoomSlider->setMinimumWidth(100);
870     toolbar->addWidget(m_zoomSlider);
871
872     m_buttonVideoThumbs = new KAction(KIcon("kdenlive-show-videothumb"), i18n("Show video thumbnails"), this);
873     toolbar->addAction(m_buttonVideoThumbs);
874     m_buttonVideoThumbs->setCheckable(true);
875     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
876     connect(m_buttonVideoThumbs, SIGNAL(triggered()), this, SLOT(slotSwitchVideoThumbs()));
877
878     m_buttonAudioThumbs = new KAction(KIcon("kdenlive-show-audiothumb"), i18n("Show audio thumbnails"), this);
879     toolbar->addAction(m_buttonAudioThumbs);
880     m_buttonAudioThumbs->setCheckable(true);
881     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
882     connect(m_buttonAudioThumbs, SIGNAL(triggered()), this, SLOT(slotSwitchAudioThumbs()));
883
884     m_buttonShowMarkers = new KAction(KIcon("kdenlive-show-markers"), i18n("Show markers comments"), this);
885     toolbar->addAction(m_buttonShowMarkers);
886     m_buttonShowMarkers->setCheckable(true);
887     m_buttonShowMarkers->setChecked(KdenliveSettings::showmarkers());
888     connect(m_buttonShowMarkers, SIGNAL(triggered()), this, SLOT(slotSwitchMarkersComments()));
889
890     m_buttonSnap = new KAction(KIcon("kdenlive-snap"), i18n("Snap"), this);
891     toolbar->addAction(m_buttonSnap);
892     m_buttonSnap->setCheckable(true);
893     m_buttonSnap->setChecked(KdenliveSettings::snaptopoints());
894     connect(m_buttonSnap, SIGNAL(triggered()), this, SLOT(slotSwitchSnap()));
895
896     actionWidget = toolbar->widgetForAction(m_buttonVideoThumbs);
897     actionWidget->setMaximumWidth(max);
898     actionWidget->setMaximumHeight(max - 4);
899
900     actionWidget = toolbar->widgetForAction(m_buttonAudioThumbs);
901     actionWidget->setMaximumWidth(max);
902     actionWidget->setMaximumHeight(max - 4);
903
904     actionWidget = toolbar->widgetForAction(m_buttonShowMarkers);
905     actionWidget->setMaximumWidth(max);
906     actionWidget->setMaximumHeight(max - 4);
907
908     actionWidget = toolbar->widgetForAction(m_buttonSnap);
909     actionWidget->setMaximumWidth(max);
910     actionWidget->setMaximumHeight(max - 4);
911
912     m_messageLabel = new StatusBarMessageLabel(this);
913     m_messageLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::MinimumExpanding);
914
915     statusBar()->addWidget(m_messageLabel, 10);
916     statusBar()->addWidget(m_statusProgressBar, 0);
917     statusBar()->addPermanentWidget(toolbar);
918     statusBar()->insertPermanentFixedItem("00:00:00:00", ID_TIMELINE_POS);
919     statusBar()->addPermanentWidget(m_timecodeFormat);
920     //statusBar()->setMaximumHeight(statusBar()->font().pointSize() * 3);
921
922     collection->addAction("normal_mode", m_normalEditTool);
923     collection->addAction("overwrite_mode", m_overwriteEditTool);
924     collection->addAction("insert_mode", m_insertEditTool);
925     collection->addAction("select_tool", m_buttonSelectTool);
926     collection->addAction("razor_tool", m_buttonRazorTool);
927     collection->addAction("spacer_tool", m_buttonSpacerTool);
928
929     collection->addAction("show_video_thumbs", m_buttonVideoThumbs);
930     collection->addAction("show_audio_thumbs", m_buttonAudioThumbs);
931     collection->addAction("show_markers", m_buttonShowMarkers);
932     collection->addAction("snap", m_buttonSnap);
933     collection->addAction("zoom_fit", m_buttonFitZoom);
934
935     KAction* zoomIn = new KAction(KIcon("zoom-in"), i18n("Zoom In"), this);
936     collection->addAction("zoom_in", zoomIn);
937     connect(zoomIn, SIGNAL(triggered(bool)), this, SLOT(slotZoomIn()));
938     zoomIn->setShortcut(Qt::CTRL + Qt::Key_Plus);
939
940     KAction* zoomOut = new KAction(KIcon("zoom-out"), i18n("Zoom Out"), this);
941     collection->addAction("zoom_out", zoomOut);
942     connect(zoomOut, SIGNAL(triggered(bool)), this, SLOT(slotZoomOut()));
943     zoomOut->setShortcut(Qt::CTRL + Qt::Key_Minus);
944
945     m_projectSearch = new KAction(KIcon("edit-find"), i18n("Find"), this);
946     collection->addAction("project_find", m_projectSearch);
947     connect(m_projectSearch, SIGNAL(triggered(bool)), this, SLOT(slotFind()));
948     m_projectSearch->setShortcut(Qt::Key_Slash);
949
950     m_projectSearchNext = new KAction(KIcon("go-down-search"), i18n("Find Next"), this);
951     collection->addAction("project_find_next", m_projectSearchNext);
952     connect(m_projectSearchNext, SIGNAL(triggered(bool)), this, SLOT(slotFindNext()));
953     m_projectSearchNext->setShortcut(Qt::Key_F3);
954     m_projectSearchNext->setEnabled(false);
955
956     KAction* profilesAction = new KAction(KIcon("document-new"), i18n("Manage Project Profiles"), this);
957     collection->addAction("manage_profiles", profilesAction);
958     connect(profilesAction, SIGNAL(triggered(bool)), this, SLOT(slotEditProfiles()));
959
960     KNS3::standardAction(i18n("Download New Wipes..."), this, SLOT(slotGetNewLumaStuff()), actionCollection(), "get_new_lumas");
961
962     KNS3::standardAction(i18n("Download New Render Profiles..."), this, SLOT(slotGetNewRenderStuff()), actionCollection(), "get_new_profiles");
963
964     KNS3::standardAction(i18n("Download New Project Profiles..."), this, SLOT(slotGetNewMltProfileStuff()), actionCollection(), "get_new_mlt_profiles");
965
966     KNS3::standardAction(i18n("Download New Title Templates..."), this, SLOT(slotGetNewTitleStuff()), actionCollection(), "get_new_titles");
967
968     KAction* wizAction = new KAction(KIcon("configure"), i18n("Run Config Wizard"), this);
969     collection->addAction("run_wizard", wizAction);
970     connect(wizAction, SIGNAL(triggered(bool)), this, SLOT(slotRunWizard()));
971
972     KAction* projectAction = new KAction(KIcon("configure"), i18n("Project Settings"), this);
973     collection->addAction("project_settings", projectAction);
974     connect(projectAction, SIGNAL(triggered(bool)), this, SLOT(slotEditProjectSettings()));
975
976     KAction* projectRender = new KAction(KIcon("media-record"), i18n("Render"), this);
977     collection->addAction("project_render", projectRender);
978     projectRender->setShortcut(Qt::CTRL + Qt::Key_Return);
979     connect(projectRender, SIGNAL(triggered(bool)), this, SLOT(slotRenderProject()));
980
981     KAction* projectClean = new KAction(KIcon("edit-clear"), i18n("Clean Project"), this);
982     collection->addAction("project_clean", projectClean);
983     connect(projectClean, SIGNAL(triggered(bool)), this, SLOT(slotCleanProject()));
984
985     KAction* monitorPlay = new KAction(KIcon("media-playback-start"), i18n("Play"), this);
986     KShortcut playShortcut;
987     playShortcut.setPrimary(Qt::Key_Space);
988     playShortcut.setAlternate(Qt::Key_K);
989     monitorPlay->setShortcut(playShortcut);
990     collection->addAction("monitor_play", monitorPlay);
991     connect(monitorPlay, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotPlay()));
992
993     m_playZone = new KAction(KIcon("media-playback-start"), i18n("Play Zone"), this);
994     m_playZone->setShortcut(Qt::CTRL + Qt::Key_Space);
995     collection->addAction("monitor_play_zone", m_playZone);
996     connect(m_playZone, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotPlayZone()));
997
998     m_loopZone = new KAction(KIcon("media-playback-start"), i18n("Loop Zone"), this);
999     m_loopZone->setShortcut(Qt::ALT + Qt::Key_Space);
1000     collection->addAction("monitor_loop_zone", m_loopZone);
1001     connect(m_loopZone, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotLoopZone()));
1002
1003     KAction *dvdWizard =  new KAction(KIcon("media-optical"), i18n("DVD Wizard"), this);
1004     collection->addAction("dvd_wizard", dvdWizard);
1005     connect(dvdWizard, SIGNAL(triggered(bool)), this, SLOT(slotDvdWizard()));
1006
1007     KAction *transcodeClip =  new KAction(KIcon("edit-copy"), i18n("Transcode Clips"), this);
1008     collection->addAction("transcode_clip", transcodeClip);
1009     connect(transcodeClip, SIGNAL(triggered(bool)), this, SLOT(slotTranscodeClip()));
1010
1011     KAction *markIn = collection->addAction("mark_in");
1012     markIn->setText(i18n("Set Zone In"));
1013     markIn->setShortcut(Qt::Key_I);
1014     connect(markIn, SIGNAL(triggered(bool)), this, SLOT(slotSetInPoint()));
1015
1016     KAction *markOut = collection->addAction("mark_out");
1017     markOut->setText(i18n("Set Zone Out"));
1018     markOut->setShortcut(Qt::Key_O);
1019     connect(markOut, SIGNAL(triggered(bool)), this, SLOT(slotSetOutPoint()));
1020
1021     KAction *switchMon = collection->addAction("switch_monitor");
1022     switchMon->setText(i18n("Switch monitor"));
1023     switchMon->setShortcut(Qt::Key_T);
1024     connect(switchMon, SIGNAL(triggered(bool)), this, SLOT(slotSwitchMonitors()));
1025
1026     KAction *insertTree = collection->addAction("insert_project_tree");
1027     insertTree->setText(i18n("Insert zone in project tree"));
1028     insertTree->setShortcut(Qt::CTRL + Qt::Key_I);
1029     connect(insertTree, SIGNAL(triggered(bool)), this, SLOT(slotInsertZoneToTree()));
1030
1031     KAction *insertTimeline = collection->addAction("insert_timeline");
1032     insertTimeline->setText(i18n("Insert zone in timeline"));
1033     insertTimeline->setShortcut(Qt::SHIFT + Qt::CTRL + Qt::Key_I);
1034     connect(insertTimeline, SIGNAL(triggered(bool)), this, SLOT(slotInsertZoneToTimeline()));
1035
1036     KAction *resizeStart =  new KAction(KIcon(), i18n("Resize Item Start"), this);
1037     collection->addAction("resize_timeline_clip_start", resizeStart);
1038     resizeStart->setShortcut(Qt::Key_1);
1039     connect(resizeStart, SIGNAL(triggered(bool)), this, SLOT(slotResizeItemStart()));
1040
1041     KAction *resizeEnd =  new KAction(KIcon(), i18n("Resize Item End"), this);
1042     collection->addAction("resize_timeline_clip_end", resizeEnd);
1043     resizeEnd->setShortcut(Qt::Key_2);
1044     connect(resizeEnd, SIGNAL(triggered(bool)), this, SLOT(slotResizeItemEnd()));
1045
1046     KAction* monitorSeekBackward = new KAction(KIcon("media-seek-backward"), i18n("Rewind"), this);
1047     monitorSeekBackward->setShortcut(Qt::Key_J);
1048     collection->addAction("monitor_seek_backward", monitorSeekBackward);
1049     connect(monitorSeekBackward, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotRewind()));
1050
1051     KAction* monitorSeekBackwardOneFrame = new KAction(KIcon("media-skip-backward"), i18n("Rewind 1 Frame"), this);
1052     monitorSeekBackwardOneFrame->setShortcut(Qt::Key_Left);
1053     collection->addAction("monitor_seek_backward-one-frame", monitorSeekBackwardOneFrame);
1054     connect(monitorSeekBackwardOneFrame, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotRewindOneFrame()));
1055
1056     KAction* monitorSeekBackwardOneSecond = new KAction(KIcon("media-skip-backward"), i18n("Rewind 1 Second"), this);
1057     monitorSeekBackwardOneSecond->setShortcut(Qt::SHIFT + Qt::Key_Left);
1058     collection->addAction("monitor_seek_backward-one-second", monitorSeekBackwardOneSecond);
1059     connect(monitorSeekBackwardOneSecond, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotRewindOneSecond()));
1060
1061     KAction* monitorSeekSnapBackward = new KAction(KIcon("media-seek-backward"), i18n("Go to Previous Snap Point"), this);
1062     monitorSeekSnapBackward->setShortcut(Qt::ALT + Qt::Key_Left);
1063     collection->addAction("monitor_seek_snap_backward", monitorSeekSnapBackward);
1064     connect(monitorSeekSnapBackward, SIGNAL(triggered(bool)), this, SLOT(slotSnapRewind()));
1065
1066     KAction* monitorSeekForward = new KAction(KIcon("media-seek-forward"), i18n("Forward"), this);
1067     monitorSeekForward->setShortcut(Qt::Key_L);
1068     collection->addAction("monitor_seek_forward", monitorSeekForward);
1069     connect(monitorSeekForward, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotForward()));
1070
1071     KAction* clipStart = new KAction(KIcon("media-seek-backward"), i18n("Go to Clip Start"), this);
1072     clipStart->setShortcut(Qt::Key_Home);
1073     collection->addAction("seek_clip_start", clipStart);
1074     connect(clipStart, SIGNAL(triggered(bool)), this, SLOT(slotClipStart()));
1075
1076     KAction* clipEnd = new KAction(KIcon("media-seek-forward"), i18n("Go to Clip End"), this);
1077     clipEnd->setShortcut(Qt::Key_End);
1078     collection->addAction("seek_clip_end", clipEnd);
1079     connect(clipEnd, SIGNAL(triggered(bool)), this, SLOT(slotClipEnd()));
1080
1081     KAction* zoneStart = new KAction(KIcon("media-seek-backward"), i18n("Go to Zone Start"), this);
1082     zoneStart->setShortcut(Qt::SHIFT + Qt::Key_I);
1083     collection->addAction("seek_zone_start", zoneStart);
1084     connect(zoneStart, SIGNAL(triggered(bool)), this, SLOT(slotZoneStart()));
1085
1086     KAction* zoneEnd = new KAction(KIcon("media-seek-forward"), i18n("Go to Zone End"), this);
1087     zoneEnd->setShortcut(Qt::SHIFT + Qt::Key_O);
1088     collection->addAction("seek_zone_end", zoneEnd);
1089     connect(zoneEnd, SIGNAL(triggered(bool)), this, SLOT(slotZoneEnd()));
1090
1091     KAction* projectStart = new KAction(KIcon("go-first"), i18n("Go to Project Start"), this);
1092     projectStart->setShortcut(Qt::CTRL + Qt::Key_Home);
1093     collection->addAction("seek_start", projectStart);
1094     connect(projectStart, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotStart()));
1095
1096     KAction* projectEnd = new KAction(KIcon("go-last"), i18n("Go to Project End"), this);
1097     projectEnd->setShortcut(Qt::CTRL + Qt::Key_End);
1098     collection->addAction("seek_end", projectEnd);
1099     connect(projectEnd, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotEnd()));
1100
1101     KAction* monitorSeekForwardOneFrame = new KAction(KIcon("media-skip-forward"), i18n("Forward 1 Frame"), this);
1102     monitorSeekForwardOneFrame->setShortcut(Qt::Key_Right);
1103     collection->addAction("monitor_seek_forward-one-frame", monitorSeekForwardOneFrame);
1104     connect(monitorSeekForwardOneFrame, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotForwardOneFrame()));
1105
1106     KAction* monitorSeekForwardOneSecond = new KAction(KIcon("media-skip-forward"), i18n("Forward 1 Second"), this);
1107     monitorSeekForwardOneSecond->setShortcut(Qt::SHIFT + Qt::Key_Right);
1108     collection->addAction("monitor_seek_forward-one-second", monitorSeekForwardOneSecond);
1109     connect(monitorSeekForwardOneSecond, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotForwardOneSecond()));
1110
1111     KAction* monitorSeekSnapForward = new KAction(KIcon("media-seek-forward"), i18n("Go to Next Snap Point"), this);
1112     monitorSeekSnapForward->setShortcut(Qt::ALT + Qt::Key_Right);
1113     collection->addAction("monitor_seek_snap_forward", monitorSeekSnapForward);
1114     connect(monitorSeekSnapForward, SIGNAL(triggered(bool)), this, SLOT(slotSnapForward()));
1115
1116     KAction* deleteTimelineClip = new KAction(KIcon("edit-delete"), i18n("Delete Selected Item"), this);
1117     deleteTimelineClip->setShortcut(Qt::Key_Delete);
1118     collection->addAction("delete_timeline_clip", deleteTimelineClip);
1119     connect(deleteTimelineClip, SIGNAL(triggered(bool)), this, SLOT(slotDeleteTimelineClip()));
1120
1121     /*KAction* editTimelineClipSpeed = new KAction(i18n("Change Clip Speed"), this);
1122     collection->addAction("change_clip_speed", editTimelineClipSpeed);
1123     editTimelineClipSpeed->setData("change_speed");
1124     connect(editTimelineClipSpeed, SIGNAL(triggered(bool)), this, SLOT(slotChangeClipSpeed()));*/
1125
1126     KAction *stickTransition = collection->addAction("auto_transition");
1127     stickTransition->setData(QString("auto"));
1128     stickTransition->setCheckable(true);
1129     stickTransition->setEnabled(false);
1130     stickTransition->setText(i18n("Automatic Transition"));
1131     connect(stickTransition, SIGNAL(triggered(bool)), this, SLOT(slotAutoTransition()));
1132
1133     KAction* groupClip = new KAction(KIcon("object-group"), i18n("Group Clips"), this);
1134     groupClip->setShortcut(Qt::CTRL + Qt::Key_G);
1135     collection->addAction("group_clip", groupClip);
1136     connect(groupClip, SIGNAL(triggered(bool)), this, SLOT(slotGroupClips()));
1137
1138     KAction* ungroupClip = new KAction(KIcon("object-ungroup"), i18n("Ungroup Clips"), this);
1139     collection->addAction("ungroup_clip", ungroupClip);
1140     ungroupClip->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_G);
1141     ungroupClip->setData("ungroup_clip");
1142     connect(ungroupClip, SIGNAL(triggered(bool)), this, SLOT(slotUnGroupClips()));
1143
1144     KAction* editClipDuration = new KAction(KIcon("measure"), i18n("Edit Duration"), this);
1145     collection->addAction("edit_clip_duration", editClipDuration);
1146     connect(editClipDuration, SIGNAL(triggered(bool)), this, SLOT(slotEditClipDuration()));
1147
1148     KAction* insertOvertwrite = new KAction(KIcon(), i18n("Insert Clip Zone in Timeline (Overwrite)"), this);
1149     insertOvertwrite->setShortcut(Qt::Key_V);
1150     collection->addAction("overwrite_to_in_point", insertOvertwrite);
1151     connect(insertOvertwrite, SIGNAL(triggered(bool)), this, SLOT(slotInsertClipOverwrite()));
1152
1153     KAction* selectTimelineClip = new KAction(KIcon("edit-select"), i18n("Select Clip"), this);
1154     selectTimelineClip->setShortcut(Qt::Key_Plus);
1155     collection->addAction("select_timeline_clip", selectTimelineClip);
1156     connect(selectTimelineClip, SIGNAL(triggered(bool)), this, SLOT(slotSelectTimelineClip()));
1157
1158     KAction* deselectTimelineClip = new KAction(KIcon("edit-select"), i18n("Deselect Clip"), this);
1159     deselectTimelineClip->setShortcut(Qt::Key_Minus);
1160     collection->addAction("deselect_timeline_clip", deselectTimelineClip);
1161     connect(deselectTimelineClip, SIGNAL(triggered(bool)), this, SLOT(slotDeselectTimelineClip()));
1162
1163     KAction* selectAddTimelineClip = new KAction(KIcon("edit-select"), i18n("Add Clip To Selection"), this);
1164     selectAddTimelineClip->setShortcut(Qt::ALT + Qt::Key_Plus);
1165     collection->addAction("select_add_timeline_clip", selectAddTimelineClip);
1166     connect(selectAddTimelineClip, SIGNAL(triggered(bool)), this, SLOT(slotSelectAddTimelineClip()));
1167
1168     KAction* selectTimelineTransition = new KAction(KIcon("edit-select"), i18n("Select Transition"), this);
1169     selectTimelineTransition->setShortcut(Qt::SHIFT + Qt::Key_Plus);
1170     collection->addAction("select_timeline_transition", selectTimelineTransition);
1171     connect(selectTimelineTransition, SIGNAL(triggered(bool)), this, SLOT(slotSelectTimelineTransition()));
1172
1173     KAction* deselectTimelineTransition = new KAction(KIcon("edit-select"), i18n("Deselect Transition"), this);
1174     deselectTimelineTransition->setShortcut(Qt::SHIFT + Qt::Key_Minus);
1175     collection->addAction("deselect_timeline_transition", deselectTimelineTransition);
1176     connect(deselectTimelineTransition, SIGNAL(triggered(bool)), this, SLOT(slotDeselectTimelineTransition()));
1177
1178     KAction* selectAddTimelineTransition = new KAction(KIcon("edit-select"), i18n("Add Transition To Selection"), this);
1179     selectAddTimelineTransition->setShortcut(Qt::ALT + Qt::SHIFT + Qt::Key_Plus);
1180     collection->addAction("select_add_timeline_transition", selectAddTimelineTransition);
1181     connect(selectAddTimelineTransition, SIGNAL(triggered(bool)), this, SLOT(slotSelectAddTimelineTransition()));
1182
1183     KAction* cutTimelineClip = new KAction(KIcon("edit-cut"), i18n("Cut Clip"), this);
1184     cutTimelineClip->setShortcut(Qt::SHIFT + Qt::Key_R);
1185     collection->addAction("cut_timeline_clip", cutTimelineClip);
1186     connect(cutTimelineClip, SIGNAL(triggered(bool)), this, SLOT(slotCutTimelineClip()));
1187
1188     KAction* addClipMarker = new KAction(KIcon("bookmark-new"), i18n("Add Marker"), this);
1189     collection->addAction("add_clip_marker", addClipMarker);
1190     connect(addClipMarker, SIGNAL(triggered(bool)), this, SLOT(slotAddClipMarker()));
1191
1192     KAction* deleteClipMarker = new KAction(KIcon("edit-delete"), i18n("Delete Marker"), this);
1193     collection->addAction("delete_clip_marker", deleteClipMarker);
1194     connect(deleteClipMarker, SIGNAL(triggered(bool)), this, SLOT(slotDeleteClipMarker()));
1195
1196     KAction* deleteAllClipMarkers = new KAction(KIcon("edit-delete"), i18n("Delete All Markers"), this);
1197     collection->addAction("delete_all_clip_markers", deleteAllClipMarkers);
1198     connect(deleteAllClipMarkers, SIGNAL(triggered(bool)), this, SLOT(slotDeleteAllClipMarkers()));
1199
1200     KAction* editClipMarker = new KAction(KIcon("document-properties"), i18n("Edit Marker"), this);
1201     collection->addAction("edit_clip_marker", editClipMarker);
1202     connect(editClipMarker, SIGNAL(triggered(bool)), this, SLOT(slotEditClipMarker()));
1203
1204     KAction* splitAudio = new KAction(KIcon("document-new"), i18n("Split Audio"), this);
1205     collection->addAction("split_audio", splitAudio);
1206     connect(splitAudio, SIGNAL(triggered(bool)), this, SLOT(slotSplitAudio()));
1207
1208     KAction* audioOnly = new KAction(KIcon("document-new"), i18n("Audio Only"), this);
1209     collection->addAction("clip_audio_only", audioOnly);
1210     audioOnly->setData("clip_audio_only");
1211     audioOnly->setCheckable(true);
1212
1213     KAction* videoOnly = new KAction(KIcon("document-new"), i18n("Video Only"), this);
1214     collection->addAction("clip_video_only", videoOnly);
1215     videoOnly->setData("clip_video_only");
1216     videoOnly->setCheckable(true);
1217
1218     KAction* audioAndVideo = new KAction(KIcon("document-new"), i18n("Audio and Video"), this);
1219     collection->addAction("clip_audio_and_video", audioAndVideo);
1220     audioAndVideo->setData("clip_audio_and_video");
1221     audioAndVideo->setCheckable(true);
1222
1223     m_clipTypeGroup = new QActionGroup(this);
1224     m_clipTypeGroup->addAction(audioOnly);
1225     m_clipTypeGroup->addAction(videoOnly);
1226     m_clipTypeGroup->addAction(audioAndVideo);
1227     connect(m_clipTypeGroup, SIGNAL(triggered(QAction *)), this, SLOT(slotUpdateClipType(QAction *)));
1228     m_clipTypeGroup->setEnabled(false);
1229
1230     KAction *insertSpace = new KAction(KIcon(), i18n("Insert Space"), this);
1231     collection->addAction("insert_space", insertSpace);
1232     connect(insertSpace, SIGNAL(triggered()), this, SLOT(slotInsertSpace()));
1233
1234     KAction *removeSpace = new KAction(KIcon(), i18n("Remove Space"), this);
1235     collection->addAction("delete_space", removeSpace);
1236     connect(removeSpace, SIGNAL(triggered()), this, SLOT(slotRemoveSpace()));
1237
1238     KAction *insertTrack = new KAction(KIcon(), i18n("Insert Track"), this);
1239     collection->addAction("insert_track", insertTrack);
1240     connect(insertTrack, SIGNAL(triggered()), this, SLOT(slotInsertTrack()));
1241
1242     KAction *deleteTrack = new KAction(KIcon(), i18n("Delete Track"), this);
1243     collection->addAction("delete_track", deleteTrack);
1244     connect(deleteTrack, SIGNAL(triggered()), this, SLOT(slotDeleteTrack()));
1245
1246     KAction *changeTrack = new KAction(KIcon(), i18n("Change Track"), this);
1247     collection->addAction("change_track", changeTrack);
1248     connect(changeTrack, SIGNAL(triggered()), this, SLOT(slotChangeTrack()));
1249
1250     KAction *addGuide = new KAction(KIcon("document-new"), i18n("Add Guide"), this);
1251     collection->addAction("add_guide", addGuide);
1252     connect(addGuide, SIGNAL(triggered()), this, SLOT(slotAddGuide()));
1253
1254     QAction *delGuide = new KAction(KIcon("edit-delete"), i18n("Delete Guide"), this);
1255     collection->addAction("delete_guide", delGuide);
1256     connect(delGuide, SIGNAL(triggered()), this, SLOT(slotDeleteGuide()));
1257
1258     QAction *editGuide = new KAction(KIcon("document-properties"), i18n("Edit Guide"), this);
1259     collection->addAction("edit_guide", editGuide);
1260     connect(editGuide, SIGNAL(triggered()), this, SLOT(slotEditGuide()));
1261
1262     QAction *delAllGuides = new KAction(KIcon("edit-delete"), i18n("Delete All Guides"), this);
1263     collection->addAction("delete_all_guides", delAllGuides);
1264     connect(delAllGuides, SIGNAL(triggered()), this, SLOT(slotDeleteAllGuides()));
1265
1266     QAction *pasteEffects = new KAction(KIcon("edit-paste"), i18n("Paste Effects"), this);
1267     collection->addAction("paste_effects", pasteEffects);
1268     pasteEffects->setData("paste_effects");
1269     connect(pasteEffects , SIGNAL(triggered()), this, SLOT(slotPasteEffects()));
1270
1271     QAction *showTimeline = new KAction(i18n("Show Timeline"), this);
1272     collection->addAction("show_timeline", showTimeline);
1273     showTimeline->setCheckable(true);
1274     showTimeline->setChecked(true);
1275     connect(showTimeline, SIGNAL(triggered(bool)), this, SLOT(slotShowTimeline(bool)));
1276
1277     QAction *showTitleBar = new KAction(i18n("Show Title Bars"), this);
1278     collection->addAction("show_titlebars", showTitleBar);
1279     showTitleBar->setCheckable(true);
1280     connect(showTitleBar, SIGNAL(triggered(bool)), this, SLOT(slotShowTitleBars(bool)));
1281     showTitleBar->setChecked(KdenliveSettings::showtitlebars());
1282
1283     /*QAction *maxCurrent = new KAction(i18n("Maximize Current Widget"), this);
1284     collection->addAction("maximize_current", maxCurrent);
1285     maxCurrent->setCheckable(true);
1286     maxCurrent->setChecked(false);
1287     connect(maxCurrent, SIGNAL(triggered(bool)), this, SLOT(slotMaximizeCurrent(bool)));*/
1288
1289
1290     m_closeAction = KStandardAction::close(this, SLOT(closeCurrentDocument()), collection);
1291
1292     KStandardAction::quit(this, SLOT(queryQuit()), collection);
1293
1294     KStandardAction::open(this, SLOT(openFile()), collection);
1295
1296     m_saveAction = KStandardAction::save(this, SLOT(saveFile()), collection);
1297
1298     KStandardAction::saveAs(this, SLOT(saveFileAs()), collection);
1299
1300     KStandardAction::openNew(this, SLOT(newFile()), collection);
1301
1302     KStandardAction::preferences(this, SLOT(slotPreferences()), collection);
1303
1304     KStandardAction::configureNotifications(this , SLOT(configureNotifications()), collection);
1305
1306     KStandardAction::copy(this, SLOT(slotCopy()), collection);
1307
1308     KStandardAction::paste(this, SLOT(slotPaste()), collection);
1309
1310     KAction *undo = KStandardAction::undo(m_commandStack, SLOT(undo()), collection);
1311     undo->setEnabled(false);
1312     connect(m_commandStack, SIGNAL(canUndoChanged(bool)), undo, SLOT(setEnabled(bool)));
1313
1314     KAction *redo = KStandardAction::redo(m_commandStack, SLOT(redo()), collection);
1315     redo->setEnabled(false);
1316     connect(m_commandStack, SIGNAL(canRedoChanged(bool)), redo, SLOT(setEnabled(bool)));
1317
1318     KStandardAction::fullScreen(this, SLOT(slotFullScreen()), this, collection);
1319
1320     /*
1321     //TODO: Add status tooltip to actions ?
1322     connect(collection, SIGNAL(actionHovered(QAction*)),
1323             this, SLOT(slotDisplayActionMessage(QAction*)));*/
1324
1325
1326     QAction *addClip = new KAction(KIcon("kdenlive-add-clip"), i18n("Add Clip"), this);
1327     collection->addAction("add_clip", addClip);
1328     connect(addClip , SIGNAL(triggered()), m_projectList, SLOT(slotAddClip()));
1329
1330     QAction *addColorClip = new KAction(KIcon("kdenlive-add-color-clip"), i18n("Add Color Clip"), this);
1331     collection->addAction("add_color_clip", addColorClip);
1332     connect(addColorClip , SIGNAL(triggered()), m_projectList, SLOT(slotAddColorClip()));
1333
1334     QAction *addSlideClip = new KAction(KIcon("kdenlive-add-slide-clip"), i18n("Add Slideshow Clip"), this);
1335     collection->addAction("add_slide_clip", addSlideClip);
1336     connect(addSlideClip , SIGNAL(triggered()), m_projectList, SLOT(slotAddSlideshowClip()));
1337
1338     QAction *addTitleClip = new KAction(KIcon("kdenlive-add-text-clip"), i18n("Add Title Clip"), this);
1339     collection->addAction("add_text_clip", addTitleClip);
1340     connect(addTitleClip , SIGNAL(triggered()), m_projectList, SLOT(slotAddTitleClip()));
1341
1342     QAction *addTitleTemplateClip = new KAction(KIcon("kdenlive-add-text-clip"), i18n("Add Template Title"), this);
1343     collection->addAction("add_text_template_clip", addTitleTemplateClip);
1344     connect(addTitleTemplateClip , SIGNAL(triggered()), m_projectList, SLOT(slotAddTitleTemplateClip()));
1345
1346     QAction *addFolderButton = new KAction(KIcon("folder-new"), i18n("Create Folder"), this);
1347     collection->addAction("add_folder", addFolderButton);
1348     connect(addFolderButton , SIGNAL(triggered()), m_projectList, SLOT(slotAddFolder()));
1349
1350     QAction *clipProperties = new KAction(KIcon("document-edit"), i18n("Clip Properties"), this);
1351     collection->addAction("clip_properties", clipProperties);
1352     clipProperties->setData("clip_properties");
1353     connect(clipProperties , SIGNAL(triggered()), m_projectList, SLOT(slotEditClip()));
1354     clipProperties->setEnabled(false);
1355
1356     QAction *openClip = new KAction(KIcon("document-open"), i18n("Edit Clip"), this);
1357     collection->addAction("edit_clip", openClip);
1358     openClip->setData("edit_clip");
1359     connect(openClip , SIGNAL(triggered()), m_projectList, SLOT(slotOpenClip()));
1360     openClip->setEnabled(false);
1361
1362     QAction *deleteClip = new KAction(KIcon("edit-delete"), i18n("Delete Clip"), this);
1363     collection->addAction("delete_clip", deleteClip);
1364     deleteClip->setData("delete_clip");
1365     connect(deleteClip , SIGNAL(triggered()), m_projectList, SLOT(slotRemoveClip()));
1366     deleteClip->setEnabled(false);
1367
1368     QAction *reloadClip = new KAction(KIcon("view-refresh"), i18n("Reload Clip"), this);
1369     collection->addAction("reload_clip", reloadClip);
1370     reloadClip->setData("reload_clip");
1371     connect(reloadClip , SIGNAL(triggered()), m_projectList, SLOT(slotReloadClip()));
1372     reloadClip->setEnabled(false);
1373
1374     QMenu *addClips = new QMenu();
1375     addClips->addAction(addClip);
1376     addClips->addAction(addColorClip);
1377     addClips->addAction(addSlideClip);
1378     addClips->addAction(addTitleClip);
1379     addClips->addAction(addTitleTemplateClip);
1380     addClips->addAction(addFolderButton);
1381
1382     addClips->addAction(reloadClip);
1383     addClips->addAction(clipProperties);
1384     addClips->addAction(openClip);
1385     addClips->addAction(deleteClip);
1386     m_projectList->setupMenu(addClips, addClip);
1387
1388     //connect(collection, SIGNAL( clearStatusText() ),
1389     //statusBar(), SLOT( clear() ) );
1390 }
1391
1392 void MainWindow::slotDisplayActionMessage(QAction *a)
1393 {
1394     statusBar()->showMessage(a->data().toString(), 3000);
1395 }
1396
1397 void MainWindow::saveOptions()
1398 {
1399     KdenliveSettings::self()->writeConfig();
1400     KSharedConfigPtr config = KGlobal::config();
1401     m_fileOpenRecent->saveEntries(KConfigGroup(config, "Recent Files"));
1402     KConfigGroup treecolumns(config, "Project Tree");
1403     treecolumns.writeEntry("columns", m_projectList->headerInfo());
1404     config->sync();
1405 }
1406
1407 void MainWindow::readOptions()
1408 {
1409     KSharedConfigPtr config = KGlobal::config();
1410     m_fileOpenRecent->loadEntries(KConfigGroup(config, "Recent Files"));
1411     KConfigGroup initialGroup(config, "version");
1412     bool upgrade = false;
1413     if (initialGroup.exists()) {
1414         if (initialGroup.readEntry("version", QString()).section(' ', 0, 0) != QString(version).section(' ', 0, 0)) {
1415             upgrade = true;
1416         }
1417
1418         if (initialGroup.readEntry("version") == "0.7") {
1419             //Add new settings from 0.7.1
1420             if (KdenliveSettings::defaultprojectfolder().isEmpty()) {
1421                 QString path = QDir::homePath() + "/kdenlive";
1422                 if (KStandardDirs::makeDir(path)  == false) {
1423                     kDebug() << "/// ERROR CREATING PROJECT FOLDER: " << path;
1424                 } else KdenliveSettings::setDefaultprojectfolder(path);
1425             }
1426         }
1427
1428     }
1429
1430     if (!initialGroup.exists() || upgrade) {
1431         // this is our first run, show Wizard
1432         Wizard *w = new Wizard(upgrade, this);
1433         if (w->exec() == QDialog::Accepted && w->isOk()) {
1434             w->adjustSettings();
1435             initialGroup.writeEntry("version", version);
1436             delete w;
1437         } else {
1438             ::exit(1);
1439         }
1440     }
1441     KConfigGroup treecolumns(config, "Project Tree");
1442     const QByteArray state = treecolumns.readEntry("columns", QByteArray());
1443     if (!state.isEmpty())
1444         m_projectList->setHeaderInfo(state);
1445 }
1446
1447 void MainWindow::slotRunWizard()
1448 {
1449     Wizard *w = new Wizard(false, this);
1450     if (w->exec() == QDialog::Accepted && w->isOk()) {
1451         w->adjustSettings();
1452     }
1453     delete w;
1454 }
1455
1456 void MainWindow::newFile(bool showProjectSettings, bool force)
1457 {
1458     if (!m_timelineArea->isEnabled() && !force) return;
1459     m_fileRevert->setEnabled(false);
1460     QString profileName;
1461     KUrl projectFolder;
1462     QPoint projectTracks(KdenliveSettings::videotracks(), KdenliveSettings::audiotracks());
1463     if (!showProjectSettings) {
1464         if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
1465         profileName = KdenliveSettings::default_profile();
1466         projectFolder = KdenliveSettings::defaultprojectfolder();
1467     } else {
1468         ProjectSettings *w = new ProjectSettings(NULL, QStringList(), projectTracks.x(), projectTracks.y(), KdenliveSettings::defaultprojectfolder(), false, true, this);
1469         if (w->exec() != QDialog::Accepted) return;
1470         if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
1471         if (KdenliveSettings::videothumbnails() != w->enableVideoThumbs()) slotSwitchVideoThumbs();
1472         if (KdenliveSettings::audiothumbnails() != w->enableAudioThumbs()) slotSwitchAudioThumbs();
1473         profileName = w->selectedProfile();
1474         projectFolder = w->selectedFolder();
1475         projectTracks = w->tracks();
1476         delete w;
1477     }
1478     m_timelineArea->setEnabled(true);
1479     m_projectList->setEnabled(true);
1480     KdenliveDoc *doc = new KdenliveDoc(KUrl(), projectFolder, m_commandStack, profileName, projectTracks, m_projectMonitor->render, this);
1481     doc->m_autosave = new KAutoSaveFile(KUrl(), doc);
1482     bool ok;
1483     TrackView *trackView = new TrackView(doc, &ok, this);
1484     m_timelineArea->addTab(trackView, KIcon("kdenlive"), doc->description());
1485     if (!ok) {
1486         // MLT is broken
1487         //m_timelineArea->setEnabled(false);
1488         //m_projectList->setEnabled(false);
1489         slotPreferences(6);
1490         return;
1491     }
1492     if (m_timelineArea->count() == 1) {
1493         connectDocumentInfo(doc);
1494         connectDocument(trackView, doc);
1495     } else m_timelineArea->setTabBarHidden(false);
1496     m_monitorManager->activateMonitor("clip");
1497     m_closeAction->setEnabled(m_timelineArea->count() > 1);
1498 }
1499
1500 void MainWindow::activateDocument()
1501 {
1502     if (m_timelineArea->currentWidget() == NULL || !m_timelineArea->isEnabled()) return;
1503     TrackView *currentTab = (TrackView *) m_timelineArea->currentWidget();
1504     KdenliveDoc *currentDoc = currentTab->document();
1505     connectDocumentInfo(currentDoc);
1506     connectDocument(currentTab, currentDoc);
1507 }
1508
1509 void MainWindow::closeCurrentDocument(bool saveChanges)
1510 {
1511     QWidget *w = m_timelineArea->currentWidget();
1512     if (!w) return;
1513     // closing current document
1514     int ix = m_timelineArea->currentIndex() + 1;
1515     if (ix == m_timelineArea->count()) ix = 0;
1516     m_timelineArea->setCurrentIndex(ix);
1517     TrackView *tabToClose = (TrackView *) w;
1518     KdenliveDoc *docToClose = tabToClose->document();
1519     if (docToClose && docToClose->isModified() && saveChanges) {
1520         switch (KMessageBox::warningYesNoCancel(this, i18n("Save changes to document?"))) {
1521         case KMessageBox::Yes :
1522             // save document here. If saving fails, return false;
1523             if (saveFile() == false) return;
1524             break;
1525         case KMessageBox::Cancel :
1526             return;
1527             break;
1528         default:
1529             break;
1530         }
1531     }
1532     m_clipMonitor->slotSetXml(NULL);
1533     m_timelineArea->removeTab(m_timelineArea->indexOf(w));
1534     if (m_timelineArea->count() == 1) {
1535         m_timelineArea->setTabBarHidden(true);
1536         m_closeAction->setEnabled(false);
1537     }
1538     if (docToClose == m_activeDocument) {
1539         delete m_activeDocument;
1540         m_activeDocument = NULL;
1541         m_effectStack->clear();
1542         m_transitionConfig->slotTransitionItemSelected(NULL, 0, QPoint(), false);
1543     } else delete docToClose;
1544     if (w == m_activeTimeline) {
1545         delete m_activeTimeline;
1546         m_activeTimeline = NULL;
1547     } else delete w;
1548 }
1549
1550 bool MainWindow::saveFileAs(const QString &outputFileName)
1551 {
1552     QString currentSceneList;
1553     m_monitorManager->stopActiveMonitor();
1554     if (KdenliveSettings::dropbframes()) {
1555         KdenliveSettings::setDropbframes(false);
1556         m_activeDocument->clipManager()->updatePreviewSettings();
1557         currentSceneList = m_projectMonitor->sceneList();
1558         KdenliveSettings::setDropbframes(true);
1559         m_activeDocument->clipManager()->updatePreviewSettings();
1560     } else currentSceneList = m_projectMonitor->sceneList();
1561
1562     if (m_activeDocument->saveSceneList(outputFileName, currentSceneList) == false)
1563         return false;
1564
1565     // Save timeline thumbnails
1566     m_activeTimeline->projectView()->saveThumbnails();
1567     m_activeDocument->setUrl(KUrl(outputFileName));
1568     if (m_activeDocument->m_autosave == NULL) {
1569         m_activeDocument->m_autosave = new KAutoSaveFile(KUrl(outputFileName), this);
1570     } else m_activeDocument->m_autosave->setManagedFile(KUrl(outputFileName));
1571     setCaption(m_activeDocument->description());
1572     m_timelineArea->setTabText(m_timelineArea->currentIndex(), m_activeDocument->description());
1573     m_timelineArea->setTabToolTip(m_timelineArea->currentIndex(), m_activeDocument->url().path());
1574     m_activeDocument->setModified(false);
1575     m_fileOpenRecent->addUrl(KUrl(outputFileName));
1576     m_fileRevert->setEnabled(true);
1577     return true;
1578 }
1579
1580 bool MainWindow::saveFileAs()
1581 {
1582     // Check that the Kdenlive mime type is correctly installed
1583     QString mimetype = "application/x-kdenlive";
1584     KMimeType::Ptr mime = KMimeType::mimeType(mimetype);
1585     if (!mime) mimetype = "*.kdenlive";
1586
1587     QString outputFile = KFileDialog::getSaveFileName(KUrl(), mimetype);
1588     if (outputFile.isEmpty()) return false;
1589     if (QFile::exists(outputFile)) {
1590         if (KMessageBox::questionYesNo(this, i18n("File already exists.\nDo you want to overwrite it?")) == KMessageBox::No) return false;
1591     }
1592     return saveFileAs(outputFile);
1593 }
1594
1595 bool MainWindow::saveFile()
1596 {
1597     if (!m_activeDocument) return true;
1598     if (m_activeDocument->url().isEmpty()) {
1599         return saveFileAs();
1600     } else {
1601         bool result = saveFileAs(m_activeDocument->url().path());
1602         m_activeDocument->m_autosave->resize(0);
1603         return result;
1604     }
1605 }
1606
1607 void MainWindow::openFile()
1608 {
1609     if (!m_startUrl.isEmpty()) {
1610         openFile(m_startUrl);
1611         m_startUrl = KUrl();
1612         return;
1613     }
1614     // Check that the Kdenlive mime type is correctly installed
1615     QString mimetype = "application/x-kdenlive";
1616     KMimeType::Ptr mime = KMimeType::mimeType(mimetype);
1617     if (!mime) mimetype = "*.kdenlive";
1618
1619     KUrl url = KFileDialog::getOpenUrl(KUrl("kfiledialog:///projectfolder"), mimetype);
1620     if (url.isEmpty()) return;
1621     m_fileOpenRecent->addUrl(url);
1622     openFile(url);
1623 }
1624
1625 void MainWindow::openLastFile()
1626 {
1627     KSharedConfigPtr config = KGlobal::config();
1628     KUrl::List urls = m_fileOpenRecent->urls();
1629     //WARNING: this is buggy, we get a random url, not the last one. Bug in KRecentFileAction?
1630     if (urls.isEmpty()) newFile(false);
1631     else openFile(urls.last());
1632 }
1633
1634 void MainWindow::openFile(const KUrl &url)
1635 {
1636     // Check if the document is already opened
1637     const int ct = m_timelineArea->count();
1638     bool isOpened = false;
1639     int i;
1640     for (i = 0; i < ct; i++) {
1641         TrackView *tab = (TrackView *) m_timelineArea->widget(i);
1642         KdenliveDoc *doc = tab->document();
1643         if (doc->url() == url) {
1644             isOpened = true;
1645             break;
1646         }
1647     }
1648     if (isOpened) {
1649         m_timelineArea->setCurrentIndex(i);
1650         return;
1651     }
1652
1653     // Check for backup file
1654     QList<KAutoSaveFile *> staleFiles = KAutoSaveFile::staleFiles(url);
1655     if (!staleFiles.isEmpty()) {
1656         if (KMessageBox::questionYesNo(this,
1657                                        i18n("Auto-saved files exist. Do you want to recover them now?"),
1658                                        i18n("File Recovery"),
1659                                        KGuiItem(i18n("Recover")), KGuiItem(i18n("Don't recover"))) == KMessageBox::Yes) {
1660             recoverFiles(staleFiles);
1661             return;
1662         } else {
1663             // remove the stale files
1664             foreach(KAutoSaveFile *stale, staleFiles) {
1665                 stale->open(QIODevice::ReadWrite);
1666                 delete stale;
1667             }
1668         }
1669     }
1670     if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
1671     m_messageLabel->setMessage(i18n("Opening file %1", url.path()), InformationMessage);
1672     m_messageLabel->repaint();
1673     doOpenFile(url, NULL);
1674 }
1675
1676 void MainWindow::doOpenFile(const KUrl &url, KAutoSaveFile *stale)
1677 {
1678     if (!m_timelineArea->isEnabled()) return;
1679     m_fileRevert->setEnabled(true);
1680     KdenliveDoc *doc = new KdenliveDoc(url, KdenliveSettings::defaultprojectfolder(), m_commandStack, KdenliveSettings::default_profile(), QPoint(KdenliveSettings::videotracks(), KdenliveSettings::audiotracks()), m_projectMonitor->render, this);
1681     if (stale == NULL) {
1682         stale = new KAutoSaveFile(url, doc);
1683         doc->m_autosave = stale;
1684     } else {
1685         doc->m_autosave = stale;
1686         doc->setUrl(stale->managedFile());
1687         doc->setModified(true);
1688         stale->setParent(doc);
1689     }
1690     connectDocumentInfo(doc);
1691     bool ok;
1692     TrackView *trackView = new TrackView(doc, &ok, this);
1693     m_timelineArea->setCurrentIndex(m_timelineArea->addTab(trackView, KIcon("kdenlive"), doc->description()));
1694     if (!ok) {
1695         m_timelineArea->setEnabled(false);
1696         m_projectList->setEnabled(false);
1697         KMessageBox::sorry(this, i18n("Cannot open file %1.\nProject is corrupted.", url.path()));
1698         slotGotProgressInfo(QString(), -1);
1699         newFile(false, true);
1700         return;
1701     }
1702     m_timelineArea->setTabToolTip(m_timelineArea->currentIndex(), doc->url().path());
1703     trackView->setDuration(trackView->duration());
1704     trackView->projectView()->initCursorPos(m_projectMonitor->render->seekPosition().frames(doc->fps()));
1705
1706     if (m_timelineArea->count() > 1) m_timelineArea->setTabBarHidden(false);
1707     slotGotProgressInfo(QString(), -1);
1708     m_projectMonitor->adjustRulerSize(trackView->duration());
1709     m_projectMonitor->slotZoneMoved(trackView->inPoint(), trackView->outPoint());
1710     m_clipMonitor->refreshMonitor(true);
1711 }
1712
1713 void MainWindow::recoverFiles(QList<KAutoSaveFile *> staleFiles)
1714 {
1715     if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
1716     foreach(KAutoSaveFile *stale, staleFiles) {
1717         /*if (!stale->open(QIODevice::QIODevice::ReadOnly)) {
1718                   // show an error message; we could not steal the lockfile
1719                   // maybe another application got to the file before us?
1720                   delete stale;
1721                   continue;
1722         }*/
1723         kDebug() << "// OPENING RECOVERY: " << stale->fileName() << "\nMANAGED: " << stale->managedFile().path();
1724         // the stalefiles also contain ".lock" files so we must ignore them... bug in KAutoSaveFile?
1725         if (!stale->fileName().endsWith(".lock")) doOpenFile(KUrl(stale->fileName()), stale);
1726         else KIO::NetAccess::del(KUrl(stale->fileName()), this);
1727     }
1728 }
1729
1730
1731 void MainWindow::parseProfiles(const QString &mltPath)
1732 {
1733     // kDebug()<<" + + YOUR MLT INSTALL WAS FOUND IN: "<< MLT_PREFIX <<endl;
1734
1735     //KdenliveSettings::setDefaulttmpfolder();
1736     if (!mltPath.isEmpty()) {
1737         KdenliveSettings::setMltpath(mltPath + "/share/mlt/profiles/");
1738         KdenliveSettings::setRendererpath(mltPath + "/bin/melt");
1739     }
1740
1741     if (KdenliveSettings::mltpath().isEmpty()) {
1742         KdenliveSettings::setMltpath(QString(MLT_PREFIX) + QString("/share/mlt/profiles/"));
1743     }
1744     if (KdenliveSettings::rendererpath().isEmpty() || KdenliveSettings::rendererpath().endsWith("inigo")) {
1745         QString meltPath = QString(MLT_PREFIX) + QString("/bin/melt");
1746         if (!QFile::exists(meltPath))
1747             meltPath = KStandardDirs::findExe("melt");
1748         KdenliveSettings::setRendererpath(meltPath);
1749     }
1750     QStringList profilesFilter;
1751     profilesFilter << "*";
1752     QStringList profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
1753
1754     if (profilesList.isEmpty()) {
1755         // Cannot find MLT path, try finding melt
1756         QString profilePath = KdenliveSettings::rendererpath();
1757         if (!profilePath.isEmpty()) {
1758             profilePath = profilePath.section('/', 0, -3);
1759             KdenliveSettings::setMltpath(profilePath + "/share/mlt/profiles/");
1760             QStringList profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
1761         }
1762
1763         if (profilesList.isEmpty()) {
1764             // Cannot find the MLT profiles, ask for location
1765             KUrlRequesterDialog *getUrl = new KUrlRequesterDialog(KdenliveSettings::mltpath(), i18n("Cannot find your Mlt profiles, please give the path"), this);
1766             getUrl->fileDialog()->setMode(KFile::Directory);
1767             if (getUrl->exec() == QDialog::Rejected) {
1768                 ::exit(0);
1769             }
1770             KUrl mltPath = getUrl->selectedUrl();
1771             delete getUrl;
1772             if (mltPath.isEmpty()) ::exit(0);
1773             KdenliveSettings::setMltpath(mltPath.path(KUrl::AddTrailingSlash));
1774             QStringList profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
1775         }
1776     }
1777
1778     if (KdenliveSettings::rendererpath().isEmpty()) {
1779         // Cannot find the MLT melt renderer, ask for location
1780         KUrlRequesterDialog *getUrl = new KUrlRequesterDialog(QString(), i18n("Cannot find the melt program required for rendering (part of Mlt)"), this);
1781         if (getUrl->exec() == QDialog::Rejected) {
1782             ::exit(0);
1783         }
1784         KUrl rendererPath = getUrl->selectedUrl();
1785         delete getUrl;
1786         if (rendererPath.isEmpty()) ::exit(0);
1787         KdenliveSettings::setRendererpath(rendererPath.path());
1788     }
1789
1790     kDebug() << "RESULTING MLT PATH: " << KdenliveSettings::mltpath();
1791
1792     // Parse MLT profiles to build a list of available video formats
1793     if (profilesList.isEmpty()) parseProfiles();
1794 }
1795
1796
1797 void MainWindow::slotEditProfiles()
1798 {
1799     ProfilesDialog *w = new ProfilesDialog;
1800     if (w->exec() == QDialog::Accepted) {
1801         KdenliveSettingsDialog* d = static_cast <KdenliveSettingsDialog*>(KConfigDialog::exists("settings"));
1802         if (d) d->checkProfile();
1803     }
1804     delete w;
1805 }
1806
1807 void MainWindow::slotDetectAudioDriver()
1808 {
1809     /* WARNING: do not use this method because sometimes detects wrong driver (pulse instead of alsa),
1810     leading to no audio output, see bug #934 */
1811
1812     //decide which audio driver is really best, in some cases SDL is wrong
1813     if (KdenliveSettings::audiodrivername().isEmpty()) {
1814         QString driver;
1815         KProcess readProcess;
1816         //PulseAudio needs to be selected if it exists, the ALSA pulse pcm device is not fast enough.
1817         if (!KStandardDirs::findExe("pactl").isEmpty()) {
1818             readProcess.setOutputChannelMode(KProcess::OnlyStdoutChannel);
1819             readProcess.setProgram("pactl", QStringList() << "stat");
1820             readProcess.execute(2000); // Kill it after 2 seconds
1821
1822             QString result = QString(readProcess.readAllStandardOutput());
1823             kDebug() << "// / / / / / READING PACTL: ";
1824             kDebug() << result;
1825             if (!result.isEmpty()) {
1826                 driver = "pulse";
1827                 kDebug() << "// / / / / PULSEAUDIO DETECTED";
1828             }
1829         }
1830         //put others here
1831         KdenliveSettings::setAutoaudiodrivername(driver);
1832     }
1833 }
1834
1835 void MainWindow::slotEditProjectSettings()
1836 {
1837     QPoint p = m_activeDocument->getTracksCount();
1838     ProjectSettings *w = new ProjectSettings(m_projectList, m_activeTimeline->projectView()->extractTransitionsLumas(), p.x(), p.y(), m_activeDocument->projectFolder().path(), true, !m_activeDocument->isModified(), this);
1839
1840     if (w->exec() == QDialog::Accepted) {
1841         QString profile = w->selectedProfile();
1842         m_activeDocument->setProjectFolder(w->selectedFolder());
1843         if (m_renderWidget) m_renderWidget->setDocumentPath(w->selectedFolder().path(KUrl::AddTrailingSlash));
1844         if (KdenliveSettings::videothumbnails() != w->enableVideoThumbs()) slotSwitchVideoThumbs();
1845         if (KdenliveSettings::audiothumbnails() != w->enableAudioThumbs()) slotSwitchAudioThumbs();
1846         if (m_activeDocument->profilePath() != profile) {
1847             // Profile was changed
1848             double dar = m_activeDocument->dar();
1849
1850             // Deselect current effect / transition
1851             m_effectStack->slotClipItemSelected(NULL, 0);
1852             m_transitionConfig->slotTransitionItemSelected(NULL, 0, QPoint(), false);
1853             m_clipMonitor->slotSetXml(NULL);
1854             bool updateFps = m_activeDocument->setProfilePath(profile);
1855             KdenliveSettings::setCurrent_profile(profile);
1856             KdenliveSettings::setProject_fps(m_activeDocument->fps());
1857             setCaption(m_activeDocument->description(), m_activeDocument->isModified());
1858
1859             m_activeDocument->clipManager()->clearUnusedProducers();
1860             m_monitorManager->resetProfiles(m_activeDocument->timecode());
1861
1862             m_transitionConfig->updateProjectFormat(m_activeDocument->mltProfile(), m_activeDocument->timecode(), m_activeDocument->tracksList());
1863             m_effectStack->updateProjectFormat(m_activeDocument->mltProfile(), m_activeDocument->timecode());
1864             m_projectList->updateProjectFormat(m_activeDocument->timecode());
1865             if (m_renderWidget) m_renderWidget->setProfile(m_activeDocument->mltProfile());
1866             m_timelineArea->setTabText(m_timelineArea->currentIndex(), m_activeDocument->description());
1867             //m_activeDocument->clipManager()->resetProducersList(m_projectMonitor->render->producersList());
1868             if (dar != m_activeDocument->dar()) m_projectList->reloadClipThumbnails();
1869             if (updateFps) m_activeTimeline->updateProjectFps();
1870             m_activeDocument->setModified(true);
1871             m_commandStack->activeStack()->clear();
1872             //Update the mouse position display so it will display in DF/NDF format by default based on the project setting.
1873             slotUpdateMousePosition(0);
1874             // We need to desactivate & reactivate monitors to get a refresh
1875             //m_monitorManager->switchMonitors();
1876         }
1877     }
1878     delete w;
1879 }
1880
1881
1882 void MainWindow::slotRenderProject()
1883 {
1884     if (!m_renderWidget) {
1885         QString projectfolder = m_activeDocument ? m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash) : KdenliveSettings::defaultprojectfolder();
1886         m_renderWidget = new RenderWidget(projectfolder, this);
1887         connect(m_renderWidget, SIGNAL(shutdown()), this, SLOT(slotShutdown()));
1888         connect(m_renderWidget, SIGNAL(selectedRenderProfile(const QString &, const QString &, const QString &, const QString&)), this, SLOT(slotSetDocumentRenderProfile(const QString &, const QString &, const QString &, const QString&)));
1889         connect(m_renderWidget, SIGNAL(prepareRenderingData(bool, bool, const QString&)), this, SLOT(slotPrepareRendering(bool, bool, const QString&)));
1890         connect(m_renderWidget, SIGNAL(abortProcess(const QString &)), this, SIGNAL(abortRenderJob(const QString &)));
1891         connect(m_renderWidget, SIGNAL(openDvdWizard(const QString &, const QString &)), this, SLOT(slotDvdWizard(const QString &, const QString &)));
1892         if (m_activeDocument) {
1893             m_renderWidget->setProfile(m_activeDocument->mltProfile());
1894             m_renderWidget->setGuides(m_activeDocument->guidesXml(), m_activeDocument->projectDuration());
1895             m_renderWidget->setDocumentPath(m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash));
1896             m_renderWidget->setRenderProfile(m_activeDocument->getDocumentProperty("renderdestination"), m_activeDocument->getDocumentProperty("rendercategory"), m_activeDocument->getDocumentProperty("renderprofile"), m_activeDocument->getDocumentProperty("renderurl"));
1897         }
1898     }
1899     /*TrackView *currentTab = (TrackView *) m_timelineArea->currentWidget();
1900     if (currentTab) m_renderWidget->setTimeline(currentTab);
1901     m_renderWidget->setDocument(m_activeDocument);*/
1902     m_renderWidget->show();
1903     m_renderWidget->showNormal();
1904 }
1905
1906 void MainWindow::setRenderingProgress(const QString &url, int progress)
1907 {
1908     if (m_renderWidget) m_renderWidget->setRenderJob(url, progress);
1909 }
1910
1911 void MainWindow::setRenderingFinished(const QString &url, int status, const QString &error)
1912 {
1913     if (m_renderWidget) m_renderWidget->setRenderStatus(url, status, error);
1914 }
1915
1916 void MainWindow::slotCleanProject()
1917 {
1918     if (KMessageBox::warningContinueCancel(this, i18n("This will remove all unused clips from your project."), i18n("Clean up project")) == KMessageBox::Cancel) return;
1919     m_projectList->cleanup();
1920 }
1921
1922 void MainWindow::slotUpdateMousePosition(int pos)
1923 {
1924     if (m_activeDocument)
1925         switch (m_timecodeFormat->currentIndex()) {
1926         case 0:
1927             statusBar()->changeItem(m_activeDocument->timecode().getTimecodeFromFrames(pos), ID_TIMELINE_POS);
1928             break;
1929         default:
1930             statusBar()->changeItem(QString::number(pos), ID_TIMELINE_POS);
1931         }
1932 }
1933
1934 void MainWindow::slotUpdateDocumentState(bool modified)
1935 {
1936     if (!m_activeDocument) return;
1937     setCaption(m_activeDocument->description(), modified);
1938     m_saveAction->setEnabled(modified);
1939     if (modified) {
1940         m_timelineArea->setTabTextColor(m_timelineArea->currentIndex(), palette().color(QPalette::Link));
1941         m_timelineArea->setTabIcon(m_timelineArea->currentIndex(), KIcon("document-save"));
1942     } else {
1943         m_timelineArea->setTabTextColor(m_timelineArea->currentIndex(), palette().color(QPalette::Text));
1944         m_timelineArea->setTabIcon(m_timelineArea->currentIndex(), KIcon("kdenlive"));
1945     }
1946 }
1947
1948 void MainWindow::connectDocumentInfo(KdenliveDoc *doc)
1949 {
1950     if (m_activeDocument) {
1951         if (m_activeDocument == doc) return;
1952         disconnect(m_activeDocument, SIGNAL(progressInfo(const QString &, int)), this, SLOT(slotGotProgressInfo(const QString &, int)));
1953     }
1954     connect(doc, SIGNAL(progressInfo(const QString &, int)), this, SLOT(slotGotProgressInfo(const QString &, int)));
1955 }
1956
1957 void MainWindow::connectDocument(TrackView *trackView, KdenliveDoc *doc)   //changed
1958 {
1959     //m_projectMonitor->stop();
1960     m_closeAction->setEnabled(m_timelineArea->count() > 1);
1961     kDebug() << "///////////////////   CONNECTING DOC TO PROJECT VIEW ////////////////";
1962     if (m_activeDocument) {
1963         if (m_activeDocument == doc) return;
1964         if (m_activeTimeline) {
1965             disconnect(m_projectMonitor, SIGNAL(renderPosition(int)), m_activeTimeline, SLOT(moveCursorPos(int)));
1966             disconnect(m_projectMonitor, SIGNAL(zoneUpdated(QPoint)), m_activeTimeline, SLOT(slotSetZone(QPoint)));
1967             disconnect(m_projectMonitor, SIGNAL(durationChanged(int)), m_activeTimeline, SLOT(setDuration(int)));
1968             disconnect(m_projectList, SIGNAL(projectModified()), m_activeDocument, SLOT(setModified()));
1969             disconnect(m_projectMonitor->render, SIGNAL(refreshDocumentProducers()), m_activeDocument, SLOT(checkProjectClips()));
1970
1971             disconnect(m_activeDocument, SIGNAL(guidesUpdated()), this, SLOT(slotGuidesUpdated()));
1972             disconnect(m_activeDocument, SIGNAL(addProjectClip(DocClipBase *, bool)), m_projectList, SLOT(slotAddClip(DocClipBase *, bool)));
1973             disconnect(m_activeDocument, SIGNAL(resetProjectList()), m_projectList, SLOT(slotResetProjectList()));
1974             disconnect(m_activeDocument, SIGNAL(signalDeleteProjectClip(const QString &)), m_projectList, SLOT(slotDeleteClip(const QString &)));
1975             disconnect(m_activeDocument, SIGNAL(updateClipDisplay(const QString &)), m_projectList, SLOT(slotUpdateClip(const QString &)));
1976             disconnect(m_activeDocument, SIGNAL(selectLastAddedClip(const QString &)), m_projectList, SLOT(slotSelectClip(const QString &)));
1977             disconnect(m_activeDocument, SIGNAL(deleteTimelineClip(const QString &)), m_activeTimeline, SLOT(slotDeleteClip(const QString &)));
1978             disconnect(m_activeTimeline->projectView(), SIGNAL(clipItemSelected(ClipItem*, int)), m_effectStack, SLOT(slotClipItemSelected(ClipItem*, int)));
1979             disconnect(m_activeTimeline->projectView(), SIGNAL(clipItemSelected(ClipItem*, int)), this, SLOT(slotActivateEffectStackView()));
1980             disconnect(m_activeTimeline->projectView(), SIGNAL(transitionItemSelected(Transition*, int, QPoint, bool)), m_transitionConfig, SLOT(slotTransitionItemSelected(Transition*, int, QPoint, bool)));
1981             disconnect(m_activeTimeline->projectView(), SIGNAL(transitionItemSelected(Transition*, int, QPoint, bool)), this, SLOT(slotActivateTransitionView(Transition *)));
1982             disconnect(m_activeTimeline->projectView(), SIGNAL(playMonitor()), m_projectMonitor, SLOT(slotPlay()));
1983             disconnect(m_zoomSlider, SIGNAL(valueChanged(int)), m_activeTimeline, SLOT(slotChangeZoom(int)));
1984             disconnect(m_activeTimeline->projectView(), SIGNAL(displayMessage(const QString&, MessageType)), m_messageLabel, SLOT(setMessage(const QString&, MessageType)));
1985             disconnect(m_activeTimeline->projectView(), SIGNAL(showClipFrame(DocClipBase *, QPoint, const int)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *, QPoint, const int)));
1986             disconnect(m_activeTimeline, SIGNAL(cursorMoved()), m_projectMonitor, SLOT(activateMonitor()));
1987             disconnect(m_activeTimeline, SIGNAL(insertTrack(int)), this, SLOT(slotInsertTrack(int)));
1988             disconnect(m_activeTimeline, SIGNAL(deleteTrack(int)), this, SLOT(slotDeleteTrack(int)));
1989             disconnect(m_activeTimeline, SIGNAL(changeTrack(int)), this, SLOT(slotChangeTrack(int)));
1990             disconnect(m_activeDocument, SIGNAL(docModified(bool)), this, SLOT(slotUpdateDocumentState(bool)));
1991             disconnect(m_effectStack, SIGNAL(updateClipEffect(ClipItem*, QDomElement, QDomElement, int)), m_activeTimeline->projectView(), SLOT(slotUpdateClipEffect(ClipItem*, QDomElement, QDomElement, int)));
1992             disconnect(m_effectStack, SIGNAL(removeEffect(ClipItem*, QDomElement)), m_activeTimeline->projectView(), SLOT(slotDeleteEffect(ClipItem*, QDomElement)));
1993             disconnect(m_effectStack, SIGNAL(changeEffectState(ClipItem*, int, bool)), m_activeTimeline->projectView(), SLOT(slotChangeEffectState(ClipItem*, int, bool)));
1994             disconnect(m_effectStack, SIGNAL(changeEffectPosition(ClipItem*, int, int)), m_activeTimeline->projectView(), SLOT(slotChangeEffectPosition(ClipItem*, int, int)));
1995             disconnect(m_effectStack, SIGNAL(refreshEffectStack(ClipItem*)), m_activeTimeline->projectView(), SLOT(slotRefreshEffects(ClipItem*)));
1996             disconnect(m_effectStack, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
1997             disconnect(m_transitionConfig, SIGNAL(transitionUpdated(Transition *, QDomElement)), m_activeTimeline->projectView() , SLOT(slotTransitionUpdated(Transition *, QDomElement)));
1998             disconnect(m_transitionConfig, SIGNAL(seekTimeline(int)), m_activeTimeline->projectView() , SLOT(setCursorPos(int)));
1999             disconnect(m_activeTimeline->projectView(), SIGNAL(activateDocumentMonitor()), m_projectMonitor, SLOT(activateMonitor()));
2000             disconnect(m_activeTimeline, SIGNAL(zoneMoved(int, int)), this, SLOT(slotZoneMoved(int, int)));
2001             disconnect(m_projectList, SIGNAL(loadingIsOver()), m_activeTimeline->projectView(), SLOT(slotUpdateAllThumbs()));
2002             disconnect(m_projectList, SIGNAL(displayMessage(const QString&, int)), this, SLOT(slotGotProgressInfo(const QString&, int)));
2003             disconnect(m_projectList, SIGNAL(clipNeedsReload(const QString&, bool)), m_activeTimeline->projectView(), SLOT(slotUpdateClip(const QString &, bool)));
2004             m_effectStack->clear();
2005         }
2006         //m_activeDocument->setRenderer(NULL);
2007         disconnect(m_projectList, SIGNAL(clipSelected(DocClipBase *)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *)));
2008         disconnect(m_projectList, SIGNAL(refreshClip()), m_clipMonitor, SLOT(refreshMonitor()));
2009         m_clipMonitor->stop();
2010     }
2011     KdenliveSettings::setCurrent_profile(doc->profilePath());
2012     KdenliveSettings::setProject_fps(doc->fps());
2013     m_monitorManager->resetProfiles(doc->timecode());
2014     m_projectList->setDocument(doc);
2015     m_transitionConfig->updateProjectFormat(doc->mltProfile(), doc->timecode(), doc->tracksList());
2016     m_effectStack->updateProjectFormat(doc->mltProfile(), doc->timecode());
2017     connect(m_projectList, SIGNAL(clipSelected(DocClipBase *, QPoint)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *, QPoint)));
2018     connect(m_projectList, SIGNAL(refreshClip()), m_clipMonitor, SLOT(refreshMonitor()));
2019     connect(m_projectList, SIGNAL(clipNeedsReload(const QString&, bool)), trackView->projectView(), SLOT(slotUpdateClip(const QString &, bool)));
2020
2021     connect(m_projectList, SIGNAL(projectModified()), doc, SLOT(setModified()));
2022     connect(m_projectList, SIGNAL(clipNameChanged(const QString, const QString)), trackView->projectView(), SLOT(clipNameChanged(const QString, const QString)));
2023
2024
2025     connect(trackView, SIGNAL(cursorMoved()), m_projectMonitor, SLOT(activateMonitor()));
2026     connect(trackView, SIGNAL(insertTrack(int)), this, SLOT(slotInsertTrack(int)));
2027     connect(trackView, SIGNAL(deleteTrack(int)), this, SLOT(slotDeleteTrack(int)));
2028     connect(trackView, SIGNAL(changeTrack(int)), this, SLOT(slotChangeTrack(int)));
2029     connect(trackView, SIGNAL(updateTracksInfo()), this, SLOT(slotUpdateTrackInfo()));
2030     connect(trackView, SIGNAL(mousePosition(int)), this, SLOT(slotUpdateMousePosition(int)));
2031     connect(m_projectMonitor, SIGNAL(renderPosition(int)), trackView, SLOT(moveCursorPos(int)));
2032     connect(m_projectMonitor, SIGNAL(zoneUpdated(QPoint)), trackView, SLOT(slotSetZone(QPoint)));
2033     connect(m_clipMonitor, SIGNAL(zoneUpdated(QPoint)), m_projectList, SLOT(slotUpdateClipCut(QPoint)));
2034     connect(m_projectMonitor, SIGNAL(durationChanged(int)), trackView, SLOT(setDuration(int)));
2035     connect(m_projectMonitor->render, SIGNAL(refreshDocumentProducers()), doc, SLOT(checkProjectClips()));
2036
2037     connect(doc, SIGNAL(addProjectClip(DocClipBase *, bool)), m_projectList, SLOT(slotAddClip(DocClipBase *, bool)));
2038     connect(doc, SIGNAL(resetProjectList()), m_projectList, SLOT(slotResetProjectList()));
2039     connect(doc, SIGNAL(signalDeleteProjectClip(const QString &)), m_projectList, SLOT(slotDeleteClip(const QString &)));
2040     connect(doc, SIGNAL(updateClipDisplay(const QString &)), m_projectList, SLOT(slotUpdateClip(const QString &)));
2041     connect(doc, SIGNAL(selectLastAddedClip(const QString &)), m_projectList, SLOT(slotSelectClip(const QString &)));
2042
2043     connect(doc, SIGNAL(deleteTimelineClip(const QString &)), trackView, SLOT(slotDeleteClip(const QString &)));
2044     connect(doc, SIGNAL(docModified(bool)), this, SLOT(slotUpdateDocumentState(bool)));
2045     connect(doc, SIGNAL(guidesUpdated()), this, SLOT(slotGuidesUpdated()));
2046
2047
2048     connect(trackView->projectView(), SIGNAL(clipItemSelected(ClipItem*, int)), m_effectStack, SLOT(slotClipItemSelected(ClipItem*, int)));
2049     connect(trackView->projectView(), SIGNAL(updateClipMarkers(DocClipBase *)), this, SLOT(slotUpdateClipMarkers(DocClipBase*)));
2050
2051     connect(trackView->projectView(), SIGNAL(clipItemSelected(ClipItem*, int)), this, SLOT(slotActivateEffectStackView()));
2052     connect(trackView->projectView(), SIGNAL(transitionItemSelected(Transition*, int, QPoint, bool)), m_transitionConfig, SLOT(slotTransitionItemSelected(Transition*, int, QPoint, bool)));
2053     connect(trackView->projectView(), SIGNAL(transitionItemSelected(Transition*, int, QPoint, bool)), this, SLOT(slotActivateTransitionView(Transition *)));
2054     m_zoomSlider->setValue(doc->zoom().x());
2055     connect(m_zoomSlider, SIGNAL(valueChanged(int)), trackView, SLOT(slotChangeZoom(int)));
2056     connect(trackView->projectView(), SIGNAL(zoomIn()), this, SLOT(slotZoomIn()));
2057     connect(trackView->projectView(), SIGNAL(zoomOut()), this, SLOT(slotZoomOut()));
2058     connect(trackView, SIGNAL(setZoom(int)), this, SLOT(slotSetZoom(int)));
2059     connect(trackView->projectView(), SIGNAL(displayMessage(const QString&, MessageType)), m_messageLabel, SLOT(setMessage(const QString&, MessageType)));
2060
2061     connect(trackView->projectView(), SIGNAL(showClipFrame(DocClipBase *, QPoint, const int)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *, QPoint, const int)));
2062     connect(trackView->projectView(), SIGNAL(playMonitor()), m_projectMonitor, SLOT(slotPlay()));
2063
2064
2065     connect(m_effectStack, SIGNAL(updateClipEffect(ClipItem*, QDomElement, QDomElement, int)), trackView->projectView(), SLOT(slotUpdateClipEffect(ClipItem*, QDomElement, QDomElement, int)));
2066     connect(m_effectStack, SIGNAL(removeEffect(ClipItem*, QDomElement)), trackView->projectView(), SLOT(slotDeleteEffect(ClipItem*, QDomElement)));
2067     connect(m_effectStack, SIGNAL(changeEffectState(ClipItem*, int, bool)), trackView->projectView(), SLOT(slotChangeEffectState(ClipItem*, int, bool)));
2068     connect(m_effectStack, SIGNAL(changeEffectPosition(ClipItem*, int, int)), trackView->projectView(), SLOT(slotChangeEffectPosition(ClipItem*, int, int)));
2069     connect(m_effectStack, SIGNAL(refreshEffectStack(ClipItem*)), trackView->projectView(), SLOT(slotRefreshEffects(ClipItem*)));
2070     connect(m_transitionConfig, SIGNAL(transitionUpdated(Transition *, QDomElement)), trackView->projectView() , SLOT(slotTransitionUpdated(Transition *, QDomElement)));
2071     connect(m_transitionConfig, SIGNAL(seekTimeline(int)), trackView->projectView() , SLOT(setCursorPos(int)));
2072     connect(m_effectStack, SIGNAL(seekTimeline(int)), trackView->projectView() , SLOT(setCursorPos(int)));
2073     connect(m_effectStack, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
2074
2075     connect(trackView->projectView(), SIGNAL(activateDocumentMonitor()), m_projectMonitor, SLOT(activateMonitor()));
2076     connect(trackView, SIGNAL(zoneMoved(int, int)), this, SLOT(slotZoneMoved(int, int)));
2077     connect(m_projectList, SIGNAL(loadingIsOver()), trackView->projectView(), SLOT(slotUpdateAllThumbs()));
2078     connect(m_projectList, SIGNAL(displayMessage(const QString&, int)), this, SLOT(slotGotProgressInfo(const QString&, int)));
2079
2080
2081     trackView->projectView()->setContextMenu(m_timelineContextMenu, m_timelineContextClipMenu, m_timelineContextTransitionMenu, m_clipTypeGroup, (QMenu*)(factory()->container("marker_menu", this)));
2082     m_activeTimeline = trackView;
2083     if (m_renderWidget) {
2084         m_renderWidget->setProfile(doc->mltProfile());
2085         m_renderWidget->setGuides(doc->guidesXml(), doc->projectDuration());
2086         m_renderWidget->setDocumentPath(doc->projectFolder().path(KUrl::AddTrailingSlash));
2087         m_renderWidget->setRenderProfile(doc->getDocumentProperty("renderdestination"), doc->getDocumentProperty("rendercategory"), doc->getDocumentProperty("renderprofile"), doc->getDocumentProperty("renderurl"));
2088     }
2089     //doc->setRenderer(m_projectMonitor->render);
2090     m_commandStack->setActiveStack(doc->commandStack());
2091     KdenliveSettings::setProject_display_ratio(doc->dar());
2092     //doc->clipManager()->checkAudioThumbs();
2093
2094     //m_overView->setScene(trackView->projectScene());
2095     //m_overView->scale(m_overView->width() / trackView->duration(), m_overView->height() / (50 * trackView->tracksNumber()));
2096     //m_overView->fitInView(m_overView->itemAt(0, 50), Qt::KeepAspectRatio);
2097
2098     setCaption(doc->description(), doc->isModified());
2099     m_saveAction->setEnabled(doc->isModified());
2100     m_normalEditTool->setChecked(true);
2101     m_activeDocument = doc;
2102     m_activeTimeline->updateProjectFps();
2103     m_activeDocument->checkProjectClips();
2104     if (KdenliveSettings::dropbframes()) slotUpdatePreviewSettings();
2105     //Update the mouse position display so it will display in DF/NDF format by default based on the project setting.
2106     slotUpdateMousePosition(0);
2107     // set tool to select tool
2108     m_buttonSelectTool->setChecked(true);
2109 }
2110
2111 void MainWindow::slotZoneMoved(int start, int end)
2112 {
2113     m_activeDocument->setZone(start, end);
2114     m_projectMonitor->slotZoneMoved(start, end);
2115 }
2116
2117 void MainWindow::slotGuidesUpdated()
2118 {
2119     if (m_renderWidget) m_renderWidget->setGuides(m_activeDocument->guidesXml(), m_activeDocument->projectDuration());
2120 }
2121
2122 void MainWindow::slotPreferences(int page, int option)
2123 {
2124     //An instance of your dialog could be already created and could be
2125     // cached, in which case you want to display the cached dialog
2126     // instead of creating another one
2127     if (KConfigDialog::showDialog("settings")) {
2128         KdenliveSettingsDialog* d = static_cast <KdenliveSettingsDialog*>(KConfigDialog::exists("settings"));
2129         if (page != -1) d->showPage(page, option);
2130         return;
2131     }
2132
2133     // KConfigDialog didn't find an instance of this dialog, so lets
2134     // create it :
2135     KdenliveSettingsDialog* dialog = new KdenliveSettingsDialog(this);
2136     connect(dialog, SIGNAL(settingsChanged(const QString&)), this, SLOT(updateConfiguration()));
2137     //connect(dialog, SIGNAL(doResetProfile()), this, SLOT(slotDetectAudioDriver()));
2138     connect(dialog, SIGNAL(doResetProfile()), m_monitorManager, SLOT(slotResetProfiles()));
2139     connect(dialog, SIGNAL(updatePreviewSettings()), this, SLOT(slotUpdatePreviewSettings()));
2140 #ifndef Q_WS_MAC
2141     connect(dialog, SIGNAL(updateCaptureFolder()), m_recMonitor, SLOT(slotUpdateCaptureFolder()));
2142 #endif
2143     //connect(dialog, SIGNAL(updatePreviewSettings()), this, SLOT(slotUpdatePreviewSettings()));
2144     dialog->show();
2145     if (page != -1) dialog->showPage(page, option);
2146 }
2147
2148 void MainWindow::slotUpdatePreviewSettings()
2149 {
2150     if (m_activeDocument) {
2151         m_clipMonitor->slotSetXml(NULL);
2152         m_activeDocument->updatePreviewSettings();
2153     }
2154 }
2155
2156 void MainWindow::updateConfiguration()
2157 {
2158     //TODO: we should apply settings to all projects, not only the current one
2159     if (m_activeTimeline) {
2160         m_activeTimeline->refresh();
2161         m_activeTimeline->projectView()->checkAutoScroll();
2162         m_activeTimeline->projectView()->checkTrackHeight();
2163         if (m_activeDocument) m_activeDocument->clipManager()->checkAudioThumbs();
2164     }
2165     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
2166     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
2167
2168     // Update list of transcoding profiles
2169     loadTranscoders();
2170 #ifndef NO_JOGSHUTTLE
2171     activateShuttleDevice();
2172 #endif /* NO_JOGSHUTTLE */
2173
2174 }
2175
2176
2177 void MainWindow::slotSwitchVideoThumbs()
2178 {
2179     KdenliveSettings::setVideothumbnails(!KdenliveSettings::videothumbnails());
2180     if (m_activeTimeline) {
2181         m_activeTimeline->projectView()->slotUpdateAllThumbs();
2182     }
2183     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
2184 }
2185
2186 void MainWindow::slotSwitchAudioThumbs()
2187 {
2188     KdenliveSettings::setAudiothumbnails(!KdenliveSettings::audiothumbnails());
2189     if (m_activeTimeline) {
2190         m_activeTimeline->refresh();
2191         m_activeTimeline->projectView()->checkAutoScroll();
2192         if (m_activeDocument) m_activeDocument->clipManager()->checkAudioThumbs();
2193     }
2194     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
2195 }
2196
2197 void MainWindow::slotSwitchMarkersComments()
2198 {
2199     KdenliveSettings::setShowmarkers(!KdenliveSettings::showmarkers());
2200     if (m_activeTimeline) {
2201         m_activeTimeline->refresh();
2202     }
2203     m_buttonShowMarkers->setChecked(KdenliveSettings::showmarkers());
2204 }
2205
2206 void MainWindow::slotSwitchSnap()
2207 {
2208     KdenliveSettings::setSnaptopoints(!KdenliveSettings::snaptopoints());
2209     m_buttonSnap->setChecked(KdenliveSettings::snaptopoints());
2210 }
2211
2212
2213 void MainWindow::slotDeleteTimelineClip()
2214 {
2215     if (QApplication::focusWidget() && QApplication::focusWidget()->parentWidget() && QApplication::focusWidget()->parentWidget()->parentWidget() && QApplication::focusWidget()->parentWidget()->parentWidget() == m_projectListDock) m_projectList->slotRemoveClip();
2216     else if (m_activeTimeline) {
2217         m_activeTimeline->projectView()->deleteSelectedClips();
2218     }
2219 }
2220
2221 void MainWindow::slotUpdateClipMarkers(DocClipBase *clip)
2222 {
2223     if (m_clipMonitor->isActive()) m_clipMonitor->checkOverlay();
2224     m_clipMonitor->updateMarkers(clip);
2225 }
2226
2227 void MainWindow::slotAddClipMarker()
2228 {
2229     DocClipBase *clip = NULL;
2230     GenTime pos;
2231     if (m_projectMonitor->isActive()) {
2232         if (m_activeTimeline) {
2233             ClipItem *item = m_activeTimeline->projectView()->getActiveClipUnderCursor();
2234             if (item) {
2235                 pos = GenTime((int)((m_projectMonitor->position() - item->startPos() + item->cropStart()).frames(m_activeDocument->fps()) * item->speed() + 0.5), m_activeDocument->fps());
2236                 clip = item->baseClip();
2237             }
2238         }
2239     } else {
2240         clip = m_clipMonitor->activeClip();
2241         pos = m_clipMonitor->position();
2242     }
2243     if (!clip) {
2244         m_messageLabel->setMessage(i18n("Cannot find clip to add marker"), ErrorMessage);
2245         return;
2246     }
2247     QString id = clip->getId();
2248     CommentedTime marker(pos, i18n("Marker"));
2249     MarkerDialog d(clip, marker, m_activeDocument->timecode(), i18n("Add Marker"), this);
2250     if (d.exec() == QDialog::Accepted) {
2251         m_activeTimeline->projectView()->slotAddClipMarker(id, d.newMarker().time(), d.newMarker().comment());
2252     }
2253 }
2254
2255 void MainWindow::slotDeleteClipMarker()
2256 {
2257     DocClipBase *clip = NULL;
2258     GenTime pos;
2259     if (m_projectMonitor->isActive()) {
2260         if (m_activeTimeline) {
2261             ClipItem *item = m_activeTimeline->projectView()->getActiveClipUnderCursor();
2262             if (item) {
2263                 pos = (m_projectMonitor->position() - item->startPos() + item->cropStart()) / item->speed();
2264                 clip = item->baseClip();
2265             }
2266         }
2267     } else {
2268         clip = m_clipMonitor->activeClip();
2269         pos = m_clipMonitor->position();
2270     }
2271     if (!clip) {
2272         m_messageLabel->setMessage(i18n("Cannot find clip to remove marker"), ErrorMessage);
2273         return;
2274     }
2275
2276     QString id = clip->getId();
2277     QString comment = clip->markerComment(pos);
2278     if (comment.isEmpty()) {
2279         m_messageLabel->setMessage(i18n("No marker found at cursor time"), ErrorMessage);
2280         return;
2281     }
2282     m_activeTimeline->projectView()->slotDeleteClipMarker(comment, id, pos);
2283 }
2284
2285 void MainWindow::slotDeleteAllClipMarkers()
2286 {
2287     DocClipBase *clip = NULL;
2288     if (m_projectMonitor->isActive()) {
2289         if (m_activeTimeline) {
2290             ClipItem *item = m_activeTimeline->projectView()->getActiveClipUnderCursor();
2291             if (item) {
2292                 clip = item->baseClip();
2293             }
2294         }
2295     } else {
2296         clip = m_clipMonitor->activeClip();
2297     }
2298     if (!clip) {
2299         m_messageLabel->setMessage(i18n("Cannot find clip to remove marker"), ErrorMessage);
2300         return;
2301     }
2302     m_activeTimeline->projectView()->slotDeleteAllClipMarkers(clip->getId());
2303 }
2304
2305 void MainWindow::slotEditClipMarker()
2306 {
2307     DocClipBase *clip = NULL;
2308     GenTime pos;
2309     if (m_projectMonitor->isActive()) {
2310         if (m_activeTimeline) {
2311             ClipItem *item = m_activeTimeline->projectView()->getActiveClipUnderCursor();
2312             if (item) {
2313                 pos = (m_projectMonitor->position() - item->startPos() + item->cropStart()) / item->speed();
2314                 clip = item->baseClip();
2315             }
2316         }
2317     } else {
2318         clip = m_clipMonitor->activeClip();
2319         pos = m_clipMonitor->position();
2320     }
2321     if (!clip) {
2322         m_messageLabel->setMessage(i18n("Cannot find clip to remove marker"), ErrorMessage);
2323         return;
2324     }
2325
2326     QString id = clip->getId();
2327     QString oldcomment = clip->markerComment(pos);
2328     if (oldcomment.isEmpty()) {
2329         m_messageLabel->setMessage(i18n("No marker found at cursor time"), ErrorMessage);
2330         return;
2331     }
2332
2333     CommentedTime marker(pos, oldcomment);
2334     MarkerDialog d(clip, marker, m_activeDocument->timecode(), i18n("Edit Marker"), this);
2335     if (d.exec() == QDialog::Accepted) {
2336         m_activeTimeline->projectView()->slotAddClipMarker(id, d.newMarker().time(), d.newMarker().comment());
2337         if (d.newMarker().time() != pos) {
2338             // remove old marker
2339             m_activeTimeline->projectView()->slotAddClipMarker(id, pos, QString());
2340         }
2341     }
2342 }
2343
2344 void MainWindow::slotAddGuide()
2345 {
2346     if (m_activeTimeline)
2347         m_activeTimeline->projectView()->slotAddGuide();
2348 }
2349
2350 void MainWindow::slotInsertSpace()
2351 {
2352     if (m_activeTimeline)
2353         m_activeTimeline->projectView()->slotInsertSpace();
2354 }
2355
2356 void MainWindow::slotRemoveSpace()
2357 {
2358     if (m_activeTimeline)
2359         m_activeTimeline->projectView()->slotRemoveSpace();
2360 }
2361
2362 void MainWindow::slotInsertTrack(int ix)
2363 {
2364     m_projectMonitor->activateMonitor();
2365     if (m_activeTimeline)
2366         m_activeTimeline->projectView()->slotInsertTrack(ix);
2367 }
2368
2369 void MainWindow::slotDeleteTrack(int ix)
2370 {
2371     m_projectMonitor->activateMonitor();
2372     if (m_activeTimeline)
2373         m_activeTimeline->projectView()->slotDeleteTrack(ix);
2374 }
2375
2376 void MainWindow::slotChangeTrack(int ix)
2377 {
2378     m_projectMonitor->activateMonitor();
2379     if (m_activeTimeline)
2380         m_activeTimeline->projectView()->slotChangeTrack(ix);
2381 }
2382
2383 void MainWindow::slotEditGuide()
2384 {
2385     if (m_activeTimeline)
2386         m_activeTimeline->projectView()->slotEditGuide();
2387 }
2388
2389 void MainWindow::slotDeleteGuide()
2390 {
2391     if (m_activeTimeline)
2392         m_activeTimeline->projectView()->slotDeleteGuide();
2393 }
2394
2395 void MainWindow::slotDeleteAllGuides()
2396 {
2397     if (m_activeTimeline)
2398         m_activeTimeline->projectView()->slotDeleteAllGuides();
2399 }
2400
2401 void MainWindow::slotCutTimelineClip()
2402 {
2403     if (m_activeTimeline) {
2404         m_activeTimeline->projectView()->cutSelectedClips();
2405     }
2406 }
2407
2408 void MainWindow::slotInsertClipOverwrite()
2409 {
2410     if (m_activeTimeline) {
2411         QStringList data = m_clipMonitor->getZoneInfo();
2412         m_activeTimeline->projectView()->insertZoneOverwrite(data, m_activeTimeline->inPoint());
2413     }
2414 }
2415
2416 void MainWindow::slotSelectTimelineClip()
2417 {
2418     if (m_activeTimeline) {
2419         m_activeTimeline->projectView()->selectClip(true);
2420     }
2421 }
2422
2423 void MainWindow::slotSelectTimelineTransition()
2424 {
2425     if (m_activeTimeline) {
2426         m_activeTimeline->projectView()->selectTransition(true);
2427     }
2428 }
2429
2430 void MainWindow::slotDeselectTimelineClip()
2431 {
2432     if (m_activeTimeline) {
2433         m_activeTimeline->projectView()->selectClip(false, true);
2434     }
2435 }
2436
2437 void MainWindow::slotDeselectTimelineTransition()
2438 {
2439     if (m_activeTimeline) {
2440         m_activeTimeline->projectView()->selectTransition(false, true);
2441     }
2442 }
2443
2444 void MainWindow::slotSelectAddTimelineClip()
2445 {
2446     if (m_activeTimeline) {
2447         m_activeTimeline->projectView()->selectClip(true, true);
2448     }
2449 }
2450
2451 void MainWindow::slotSelectAddTimelineTransition()
2452 {
2453     if (m_activeTimeline) {
2454         m_activeTimeline->projectView()->selectTransition(true, true);
2455     }
2456 }
2457
2458 void MainWindow::slotGroupClips()
2459 {
2460     if (m_activeTimeline) {
2461         m_activeTimeline->projectView()->groupClips();
2462     }
2463 }
2464
2465 void MainWindow::slotUnGroupClips()
2466 {
2467     if (m_activeTimeline) {
2468         m_activeTimeline->projectView()->groupClips(false);
2469     }
2470 }
2471
2472 void MainWindow::slotEditClipDuration()
2473 {
2474     if (m_activeTimeline) {
2475         m_activeTimeline->projectView()->editClipDuration();
2476     }
2477 }
2478
2479 void MainWindow::slotAddProjectClip(KUrl url)
2480 {
2481     if (m_activeDocument)
2482         m_activeDocument->slotAddClipFile(url, QString());
2483 }
2484
2485 void MainWindow::slotAddTransition(QAction *result)
2486 {
2487     if (!result) return;
2488     QStringList info = result->data().toStringList();
2489     if (info.isEmpty()) return;
2490     QDomElement transition = transitions.getEffectByTag(info.at(1), info.at(2));
2491     if (m_activeTimeline && !transition.isNull()) {
2492         m_activeTimeline->projectView()->slotAddTransitionToSelectedClips(transition.cloneNode().toElement());
2493     }
2494 }
2495
2496 void MainWindow::slotAddVideoEffect(QAction *result)
2497 {
2498     if (!result) return;
2499     QStringList info = result->data().toStringList();
2500     if (info.isEmpty()) return;
2501     QDomElement effect = videoEffects.getEffectByTag(info.at(1), info.at(2));
2502     slotAddEffect(effect);
2503 }
2504
2505 void MainWindow::slotAddAudioEffect(QAction *result)
2506 {
2507     if (!result) return;
2508     QStringList info = result->data().toStringList();
2509     if (info.isEmpty()) return;
2510     QDomElement effect = audioEffects.getEffectByTag(info.at(1), info.at(2));
2511     slotAddEffect(effect);
2512 }
2513
2514 void MainWindow::slotAddCustomEffect(QAction *result)
2515 {
2516     if (!result) return;
2517     QStringList info = result->data().toStringList();
2518     if (info.isEmpty()) return;
2519     QDomElement effect = customEffects.getEffectByTag(info.at(1), info.at(2));
2520     slotAddEffect(effect);
2521 }
2522
2523 void MainWindow::slotZoomIn()
2524 {
2525     m_zoomSlider->setValue(m_zoomSlider->value() - 1);
2526 }
2527
2528 void MainWindow::slotZoomOut()
2529 {
2530     m_zoomSlider->setValue(m_zoomSlider->value() + 1);
2531 }
2532
2533 void MainWindow::slotFitZoom()
2534 {
2535     if (m_activeTimeline) {
2536         m_zoomSlider->setValue(m_activeTimeline->fitZoom());
2537     }
2538 }
2539
2540 void MainWindow::slotSetZoom(int value)
2541 {
2542     m_zoomSlider->setValue(value);
2543 }
2544
2545 void MainWindow::slotGotProgressInfo(const QString &message, int progress)
2546 {
2547     m_statusProgressBar->setValue(progress);
2548     if (progress >= 0) {
2549         if (!message.isEmpty()) m_messageLabel->setMessage(message, InformationMessage);//statusLabel->setText(message);
2550         m_statusProgressBar->setVisible(true);
2551     } else {
2552         m_messageLabel->setMessage(QString(), DefaultMessage);
2553         m_statusProgressBar->setVisible(false);
2554     }
2555 }
2556
2557 void MainWindow::slotShowClipProperties(DocClipBase *clip)
2558 {
2559     if (clip->clipType() == TEXT) {
2560         QString titlepath = m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash) + "titles/";
2561         if (!clip->getProperty("resource").isEmpty() && clip->getProperty("xmldata").isEmpty()) {
2562             // template text clip
2563
2564             // Get the list of existing templates
2565             QStringList filter;
2566             filter << "*.kdenlivetitle";
2567             QStringList templateFiles = QDir(titlepath).entryList(filter, QDir::Files);
2568
2569             QDialog *dia = new QDialog(this);
2570             Ui::TemplateClip_UI dia_ui;
2571             dia_ui.setupUi(dia);
2572             int ix = -1;
2573             const QString templatePath = clip->getProperty("resource");
2574             for (int i = 0; i < templateFiles.size(); ++i) {
2575                 dia_ui.template_list->comboBox()->addItem(templateFiles.at(i), titlepath + templateFiles.at(i));
2576                 if (templatePath == KUrl(titlepath + templateFiles.at(i)).path()) ix = i;
2577             }
2578             if (ix != -1) dia_ui.template_list->comboBox()->setCurrentIndex(ix);
2579             else dia_ui.template_list->comboBox()->insertItem(0, templatePath);
2580             dia_ui.template_list->fileDialog()->setFilter("*.kdenlivetitle");
2581             //warning: setting base directory doesn't work??
2582             KUrl startDir(titlepath);
2583             dia_ui.template_list->fileDialog()->setUrl(startDir);
2584             dia_ui.description->setText(clip->getProperty("description"));
2585             if (dia->exec() == QDialog::Accepted) {
2586                 QString textTemplate = dia_ui.template_list->comboBox()->itemData(dia_ui.template_list->comboBox()->currentIndex()).toString();
2587                 if (textTemplate.isEmpty()) textTemplate = dia_ui.template_list->comboBox()->currentText();
2588
2589                 QMap <QString, QString> newprops;
2590
2591                 if (KUrl(textTemplate).path() != templatePath) {
2592                     // The template was changed
2593                     newprops.insert("resource", textTemplate);
2594                 }
2595
2596                 if (dia_ui.description->toPlainText() != clip->getProperty("description")) {
2597                     newprops.insert("description", dia_ui.description->toPlainText());
2598                 }
2599
2600                 QString newtemplate = newprops.value("xmltemplate");
2601                 if (newtemplate.isEmpty()) newtemplate = templatePath;
2602
2603                 // template modified we need to update xmldata
2604                 QString description = newprops.value("description");
2605                 if (description.isEmpty()) description = clip->getProperty("description");
2606                 else newprops.insert("templatetext", description);
2607                 //newprops.insert("xmldata", m_projectList->generateTemplateXml(newtemplate, description).toString());
2608                 if (!newprops.isEmpty()) {
2609                     EditClipCommand *command = new EditClipCommand(m_projectList, clip->getId(), clip->properties(), newprops, true);
2610                     m_activeDocument->commandStack()->push(command);
2611                 }
2612             }
2613             delete dia;
2614             return;
2615         }
2616         QString path = clip->getProperty("resource");
2617         TitleWidget *dia_ui = new TitleWidget(KUrl(), m_activeDocument->timecode(), titlepath, m_projectMonitor->render, this);
2618         QDomDocument doc;
2619         doc.setContent(clip->getProperty("xmldata"));
2620         dia_ui->setXml(doc);
2621         if (dia_ui->exec() == QDialog::Accepted) {
2622             QMap <QString, QString> newprops;
2623             newprops.insert("xmldata", dia_ui->xml().toString());
2624             if (dia_ui->duration() != clip->duration().frames(m_activeDocument->fps()) - 1) {
2625                 // duration changed, we need to update duration
2626                 newprops.insert("out", QString::number(dia_ui->duration()));
2627             }
2628             EditClipCommand *command = new EditClipCommand(m_projectList, clip->getId(), clip->properties(), newprops, true);
2629             m_activeDocument->commandStack()->push(command);
2630             //m_activeTimeline->projectView()->slotUpdateClip(clip->getId());
2631             m_activeDocument->setModified(true);
2632         }
2633         delete dia_ui;
2634
2635         //m_activeDocument->editTextClip(clip->getProperty("xml"), clip->getId());
2636         return;
2637     }
2638     ClipProperties dia(clip, m_activeDocument->timecode(), m_activeDocument->fps(), this);
2639     connect(&dia, SIGNAL(addMarker(const QString &, GenTime, QString)), m_activeTimeline->projectView(), SLOT(slotAddClipMarker(const QString &, GenTime, QString)));
2640     if (dia.exec() == QDialog::Accepted) {
2641         QMap <QString, QString> newprops = dia.properties();
2642         if (newprops.isEmpty()) return;
2643         EditClipCommand *command = new EditClipCommand(m_projectList, clip->getId(), clip->properties(), newprops, true);
2644         m_activeDocument->commandStack()->push(command);
2645
2646         if (dia.needsTimelineRefresh()) {
2647             // update clip occurences in timeline
2648             m_activeTimeline->projectView()->slotUpdateClip(clip->getId(), dia.needsTimelineReload());
2649         }
2650     }
2651 }
2652
2653
2654 void MainWindow::slotShowClipProperties(QList <DocClipBase *> cliplist, QMap<QString, QString> commonproperties)
2655 {
2656     ClipProperties dia(cliplist, m_activeDocument->timecode(), commonproperties, this);
2657     if (dia.exec() == QDialog::Accepted) {
2658         QUndoCommand *command = new QUndoCommand();
2659         command->setText(i18n("Edit clips"));
2660         for (int i = 0; i < cliplist.count(); i++) {
2661             DocClipBase *clip = cliplist.at(i);
2662             new EditClipCommand(m_projectList, clip->getId(), clip->properties(), dia.properties(), true, command);
2663         }
2664         m_activeDocument->commandStack()->push(command);
2665         for (int i = 0; i < cliplist.count(); i++) {
2666             m_activeTimeline->projectView()->slotUpdateClip(cliplist.at(i)->getId(), dia.needsTimelineReload());
2667         }
2668     }
2669 }
2670
2671 void MainWindow::customEvent(QEvent* e)
2672 {
2673     if (e->type() == QEvent::User) {
2674         m_messageLabel->setMessage(static_cast <MltErrorEvent *>(e)->message(), MltError);
2675     }
2676 }
2677 void MainWindow::slotActivateEffectStackView()
2678 {
2679     m_effectStack->raiseWindow(m_effectStackDock);
2680 }
2681
2682 void MainWindow::slotActivateTransitionView(Transition *t)
2683 {
2684     if (t) m_transitionConfig->raiseWindow(m_transitionConfigDock);
2685 }
2686
2687 void MainWindow::slotSnapRewind()
2688 {
2689     if (m_projectMonitor->isActive()) {
2690         if (m_activeTimeline)
2691             m_activeTimeline->projectView()->slotSeekToPreviousSnap();
2692     } else m_clipMonitor->slotSeekToPreviousSnap();
2693 }
2694
2695 void MainWindow::slotSnapForward()
2696 {
2697     if (m_projectMonitor->isActive()) {
2698         if (m_activeTimeline)
2699             m_activeTimeline->projectView()->slotSeekToNextSnap();
2700     } else m_clipMonitor->slotSeekToNextSnap();
2701 }
2702
2703 void MainWindow::slotClipStart()
2704 {
2705     if (m_projectMonitor->isActive()) {
2706         if (m_activeTimeline)
2707             m_activeTimeline->projectView()->clipStart();
2708     }
2709 }
2710
2711 void MainWindow::slotClipEnd()
2712 {
2713     if (m_projectMonitor->isActive()) {
2714         if (m_activeTimeline)
2715             m_activeTimeline->projectView()->clipEnd();
2716     }
2717 }
2718
2719 void MainWindow::slotZoneStart()
2720 {
2721     if (m_projectMonitor->isActive()) m_projectMonitor->slotZoneStart();
2722     else m_clipMonitor->slotZoneStart();
2723 }
2724
2725 void MainWindow::slotZoneEnd()
2726 {
2727     if (m_projectMonitor->isActive()) m_projectMonitor->slotZoneEnd();
2728     else m_clipMonitor->slotZoneEnd();
2729 }
2730
2731 void MainWindow::slotChangeTool(QAction * action)
2732 {
2733     if (action == m_buttonSelectTool) slotSetTool(SELECTTOOL);
2734     else if (action == m_buttonRazorTool) slotSetTool(RAZORTOOL);
2735     else if (action == m_buttonSpacerTool) slotSetTool(SPACERTOOL);
2736 }
2737
2738 void MainWindow::slotChangeEdit(QAction * action)
2739 {
2740     if (!m_activeTimeline) return;
2741     if (action == m_overwriteEditTool) m_activeTimeline->projectView()->setEditMode(OVERWRITEEDIT);
2742     else if (action == m_insertEditTool) m_activeTimeline->projectView()->setEditMode(INSERTEDIT);
2743     else m_activeTimeline->projectView()->setEditMode(NORMALEDIT);
2744 }
2745
2746 void MainWindow::slotSetTool(PROJECTTOOL tool)
2747 {
2748     if (m_activeDocument && m_activeTimeline) {
2749         //m_activeDocument->setTool(tool);
2750         QString message;
2751         switch (tool)  {
2752         case SPACERTOOL:
2753             message = i18n("Ctrl + click to use spacer on current track only");
2754             break;
2755         case RAZORTOOL:
2756             message = i18n("Click on a clip to cut it");
2757             break;
2758         default:
2759             message = i18n("Shift + click to create a selection rectangle, Ctrl + click to add an item to selection");
2760             break;
2761         }
2762         m_messageLabel->setMessage(message, InformationMessage);
2763         m_activeTimeline->projectView()->setTool(tool);
2764     }
2765 }
2766
2767 void MainWindow::slotCopy()
2768 {
2769     if (!m_activeDocument || !m_activeTimeline) return;
2770     m_activeTimeline->projectView()->copyClip();
2771 }
2772
2773 void MainWindow::slotPaste()
2774 {
2775     if (!m_activeDocument || !m_activeTimeline) return;
2776     m_activeTimeline->projectView()->pasteClip();
2777 }
2778
2779 void MainWindow::slotPasteEffects()
2780 {
2781     if (!m_activeDocument || !m_activeTimeline) return;
2782     m_activeTimeline->projectView()->pasteClipEffects();
2783 }
2784
2785 void MainWindow::slotFind()
2786 {
2787     if (!m_activeDocument || !m_activeTimeline) return;
2788     m_projectSearch->setEnabled(false);
2789     m_findActivated = true;
2790     m_findString.clear();
2791     m_activeTimeline->projectView()->initSearchStrings();
2792     statusBar()->showMessage(i18n("Starting -- find text as you type"));
2793     m_findTimer.start(5000);
2794     qApp->installEventFilter(this);
2795 }
2796
2797 void MainWindow::slotFindNext()
2798 {
2799     if (m_activeTimeline && m_activeTimeline->projectView()->findNextString(m_findString)) {
2800         statusBar()->showMessage(i18n("Found: %1", m_findString));
2801     } else {
2802         statusBar()->showMessage(i18n("Reached end of project"));
2803     }
2804     m_findTimer.start(4000);
2805 }
2806
2807 void MainWindow::findAhead()
2808 {
2809     if (m_activeTimeline && m_activeTimeline->projectView()->findString(m_findString)) {
2810         m_projectSearchNext->setEnabled(true);
2811         statusBar()->showMessage(i18n("Found: %1", m_findString));
2812     } else {
2813         m_projectSearchNext->setEnabled(false);
2814         statusBar()->showMessage(i18n("Not found: %1", m_findString));
2815     }
2816 }
2817
2818 void MainWindow::findTimeout()
2819 {
2820     m_projectSearchNext->setEnabled(false);
2821     m_findActivated = false;
2822     m_findString.clear();
2823     statusBar()->showMessage(i18n("Find stopped"), 3000);
2824     if (m_activeTimeline) m_activeTimeline->projectView()->clearSearchStrings();
2825     m_projectSearch->setEnabled(true);
2826     removeEventFilter(this);
2827 }
2828
2829 void MainWindow::keyPressEvent(QKeyEvent *ke)
2830 {
2831     if (m_findActivated) {
2832         if (ke->key() == Qt::Key_Backspace) {
2833             m_findString = m_findString.left(m_findString.length() - 1);
2834
2835             if (!m_findString.isEmpty()) {
2836                 findAhead();
2837             } else {
2838                 findTimeout();
2839             }
2840
2841             m_findTimer.start(4000);
2842             ke->accept();
2843             return;
2844         } else if (ke->key() == Qt::Key_Escape) {
2845             findTimeout();
2846             ke->accept();
2847             return;
2848         } else if (ke->key() == Qt::Key_Space || !ke->text().trimmed().isEmpty()) {
2849             m_findString += ke->text();
2850
2851             findAhead();
2852
2853             m_findTimer.start(4000);
2854             ke->accept();
2855             return;
2856         }
2857     } else KXmlGuiWindow::keyPressEvent(ke);
2858 }
2859
2860
2861 /** Gets called when the window gets hidden */
2862 void MainWindow::hideEvent(QHideEvent */*event*/)
2863 {
2864     // kDebug() << "I was hidden";
2865     // issue http://www.kdenlive.org/mantis/view.php?id=231
2866     if (isMinimized()) {
2867         // kDebug() << "I am minimized";
2868         if (m_monitorManager) m_monitorManager->stopActiveMonitor();
2869     }
2870 }
2871
2872 bool MainWindow::eventFilter(QObject *obj, QEvent *event)
2873 {
2874     if (m_findActivated) {
2875         if (event->type() == QEvent::ShortcutOverride) {
2876             QKeyEvent* ke = (QKeyEvent*) event;
2877             if (ke->text().trimmed().isEmpty()) return false;
2878             ke->accept();
2879             return true;
2880         } else return false;
2881     } else {
2882         // pass the event on to the parent class
2883         return QMainWindow::eventFilter(obj, event);
2884     }
2885 }
2886
2887
2888 void MainWindow::slotSaveZone(Render *render, QPoint zone)
2889 {
2890     KDialog *dialog = new KDialog(this);
2891     dialog->setCaption("Save clip zone");
2892     dialog->setButtons(KDialog::Ok | KDialog::Cancel);
2893
2894     QWidget *widget = new QWidget(dialog);
2895     dialog->setMainWidget(widget);
2896
2897     QVBoxLayout *vbox = new QVBoxLayout(widget);
2898     QLabel *label1 = new QLabel(i18n("Save clip zone as:"), this);
2899     QString path = m_activeDocument->projectFolder().path();
2900     path.append("/");
2901     path.append("untitled.mlt");
2902     KUrlRequester *url = new KUrlRequester(KUrl(path), this);
2903     url->setFilter("video/mlt-playlist");
2904     QLabel *label2 = new QLabel(i18n("Description:"), this);
2905     KLineEdit *edit = new KLineEdit(this);
2906     vbox->addWidget(label1);
2907     vbox->addWidget(url);
2908     vbox->addWidget(label2);
2909     vbox->addWidget(edit);
2910     if (dialog->exec() == QDialog::Accepted) render->saveZone(url->url(), edit->text(), zone);
2911
2912 }
2913
2914 void MainWindow::slotSetInPoint()
2915 {
2916     if (m_clipMonitor->isActive()) {
2917         m_clipMonitor->slotSetZoneStart();
2918     } else m_projectMonitor->slotSetZoneStart();
2919     //else m_activeTimeline->projectView()->setInPoint();
2920 }
2921
2922 void MainWindow::slotSetOutPoint()
2923 {
2924     if (m_clipMonitor->isActive()) {
2925         m_clipMonitor->slotSetZoneEnd();
2926     } else m_projectMonitor->slotSetZoneEnd();
2927     // else m_activeTimeline->projectView()->setOutPoint();
2928 }
2929
2930 void MainWindow::slotResizeItemStart()
2931 {
2932     if (m_activeTimeline) m_activeTimeline->projectView()->setInPoint();
2933 }
2934
2935 void MainWindow::slotResizeItemEnd()
2936 {
2937     if (m_activeTimeline) m_activeTimeline->projectView()->setOutPoint();
2938 }
2939
2940 int MainWindow::getNewStuff(const QString &configFile)
2941 {
2942     KNS3::Entry::List entries;
2943 #if KDE_IS_VERSION(4,3,80)
2944     KNS3::DownloadDialog dialog(configFile);
2945     dialog.exec();
2946     entries = dialog.changedEntries();
2947     foreach(const KNS3::Entry &entry, entries) {
2948         if (entry.status() == KNS3::Entry::Installed)
2949             kDebug() << "// Installed files: " << entry.installedFiles();
2950     }
2951 #else
2952     KNS::Engine engine(0);
2953     if (engine.init(configFile))
2954         entries = engine.downloadDialogModal(this);
2955     foreach(KNS::Entry *entry, entries) {
2956         if (entry->status() == KNS::Entry::Installed)
2957             kDebug() << "// Installed files: " << entry->installedFiles();
2958     }
2959 #endif /* KDE_IS_VERSION(4,3,80) */
2960     return entries.size();
2961 }
2962
2963 void MainWindow::slotGetNewTitleStuff()
2964 {
2965     if (getNewStuff("kdenlive_titles.knsrc") > 0) {
2966         TitleWidget::refreshTitleTemplates();
2967     }
2968 }
2969
2970 void MainWindow::slotGetNewLumaStuff()
2971 {
2972     if (getNewStuff("kdenlive_wipes.knsrc") > 0) {
2973         initEffects::refreshLumas();
2974         m_activeTimeline->projectView()->reloadTransitionLumas();
2975     }
2976 }
2977
2978 void MainWindow::slotGetNewRenderStuff()
2979 {
2980     if (getNewStuff("kdenlive_renderprofiles.knsrc") > 0) {
2981         if (m_renderWidget)
2982             m_renderWidget->reloadProfiles();
2983     }
2984 }
2985
2986 void MainWindow::slotGetNewMltProfileStuff()
2987 {
2988     if (getNewStuff("kdenlive_projectprofiles.knsrc") > 0) {
2989         // update the list of profiles in settings dialog
2990         KdenliveSettingsDialog* d = static_cast <KdenliveSettingsDialog*>(KConfigDialog::exists("settings"));
2991         if (d)
2992             d->checkProfile();
2993     }
2994 }
2995
2996 void MainWindow::slotAutoTransition()
2997 {
2998     if (m_activeTimeline) m_activeTimeline->projectView()->autoTransition();
2999 }
3000
3001 void MainWindow::slotSplitAudio()
3002 {
3003     if (m_activeTimeline) m_activeTimeline->projectView()->splitAudio();
3004 }
3005
3006 void MainWindow::slotUpdateClipType(QAction *action)
3007 {
3008     if (m_activeTimeline) {
3009         if (action->data().toString() == "clip_audio_only") m_activeTimeline->projectView()->setAudioOnly();
3010         else if (action->data().toString() == "clip_video_only") m_activeTimeline->projectView()->setVideoOnly();
3011         else m_activeTimeline->projectView()->setAudioAndVideo();
3012     }
3013 }
3014
3015 void MainWindow::slotDvdWizard(const QString &url, const QString &profile)
3016 {
3017     // We must stop the monitors since we create a new on in the dvd wizard
3018     m_clipMonitor->stop();
3019     m_projectMonitor->stop();
3020     DvdWizard w(url, profile, this);
3021     w.exec();
3022     m_projectMonitor->start();
3023 }
3024
3025 void MainWindow::slotShowTimeline(bool show)
3026 {
3027     if (show == false) {
3028         m_timelineState = saveState();
3029         centralWidget()->setHidden(true);
3030     } else {
3031         centralWidget()->setHidden(false);
3032         restoreState(m_timelineState);
3033     }
3034 }
3035
3036 void MainWindow::slotMaximizeCurrent(bool /*show*/)
3037 {
3038     //TODO: is there a way to maximize current widget?
3039     //if (show == true)
3040     {
3041         m_timelineState = saveState();
3042         QWidget *par = focusWidget()->parentWidget();
3043         while (par->parentWidget() && par->parentWidget() != this) {
3044             par = par->parentWidget();
3045         }
3046         kDebug() << "CURRENT WIDGET: " << par->objectName();
3047     }
3048     /*else {
3049     //centralWidget()->setHidden(false);
3050     //restoreState(m_timelineState);
3051     }*/
3052 }
3053
3054 void MainWindow::loadTranscoders()
3055 {
3056     QMenu *transMenu = static_cast<QMenu*>(factory()->container("transcoders", this));
3057     transMenu->clear();
3058
3059     KSharedConfigPtr config = KSharedConfig::openConfig("kdenlivetranscodingrc");
3060     KConfigGroup transConfig(config, "Transcoding");
3061     // read the entries
3062     QMap< QString, QString > profiles = transConfig.entryMap();
3063     QMapIterator<QString, QString> i(profiles);
3064     while (i.hasNext()) {
3065         i.next();
3066         QStringList data = i.value().split(";", QString::SkipEmptyParts);
3067         QAction *a = transMenu->addAction(i.key());
3068         a->setData(data);
3069         if (data.count() > 1) {
3070             a->setToolTip(data.at(1));
3071         }
3072         connect(a, SIGNAL(triggered()), this, SLOT(slotTranscode()));
3073     }
3074 }
3075
3076 void MainWindow::slotTranscode(KUrl::List urls)
3077 {
3078     QString params;
3079     QString desc;
3080     QString condition;
3081     if (urls.isEmpty()) {
3082         QAction *action = qobject_cast<QAction *>(sender());
3083         QStringList data = action->data().toStringList();
3084         params = data.at(0);
3085         if (data.count() > 1) desc = data.at(1);
3086         if (data.count() > 2) condition = data.at(2);
3087         urls << m_projectList->getConditionalUrls(condition);
3088         urls.removeAll(KUrl());
3089     }
3090     if (urls.isEmpty()) {
3091         m_messageLabel->setMessage(i18n("No clip to transcode"), ErrorMessage);
3092         return;
3093     }
3094     ClipTranscode *d = new ClipTranscode(urls, params, desc);
3095     connect(d, SIGNAL(addClip(KUrl)), this, SLOT(slotAddProjectClip(KUrl)));
3096     d->show();
3097     //QProcess::startDetached("ffmpeg", parameters);
3098 }
3099
3100 void MainWindow::slotTranscodeClip()
3101 {
3102     KUrl::List urls = KFileDialog::getOpenUrls(KUrl("kfiledialog:///projectfolder"));
3103     if (urls.isEmpty()) return;
3104     slotTranscode(urls);
3105 }
3106
3107 void MainWindow::slotSetDocumentRenderProfile(const QString &dest, const QString &group, const QString &name, const QString &file)
3108 {
3109     if (m_activeDocument == NULL) return;
3110     m_activeDocument->setDocumentProperty("renderdestination", dest);
3111     m_activeDocument->setDocumentProperty("rendercategory", group);
3112     m_activeDocument->setDocumentProperty("renderprofile", name);
3113     m_activeDocument->setDocumentProperty("renderurl", file);
3114     m_activeDocument->setModified(true);
3115 }
3116
3117
3118 void MainWindow::slotPrepareRendering(bool scriptExport, bool zoneOnly, const QString &chapterFile)
3119 {
3120     if (m_activeDocument == NULL || m_renderWidget == NULL) return;
3121     QString scriptPath;
3122     QString playlistPath;
3123     if (scriptExport) {
3124         bool ok;
3125         QString scriptsFolder = m_activeDocument->projectFolder().path() + "/scripts/";
3126         QString path = m_renderWidget->getFreeScriptName();
3127         scriptPath = QInputDialog::getText(this, i18n("Create Render Script"), i18n("Script name (will be saved in: %1)", scriptsFolder), QLineEdit::Normal, KUrl(path).fileName(), &ok);
3128         if (!ok || scriptPath.isEmpty()) return;
3129         scriptPath.prepend(scriptsFolder);
3130         QFile f(scriptPath);
3131         if (f.exists()) {
3132             if (KMessageBox::warningYesNo(this, i18n("Script file already exists. Do you want to overwrite it?")) != KMessageBox::Yes)
3133                 return;
3134         }
3135         playlistPath = scriptPath + ".mlt";
3136         m_projectMonitor->saveSceneList(playlistPath);
3137     } else {
3138         KTemporaryFile temp;
3139         temp.setAutoRemove(false);
3140         temp.setSuffix(".mlt");
3141         temp.open();
3142         playlistPath = temp.fileName();
3143         m_projectMonitor->saveSceneList(playlistPath);
3144     }
3145
3146     if (!chapterFile.isEmpty()) {
3147         int in = 0;
3148         int out;
3149         if (!zoneOnly) out = (int) GenTime(m_activeDocument->projectDuration()).frames(m_activeDocument->fps());
3150         else {
3151             in = m_activeTimeline->inPoint();
3152             out = m_activeTimeline->outPoint();
3153         }
3154         QDomDocument doc;
3155         QDomElement chapters = doc.createElement("chapters");
3156         chapters.setAttribute("fps", m_activeDocument->fps());
3157         doc.appendChild(chapters);
3158
3159         QDomElement guidesxml = m_activeDocument->guidesXml();
3160         QDomNodeList nodes = guidesxml.elementsByTagName("guide");
3161         for (int i = 0; i < nodes.count(); i++) {
3162             QDomElement e = nodes.item(i).toElement();
3163             if (!e.isNull()) {
3164                 QString comment = e.attribute("comment");
3165                 int time = (int) GenTime(e.attribute("time").toDouble()).frames(m_activeDocument->fps());
3166                 if (time >= in && time < out) {
3167                     if (zoneOnly) time = time - in;
3168                     QDomElement chapter = doc.createElement("chapter");
3169                     chapters.appendChild(chapter);
3170                     chapter.setAttribute("title", comment);
3171                     chapter.setAttribute("time", time);
3172                 }
3173             }
3174         }
3175         if (chapters.childNodes().count() > 0) {
3176             if (m_activeTimeline->projectView()->hasGuide(out, 0) == -1) {
3177                 // Always insert a guide in pos 0
3178                 QDomElement chapter = doc.createElement("chapter");
3179                 chapters.insertBefore(chapter, QDomNode());
3180                 chapter.setAttribute("title", i18n("Start"));
3181                 chapter.setAttribute("time", "0");
3182             }
3183             // save chapters file
3184             QFile file(chapterFile);
3185             if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
3186                 kWarning() << "//////  ERROR writing DVD CHAPTER file: " << chapterFile;
3187             } else {
3188                 file.write(doc.toString().toUtf8());
3189                 if (file.error() != QFile::NoError) {
3190                     kWarning() << "//////  ERROR writing DVD CHAPTER file: " << chapterFile;
3191                 }
3192                 file.close();
3193             }
3194         }
3195     }
3196
3197     m_renderWidget->slotExport(scriptExport, m_activeTimeline->inPoint(), m_activeTimeline->outPoint(), playlistPath, scriptPath);
3198 }
3199
3200 void MainWindow::slotUpdateTimecodeFormat(int ix)
3201 {
3202     KdenliveSettings::setFrametimecode(ix == 1);
3203     m_clipMonitor->updateTimecodeFormat();
3204     m_projectMonitor->updateTimecodeFormat();
3205     m_activeTimeline->projectView()->clearSelection();
3206 }
3207
3208 void MainWindow::slotRemoveFocus()
3209 {
3210     statusBar()->setFocus();
3211     statusBar()->clearFocus();
3212 }
3213
3214 void MainWindow::slotRevert()
3215 {
3216     if (KMessageBox::warningContinueCancel(this, i18n("This will delete all changes made since you last saved your project. Are you sure you want to continue?"), i18n("Revert to last saved version")) == KMessageBox::Cancel) return;
3217     KUrl url = m_activeDocument->url();
3218     closeCurrentDocument(false);
3219     doOpenFile(url, NULL);
3220 }
3221
3222
3223 void MainWindow::slotShutdown()
3224 {
3225     if (m_activeDocument) m_activeDocument->setModified(false);
3226     // Call shutdown
3227     QDBusConnectionInterface* interface = QDBusConnection::sessionBus().interface();
3228     if (interface && interface->isServiceRegistered("org.kde.ksmserver")) {
3229         QDBusInterface smserver("org.kde.ksmserver", "/KSMServer", "org.kde.KSMServerInterface");
3230         smserver.call("logout", 1, 2, 2);
3231     } else if (interface && interface->isServiceRegistered("org.gnome.SessionManager")) {
3232         QDBusInterface smserver("org.gnome.SessionManager", "/org/gnome/SessionManager", "org.gnome.SessionManager");
3233         smserver.call("Shutdown");
3234     }
3235 }
3236
3237 void MainWindow::slotUpdateTrackInfo()
3238 {
3239     if (m_activeDocument)
3240         m_transitionConfig->updateProjectFormat(m_activeDocument->mltProfile(), m_activeDocument->timecode(), m_activeDocument->tracksList());
3241 }
3242
3243 void MainWindow::slotChangePalette(QAction *action, const QString &themename)
3244 {
3245     // Load the theme file
3246     QString theme;
3247     if (action == NULL) theme = themename;
3248     else theme = action->data().toString();
3249     KdenliveSettings::setColortheme(theme);
3250     // Make palette for all widgets.
3251     QPalette plt;
3252     if (theme.isEmpty())
3253         plt = QApplication::desktop()->palette();
3254     else {
3255         KSharedConfigPtr config = KSharedConfig::openConfig(theme);
3256         plt = KGlobalSettings::createApplicationPalette(config);
3257     }
3258
3259     kapp->setPalette(plt);
3260     const QObjectList children = statusBar()->children();
3261
3262     foreach(QObject *child, children) {
3263         if (child->isWidgetType())
3264             ((QWidget*)child)->setPalette(plt);
3265         const QObjectList subchildren = child->children();
3266         foreach(QObject *subchild, subchildren) {
3267             if (subchild->isWidgetType())
3268                 ((QWidget*)subchild)->setPalette(plt);
3269         }
3270     }
3271 }
3272
3273
3274 QPixmap MainWindow::createSchemePreviewIcon(const KSharedConfigPtr &config)
3275 {
3276     // code taken from kdebase/workspace/kcontrol/colors/colorscm.cpp
3277     const uchar bits1[] = { 0xff, 0xff, 0xff, 0x2c, 0x16, 0x0b };
3278     const uchar bits2[] = { 0x68, 0x34, 0x1a, 0xff, 0xff, 0xff };
3279     const QSize bitsSize(24, 2);
3280     const QBitmap b1 = QBitmap::fromData(bitsSize, bits1);
3281     const QBitmap b2 = QBitmap::fromData(bitsSize, bits2);
3282
3283     QPixmap pixmap(23, 16);
3284     pixmap.fill(Qt::black); // ### use some color other than black for borders?
3285
3286     KConfigGroup group(config, "WM");
3287     QPainter p(&pixmap);
3288     KColorScheme windowScheme(QPalette::Active, KColorScheme::Window, config);
3289     p.fillRect(1,  1, 7, 7, windowScheme.background());
3290     p.fillRect(2,  2, 5, 2, QBrush(windowScheme.foreground().color(), b1));
3291
3292     KColorScheme buttonScheme(QPalette::Active, KColorScheme::Button, config);
3293     p.fillRect(8,  1, 7, 7, buttonScheme.background());
3294     p.fillRect(9,  2, 5, 2, QBrush(buttonScheme.foreground().color(), b1));
3295
3296     p.fillRect(15,  1, 7, 7, group.readEntry("activeBackground", QColor(96, 148, 207)));
3297     p.fillRect(16,  2, 5, 2, QBrush(group.readEntry("activeForeground", QColor(255, 255, 255)), b1));
3298
3299     KColorScheme viewScheme(QPalette::Active, KColorScheme::View, config);
3300     p.fillRect(1,  8, 7, 7, viewScheme.background());
3301     p.fillRect(2, 12, 5, 2, QBrush(viewScheme.foreground().color(), b2));
3302
3303     KColorScheme selectionScheme(QPalette::Active, KColorScheme::Selection, config);
3304     p.fillRect(8,  8, 7, 7, selectionScheme.background());
3305     p.fillRect(9, 12, 5, 2, QBrush(selectionScheme.foreground().color(), b2));
3306
3307     p.fillRect(15,  8, 7, 7, group.readEntry("inactiveBackground", QColor(224, 223, 222)));
3308     p.fillRect(16, 12, 5, 2, QBrush(group.readEntry("inactiveForeground", QColor(20, 19, 18)), b2));
3309
3310     p.end();
3311     return pixmap;
3312 }
3313
3314 void MainWindow::slotSwitchMonitors()
3315 {
3316     m_monitorManager->slotSwitchMonitors(m_clipMonitor->isActive());
3317     if (m_projectMonitor->isActive()) m_activeTimeline->projectView()->setFocus();
3318     else m_projectList->focusTree();
3319 }
3320
3321 void MainWindow::slotInsertZoneToTree()
3322 {
3323     if (!m_clipMonitor->isActive() || m_clipMonitor->activeClip() == NULL) return;
3324     QStringList info = m_clipMonitor->getZoneInfo();
3325     m_projectList->slotAddClipCut(info.at(0), info.at(1).toInt(), info.at(2).toInt());
3326 }
3327
3328 void MainWindow::slotInsertZoneToTimeline()
3329 {
3330     if (m_activeTimeline == NULL || m_clipMonitor->activeClip() == NULL) return;
3331     QStringList info = m_clipMonitor->getZoneInfo();
3332     m_activeTimeline->projectView()->insertClipCut(m_clipMonitor->activeClip(), info.at(1).toInt(), info.at(2).toInt());
3333 }
3334
3335
3336 void MainWindow::slotDeleteProjectClips(QStringList ids, QMap<QString, QString> folderids)
3337 {
3338     for (int i = 0; i < ids.size(); ++i) {
3339         m_activeTimeline->slotDeleteClip(ids.at(i));
3340     }
3341     m_activeDocument->clipManager()->slotDeleteClips(ids);
3342     if (!folderids.isEmpty()) m_projectList->deleteProjectFolder(folderids);
3343
3344 }
3345
3346 void MainWindow::slotShowTitleBars(bool show)
3347 {
3348     if (show) {
3349         m_effectStackDock->setTitleBarWidget(0);
3350         m_clipMonitorDock->setTitleBarWidget(0);
3351         m_projectMonitorDock->setTitleBarWidget(0);
3352         m_recMonitorDock->setTitleBarWidget(0);
3353         m_effectListDock->setTitleBarWidget(0);
3354         m_transitionConfigDock->setTitleBarWidget(0);
3355         m_projectListDock->setTitleBarWidget(0);
3356         m_undoViewDock->setTitleBarWidget(0);
3357     } else {
3358         if (!m_effectStackDock->isFloating()) m_effectStackDock->setTitleBarWidget(new QWidget(this));
3359         if (!m_clipMonitorDock->isFloating()) m_clipMonitorDock->setTitleBarWidget(new QWidget(this));
3360         if (!m_projectMonitorDock->isFloating()) m_projectMonitorDock->setTitleBarWidget(new QWidget(this));
3361         if (!m_recMonitorDock->isFloating()) m_recMonitorDock->setTitleBarWidget(new QWidget(this));
3362         if (!m_effectListDock->isFloating()) m_effectListDock->setTitleBarWidget(new QWidget(this));
3363         if (!m_transitionConfigDock->isFloating()) m_transitionConfigDock->setTitleBarWidget(new QWidget(this));
3364         if (!m_projectListDock->isFloating()) m_projectListDock->setTitleBarWidget(new QWidget(this));
3365         if (!m_undoViewDock->isFloating()) m_undoViewDock->setTitleBarWidget(new QWidget(this));
3366     }
3367     KdenliveSettings::setShowtitlebars(show);
3368 }
3369
3370 void MainWindow::slotSwitchTitles()
3371 {
3372     slotShowTitleBars(!KdenliveSettings::showtitlebars());
3373 }
3374
3375 #include "mainwindow.moc"
3376