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