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