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