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