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