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