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