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