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