]> git.sesse.net Git - kdenlive/blob - src/mainwindow.cpp
slotRunWizard: Use QPointer [krazy 20/37] by Mikko Rapeli
[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         QPointer<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             delete w;
1840             ::exit(1);
1841         }
1842     }
1843     KConfigGroup treecolumns(config, "Project Tree");
1844     const QByteArray state = treecolumns.readEntry("columns", QByteArray());
1845     if (!state.isEmpty())
1846         m_projectList->setHeaderInfo(state);
1847 }
1848
1849 void MainWindow::slotRunWizard()
1850 {
1851     QPointer<Wizard> w = new Wizard(false, this);
1852     if (w->exec() == QDialog::Accepted && w->isOk()) {
1853         w->adjustSettings();
1854     }
1855     delete w;
1856 }
1857
1858 void MainWindow::newFile(bool showProjectSettings, bool force)
1859 {
1860     if (!m_timelineArea->isEnabled() && !force)
1861         return;
1862     m_fileRevert->setEnabled(false);
1863     QString profileName = KdenliveSettings::default_profile();
1864     KUrl projectFolder = KdenliveSettings::defaultprojectfolder();
1865     QMap <QString, QString> documentProperties;
1866     QMap <QString, QString> documentMetadata;
1867     QPoint projectTracks(KdenliveSettings::videotracks(), KdenliveSettings::audiotracks());
1868     if (!showProjectSettings) {
1869         if (!KdenliveSettings::activatetabs())
1870             if (!closeCurrentDocument())
1871                 return;
1872     } else {
1873         ProjectSettings *w = new ProjectSettings(NULL, QMap <QString, QString> (), QStringList(), projectTracks.x(), projectTracks.y(), KdenliveSettings::defaultprojectfolder(), false, true, this);
1874         if (w->exec() != QDialog::Accepted)
1875             return;
1876         if (!KdenliveSettings::activatetabs())
1877             if (!closeCurrentDocument())
1878                 return;
1879         if (KdenliveSettings::videothumbnails() != w->enableVideoThumbs())
1880             slotSwitchVideoThumbs();
1881         if (KdenliveSettings::audiothumbnails() != w->enableAudioThumbs())
1882             slotSwitchAudioThumbs();
1883         profileName = w->selectedProfile();
1884         projectFolder = w->selectedFolder();
1885         projectTracks = w->tracks();
1886         documentProperties.insert("enableproxy", QString::number((int) w->useProxy()));
1887         documentProperties.insert("generateproxy", QString::number((int) w->generateProxy()));
1888         documentProperties.insert("proxyminsize", QString::number(w->proxyMinSize()));
1889         documentProperties.insert("proxyparams", w->proxyParams());
1890         documentProperties.insert("proxyextension", w->proxyExtension());
1891         documentProperties.insert("generateimageproxy", QString::number((int) w->generateImageProxy()));
1892         documentProperties.insert("proxyimageminsize", QString::number(w->proxyImageMinSize()));
1893         documentMetadata = w->metadata();
1894         delete w;
1895     }
1896     m_timelineArea->setEnabled(true);
1897     m_projectList->setEnabled(true);
1898     bool openBackup;
1899     KdenliveDoc *doc = new KdenliveDoc(KUrl(), projectFolder, m_commandStack, profileName, documentProperties, documentMetadata, projectTracks, m_projectMonitor->render, m_notesWidget, &openBackup, this);
1900     doc->m_autosave = new KAutoSaveFile(KUrl(), doc);
1901     bool ok;
1902     TrackView *trackView = new TrackView(doc, m_tracksActionCollection->actions(), &ok, this);
1903     m_timelineArea->addTab(trackView, KIcon("kdenlive"), doc->description());
1904     if (!ok) {
1905         // MLT is broken
1906         //m_timelineArea->setEnabled(false);
1907         //m_projectList->setEnabled(false);
1908         slotPreferences(6);
1909         return;
1910     }
1911     if (m_timelineArea->count() == 1) {
1912         connectDocumentInfo(doc);
1913         connectDocument(trackView, doc);
1914     } else
1915         m_timelineArea->setTabBarHidden(false);
1916     m_monitorManager->activateMonitor(Kdenlive::clipMonitor);
1917     m_closeAction->setEnabled(m_timelineArea->count() > 1);
1918 }
1919
1920 void MainWindow::activateDocument()
1921 {
1922     if (m_timelineArea->currentWidget() == NULL || !m_timelineArea->isEnabled()) return;
1923     TrackView *currentTab = (TrackView *) m_timelineArea->currentWidget();
1924     KdenliveDoc *currentDoc = currentTab->document();
1925     connectDocumentInfo(currentDoc);
1926     connectDocument(currentTab, currentDoc);
1927 }
1928
1929 bool MainWindow::closeCurrentDocument(bool saveChanges)
1930 {
1931     QWidget *w = m_timelineArea->currentWidget();
1932     if (!w) return true;
1933     // closing current document
1934     int ix = m_timelineArea->currentIndex() + 1;
1935     if (ix == m_timelineArea->count()) ix = 0;
1936     m_timelineArea->setCurrentIndex(ix);
1937     TrackView *tabToClose = (TrackView *) w;
1938     KdenliveDoc *docToClose = tabToClose->document();
1939     if (docToClose && docToClose->isModified() && saveChanges) {
1940         QString message;
1941         if (m_activeDocument->url().fileName().isEmpty())
1942             message = i18n("Save changes to document?");
1943         else
1944             message = i18n("The project <b>\"%1\"</b> has been changed.\nDo you want to save your changes?", m_activeDocument->url().fileName());
1945         switch (KMessageBox::warningYesNoCancel(this, message)) {
1946         case KMessageBox::Yes :
1947             // save document here. If saving fails, return false;
1948             if (saveFile() == false) return false;
1949             break;
1950         case KMessageBox::Cancel :
1951             return false;
1952             break;
1953         default:
1954             break;
1955         }
1956     }
1957     m_clipMonitor->slotSetClipProducer(NULL);
1958     m_projectList->slotResetProjectList();
1959     m_timelineArea->removeTab(m_timelineArea->indexOf(w));
1960     if (m_timelineArea->count() == 1) {
1961         m_timelineArea->setTabBarHidden(true);
1962         m_closeAction->setEnabled(false);
1963     }
1964     if (docToClose == m_activeDocument) {
1965         delete m_activeDocument;
1966         m_activeDocument = NULL;
1967         m_effectStack->clear();
1968         m_transitionConfig->slotTransitionItemSelected(NULL, 0, QPoint(), false);
1969     } else {
1970         delete docToClose;
1971     }
1972     if (w == m_activeTimeline) {
1973         delete m_activeTimeline;
1974         m_activeTimeline = NULL;
1975     } else {
1976         delete w;
1977     }
1978     return true;
1979 }
1980
1981 bool MainWindow::saveFileAs(const QString &outputFileName)
1982 {
1983     QString currentSceneList;
1984     m_monitorManager->stopActiveMonitor();
1985
1986     if (m_activeDocument->saveSceneList(outputFileName, m_projectMonitor->sceneList(), m_projectList->expandedFolders()) == false)
1987         return false;
1988
1989     // Save timeline thumbnails
1990     m_activeTimeline->projectView()->saveThumbnails();
1991     m_activeDocument->setUrl(KUrl(outputFileName));
1992     QByteArray hash = QCryptographicHash::hash(KUrl(outputFileName).encodedPath(), QCryptographicHash::Md5).toHex();
1993     if (m_activeDocument->m_autosave == NULL) {
1994         m_activeDocument->m_autosave = new KAutoSaveFile(KUrl(hash), this);
1995     } else m_activeDocument->m_autosave->setManagedFile(KUrl(hash));
1996     setCaption(m_activeDocument->description());
1997     m_timelineArea->setTabText(m_timelineArea->currentIndex(), m_activeDocument->description());
1998     m_timelineArea->setTabToolTip(m_timelineArea->currentIndex(), m_activeDocument->url().path());
1999     m_activeDocument->setModified(false);
2000     m_fileOpenRecent->addUrl(KUrl(outputFileName));
2001     m_fileRevert->setEnabled(true);
2002     m_undoView->stack()->setClean();
2003     return true;
2004 }
2005
2006 bool MainWindow::saveFileAs()
2007 {
2008     QString outputFile = KFileDialog::getSaveFileName(m_activeDocument->projectFolder(), getMimeType(false));
2009     if (outputFile.isEmpty()) {
2010         return false;
2011     }
2012     if (QFile::exists(outputFile)) {
2013         // Show the file dialog again if the user does not want to overwrite the file
2014         if (KMessageBox::questionYesNo(this, i18n("File %1 already exists.\nDo you want to overwrite it?", outputFile)) == KMessageBox::No)
2015             return saveFileAs();
2016     }
2017     return saveFileAs(outputFile);
2018 }
2019
2020 bool MainWindow::saveFile()
2021 {
2022     if (!m_activeDocument) return true;
2023     if (m_activeDocument->url().isEmpty()) {
2024         return saveFileAs();
2025     } else {
2026         bool result = saveFileAs(m_activeDocument->url().path());
2027         m_activeDocument->m_autosave->resize(0);
2028         return result;
2029     }
2030 }
2031
2032 void MainWindow::openFile()
2033 {
2034     if (!m_startUrl.isEmpty()) {
2035         openFile(m_startUrl);
2036         m_startUrl = KUrl();
2037         return;
2038     }
2039     KUrl url = KFileDialog::getOpenUrl(KUrl("kfiledialog:///projectfolder"), getMimeType());
2040     if (url.isEmpty()) return;
2041     m_fileOpenRecent->addUrl(url);
2042     openFile(url);
2043 }
2044
2045 void MainWindow::openLastFile()
2046 {
2047     KSharedConfigPtr config = KGlobal::config();
2048     KUrl::List urls = m_fileOpenRecent->urls();
2049     //WARNING: this is buggy, we get a random url, not the last one. Bug in KRecentFileAction?
2050     if (urls.isEmpty()) newFile(false);
2051     else openFile(urls.last());
2052 }
2053
2054 void MainWindow::openFile(const KUrl &url)
2055 {
2056     // Make sure the url is a Kdenlive project file
2057     KMimeType::Ptr mime = KMimeType::findByUrl(url);
2058     if (mime.data()->is("application/x-compressed-tar")) {
2059         // Opening a compressed project file, we need to process it
2060         kDebug()<<"Opening archive, processing";
2061         ArchiveWidget *ar = new ArchiveWidget(url);
2062         if (ar->exec() == QDialog::Accepted) openFile(KUrl(ar->extractedProjectFile()));
2063         delete ar;
2064         return;
2065     }
2066     if (!url.fileName().endsWith(".kdenlive")) {
2067         // This is not a Kdenlive project file, abort loading
2068         KMessageBox::sorry(this, i18n("File %1 is not a Kdenlive project file", url.path()));
2069         return;
2070     }
2071
2072     // Check if the document is already opened
2073     const int ct = m_timelineArea->count();
2074     bool isOpened = false;
2075     int i;
2076     for (i = 0; i < ct; i++) {
2077         TrackView *tab = (TrackView *) m_timelineArea->widget(i);
2078         KdenliveDoc *doc = tab->document();
2079         if (doc->url() == url) {
2080             isOpened = true;
2081             break;
2082         }
2083     }
2084     if (isOpened) {
2085         m_timelineArea->setCurrentIndex(i);
2086         return;
2087     }
2088
2089     if (!KdenliveSettings::activatetabs()) if (!closeCurrentDocument()) return;
2090
2091     // Check for backup file
2092     QByteArray hash = QCryptographicHash::hash(url.encodedPath(), QCryptographicHash::Md5).toHex();
2093     QList<KAutoSaveFile *> staleFiles = KAutoSaveFile::staleFiles(KUrl(hash));
2094     if (!staleFiles.isEmpty()) {
2095         if (KMessageBox::questionYesNo(this,
2096                                        i18n("Auto-saved files exist. Do you want to recover them now?"),
2097                                        i18n("File Recovery"),
2098                                        KGuiItem(i18n("Recover")), KGuiItem(i18n("Don't recover"))) == KMessageBox::Yes) {
2099             recoverFiles(staleFiles, url);
2100             return;
2101         } else {
2102             // remove the stale files
2103             foreach(KAutoSaveFile * stale, staleFiles) {
2104                 stale->open(QIODevice::ReadWrite);
2105                 delete stale;
2106             }
2107         }
2108     }
2109     m_messageLabel->setMessage(i18n("Opening file %1", url.path()), InformationMessage);
2110     m_messageLabel->repaint();
2111     doOpenFile(url, NULL);
2112 }
2113
2114 void MainWindow::doOpenFile(const KUrl &url, KAutoSaveFile *stale)
2115 {
2116     if (!m_timelineArea->isEnabled()) return;
2117     m_fileRevert->setEnabled(true);
2118
2119     // Recreate stopmotion widget on document change
2120     if (m_stopmotion) {
2121         delete m_stopmotion;
2122         m_stopmotion = NULL;
2123     }
2124
2125     m_timer.start();
2126     KProgressDialog progressDialog(this, i18n("Loading project"), i18n("Loading project"));
2127     progressDialog.setAllowCancel(false);
2128     progressDialog.progressBar()->setMaximum(4);
2129     progressDialog.show();
2130     progressDialog.progressBar()->setValue(0);
2131     qApp->processEvents();
2132
2133     bool openBackup;
2134     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);
2135
2136     progressDialog.progressBar()->setValue(1);
2137     progressDialog.progressBar()->setMaximum(4);
2138     progressDialog.setLabelText(i18n("Loading project"));
2139     qApp->processEvents();
2140
2141     if (stale == NULL) {
2142         QByteArray hash = QCryptographicHash::hash(url.encodedPath(), QCryptographicHash::Md5).toHex();
2143         stale = new KAutoSaveFile(KUrl(hash), doc);
2144         doc->m_autosave = stale;
2145     } else {
2146         doc->m_autosave = stale;
2147         doc->setUrl(url);//stale->managedFile());
2148         doc->setModified(true);
2149         stale->setParent(doc);
2150     }
2151     connectDocumentInfo(doc);
2152
2153     progressDialog.progressBar()->setValue(2);
2154     qApp->processEvents();
2155
2156     bool ok;
2157     TrackView *trackView = new TrackView(doc, m_tracksActionCollection->actions(), &ok, this);
2158     connectDocument(trackView, doc);
2159     progressDialog.progressBar()->setValue(3);
2160     qApp->processEvents();
2161
2162     m_timelineArea->setCurrentIndex(m_timelineArea->addTab(trackView, KIcon("kdenlive"), doc->description()));
2163     if (!ok) {
2164         m_timelineArea->setEnabled(false);
2165         m_projectList->setEnabled(false);
2166         KMessageBox::sorry(this, i18n("Cannot open file %1.\nProject is corrupted.", url.path()));
2167         slotGotProgressInfo(QString(), -1);
2168         newFile(false, true);
2169         return;
2170     }
2171     m_timelineArea->setTabToolTip(m_timelineArea->currentIndex(), doc->url().path());
2172     trackView->setDuration(trackView->duration());
2173     trackView->projectView()->initCursorPos(m_projectMonitor->render->seekPosition().frames(doc->fps()));
2174
2175     if (m_timelineArea->count() > 1) m_timelineArea->setTabBarHidden(false);
2176     slotGotProgressInfo(QString(), -1);
2177     m_projectMonitor->adjustRulerSize(trackView->duration());
2178     m_projectMonitor->slotZoneMoved(trackView->inPoint(), trackView->outPoint());
2179     progressDialog.progressBar()->setValue(4);
2180     if (openBackup) slotOpenBackupDialog(url);
2181 }
2182
2183 void MainWindow::recoverFiles(QList<KAutoSaveFile *> staleFiles, const KUrl &originUrl)
2184 {
2185     foreach(KAutoSaveFile * stale, staleFiles) {
2186         /*if (!stale->open(QIODevice::QIODevice::ReadOnly)) {
2187                   // show an error message; we could not steal the lockfile
2188                   // maybe another application got to the file before us?
2189                   delete stale;
2190                   continue;
2191         }*/
2192         kDebug() << "// OPENING RECOVERY: " << stale->fileName() << "\nMANAGED: " << stale->managedFile().path();
2193         // the stalefiles also contain ".lock" files so we must ignore them... bug in KAutoSaveFile?
2194         if (!stale->fileName().endsWith(".lock")) doOpenFile(originUrl, stale);
2195         else KIO::NetAccess::del(KUrl(stale->fileName()), this);
2196     }
2197 }
2198
2199 void MainWindow::parseProfiles(const QString &mltPath)
2200 {
2201     //KdenliveSettings::setDefaulttmpfolder();
2202     if (!mltPath.isEmpty()) {
2203         KdenliveSettings::setMltpath(mltPath + "/share/mlt/profiles/");
2204         KdenliveSettings::setRendererpath(mltPath + "/bin/melt");
2205     }
2206
2207     if (KdenliveSettings::mltpath().isEmpty())
2208         KdenliveSettings::setMltpath(QString(MLT_PREFIX) + QString("/share/mlt/profiles/"));
2209
2210     if (KdenliveSettings::rendererpath().isEmpty() || KdenliveSettings::rendererpath().endsWith("inigo")) {
2211         QString meltPath = QString(MLT_PREFIX) + QString("/bin/melt");
2212         if (!QFile::exists(meltPath))
2213             meltPath = KStandardDirs::findExe("melt");
2214         KdenliveSettings::setRendererpath(meltPath);
2215     }
2216
2217     if (KdenliveSettings::rendererpath().isEmpty()) {
2218         // Cannot find the MLT melt renderer, ask for location
2219         KUrlRequesterDialog *getUrl = new KUrlRequesterDialog(QString(), i18n("Cannot find the melt program required for rendering (part of MLT)"), this);
2220         if (getUrl->exec() == QDialog::Rejected) {
2221             ::exit(0);
2222         }
2223         KUrl rendererPath = getUrl->selectedUrl();
2224         delete getUrl;
2225         if (rendererPath.isEmpty()) ::exit(0);
2226         KdenliveSettings::setRendererpath(rendererPath.path());
2227     }
2228
2229     QStringList profilesFilter;
2230     profilesFilter << "*";
2231     QStringList profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
2232     if (profilesList.isEmpty()) {
2233         // Cannot find MLT path, try finding melt
2234         QString profilePath = KdenliveSettings::rendererpath();
2235         if (!profilePath.isEmpty()) {
2236             profilePath = profilePath.section('/', 0, -3);
2237             KdenliveSettings::setMltpath(profilePath + "/share/mlt/profiles/");
2238             profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
2239         }
2240         if (profilesList.isEmpty()) {
2241             // Cannot find the MLT profiles, ask for location
2242             KUrlRequesterDialog *getUrl = new KUrlRequesterDialog(KdenliveSettings::mltpath(), i18n("Cannot find your MLT profiles, please give the path"), this);
2243             getUrl->fileDialog()->setMode(KFile::Directory);
2244             if (getUrl->exec() == QDialog::Rejected) {
2245                 ::exit(0);
2246             }
2247             KUrl mltPath = getUrl->selectedUrl();
2248             delete getUrl;
2249             if (mltPath.isEmpty()) ::exit(0);
2250             KdenliveSettings::setMltpath(mltPath.path(KUrl::AddTrailingSlash));
2251             profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
2252         }
2253     }
2254
2255     kDebug() << "RESULTING MLT PATH: " << KdenliveSettings::mltpath();
2256
2257     // Parse again MLT profiles to build a list of available video formats
2258     if (profilesList.isEmpty()) parseProfiles();
2259 }
2260
2261
2262 void MainWindow::slotEditProfiles()
2263 {
2264     ProfilesDialog *w = new ProfilesDialog;
2265     if (w->exec() == QDialog::Accepted) {
2266         KdenliveSettingsDialog* d = static_cast <KdenliveSettingsDialog*>(KConfigDialog::exists("settings"));
2267         if (d) d->checkProfile();
2268     }
2269     delete w;
2270 }
2271
2272 void MainWindow::slotDetectAudioDriver()
2273 {
2274     /* WARNING: do not use this method because sometimes detects wrong driver (pulse instead of alsa),
2275     leading to no audio output, see bug #934 */
2276
2277     //decide which audio driver is really best, in some cases SDL is wrong
2278     if (KdenliveSettings::audiodrivername().isEmpty()) {
2279         QString driver;
2280         KProcess readProcess;
2281         //PulseAudio needs to be selected if it exists, the ALSA pulse pcm device is not fast enough.
2282         if (!KStandardDirs::findExe("pactl").isEmpty()) {
2283             readProcess.setOutputChannelMode(KProcess::OnlyStdoutChannel);
2284             readProcess.setProgram("pactl", QStringList() << "stat");
2285             readProcess.execute(2000); // Kill it after 2 seconds
2286
2287             QString result = QString(readProcess.readAllStandardOutput());
2288             kDebug() << "// / / / / / READING PACTL: ";
2289             kDebug() << result;
2290             if (!result.isEmpty()) {
2291                 driver = "pulse";
2292                 kDebug() << "// / / / / PULSEAUDIO DETECTED";
2293             }
2294         }
2295         //put others here
2296         KdenliveSettings::setAutoaudiodrivername(driver);
2297     }
2298 }
2299
2300 void MainWindow::slotEditProjectSettings()
2301 {
2302     QPoint p = m_activeDocument->getTracksCount();
2303     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);
2304     connect(w, SIGNAL(disableProxies()), this, SLOT(slotDisableProxies()));
2305
2306     if (w->exec() == QDialog::Accepted) {
2307         QString profile = w->selectedProfile();
2308         m_activeDocument->setProjectFolder(w->selectedFolder());
2309 #ifndef Q_WS_MAC
2310         m_recMonitor->slotUpdateCaptureFolder(m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash));
2311 #endif
2312         if (m_renderWidget) m_renderWidget->setDocumentPath(m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash));
2313         if (KdenliveSettings::videothumbnails() != w->enableVideoThumbs()) slotSwitchVideoThumbs();
2314         if (KdenliveSettings::audiothumbnails() != w->enableAudioThumbs()) slotSwitchAudioThumbs();
2315         if (m_activeDocument->profilePath() != profile) slotUpdateProjectProfile(profile);
2316         if (m_activeDocument->getDocumentProperty("proxyparams") != w->proxyParams()) {
2317             m_activeDocument->setModified();
2318             m_activeDocument->setDocumentProperty("proxyparams", w->proxyParams());
2319             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) {
2320                 //TODO: rebuild all proxies
2321                 //m_projectList->rebuildProxies();
2322             }
2323         }
2324         if (m_activeDocument->getDocumentProperty("proxyextension") != w->proxyExtension()) {
2325             m_activeDocument->setModified();
2326             m_activeDocument->setDocumentProperty("proxyextension", w->proxyExtension());
2327         }
2328         if (m_activeDocument->getDocumentProperty("generateproxy") != QString::number((int) w->generateProxy())) {
2329             m_activeDocument->setModified();
2330             m_activeDocument->setDocumentProperty("generateproxy", QString::number((int) w->generateProxy()));
2331         }
2332         if (m_activeDocument->getDocumentProperty("proxyminsize") != QString::number(w->proxyMinSize())) {
2333             m_activeDocument->setModified();
2334             m_activeDocument->setDocumentProperty("proxyminsize", QString::number(w->proxyMinSize()));
2335         }
2336         if (m_activeDocument->getDocumentProperty("generateimageproxy") != QString::number((int) w->generateImageProxy())) {
2337             m_activeDocument->setModified();
2338             m_activeDocument->setDocumentProperty("generateimageproxy", QString::number((int) w->generateImageProxy()));
2339         }
2340         if (m_activeDocument->getDocumentProperty("proxyimageminsize") != QString::number(w->proxyImageMinSize())) {
2341             m_activeDocument->setModified();
2342             m_activeDocument->setDocumentProperty("proxyimageminsize", QString::number(w->proxyImageMinSize()));
2343         }
2344         if (QString::number((int) w->useProxy()) != m_activeDocument->getDocumentProperty("enableproxy")) {
2345             m_activeDocument->setDocumentProperty("enableproxy", QString::number((int) w->useProxy()));
2346             m_activeDocument->setModified();
2347             slotUpdateProxySettings();
2348         }
2349         m_activeDocument->setMetadata(w->metadata());
2350     }
2351     delete w;
2352 }
2353
2354 void MainWindow::slotDisableProxies()
2355 {
2356     m_activeDocument->setDocumentProperty("enableproxy", QString::number((int) false));
2357     m_activeDocument->setModified();
2358     slotUpdateProxySettings();
2359 }
2360
2361 void MainWindow::slotUpdateProjectProfile(const QString &profile)
2362 {
2363     // Recreate the stopmotion widget if profile changes
2364     if (m_stopmotion) {
2365         delete m_stopmotion;
2366         m_stopmotion = NULL;
2367     }
2368
2369     // Deselect current effect / transition
2370     m_effectStack->slotClipItemSelected(NULL);
2371     m_transitionConfig->slotTransitionItemSelected(NULL, 0, QPoint(), false);
2372     m_clipMonitor->slotSetClipProducer(NULL);
2373     bool updateFps = m_activeDocument->setProfilePath(profile);
2374     KdenliveSettings::setCurrent_profile(profile);
2375     KdenliveSettings::setProject_fps(m_activeDocument->fps());
2376     setCaption(m_activeDocument->description(), m_activeDocument->isModified());
2377
2378     m_activeDocument->clipManager()->clearUnusedProducers();
2379     m_monitorManager->resetProfiles(m_activeDocument->timecode());
2380     m_transitionConfig->updateProjectFormat(m_activeDocument->mltProfile(), m_activeDocument->timecode(), m_activeDocument->tracksList());
2381     m_effectStack->updateProjectFormat(m_activeDocument->mltProfile(), m_activeDocument->timecode());
2382     m_projectList->updateProjectFormat(m_activeDocument->timecode());
2383     if (m_renderWidget) m_renderWidget->setProfile(m_activeDocument->mltProfile());
2384     m_timelineArea->setTabText(m_timelineArea->currentIndex(), m_activeDocument->description());
2385     if (updateFps) m_activeTimeline->updateProjectFps();
2386     m_activeDocument->clipManager()->clearCache();
2387     m_activeTimeline->updateProfile();
2388     m_activeDocument->setModified(true);
2389     m_commandStack->activeStack()->clear();
2390     //Update the mouse position display so it will display in DF/NDF format by default based on the project setting.
2391     slotUpdateMousePosition(0);
2392     // We need to desactivate & reactivate monitors to get a refresh
2393     //m_monitorManager->switchMonitors();
2394 }
2395
2396
2397 void MainWindow::slotRenderProject()
2398 {
2399     if (!m_renderWidget) {
2400         QString projectfolder = m_activeDocument ? m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash) : KdenliveSettings::defaultprojectfolder();
2401         MltVideoProfile profile;
2402         if (m_activeDocument) profile = m_activeDocument->mltProfile();
2403         m_renderWidget = new RenderWidget(projectfolder, m_projectList->useProxy(), profile, this);
2404         connect(m_renderWidget, SIGNAL(shutdown()), this, SLOT(slotShutdown()));
2405         connect(m_renderWidget, SIGNAL(selectedRenderProfile(QMap <QString, QString>)), this, SLOT(slotSetDocumentRenderProfile(QMap <QString, QString>)));
2406         connect(m_renderWidget, SIGNAL(prepareRenderingData(bool, bool, const QString&)), this, SLOT(slotPrepareRendering(bool, bool, const QString&)));
2407         connect(m_renderWidget, SIGNAL(abortProcess(const QString &)), this, SIGNAL(abortRenderJob(const QString &)));
2408         connect(m_renderWidget, SIGNAL(openDvdWizard(const QString &, const QString &)), this, SLOT(slotDvdWizard(const QString &, const QString &)));
2409         if (m_activeDocument) {
2410             m_renderWidget->setProfile(m_activeDocument->mltProfile());
2411             m_renderWidget->setGuides(m_activeDocument->guidesXml(), m_activeDocument->projectDuration());
2412             m_renderWidget->setDocumentPath(m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash));
2413             m_renderWidget->setRenderProfile(m_activeDocument->getRenderProperties());
2414         }
2415     }
2416     slotCheckRenderStatus();
2417     m_renderWidget->show();
2418     m_renderWidget->showNormal();
2419
2420     // What are the following lines supposed to do?
2421     //m_activeTimeline->tracksNumber();
2422     //m_renderWidget->enableAudio(false);
2423     //m_renderWidget->export_audio;
2424 }
2425
2426 void MainWindow::slotCheckRenderStatus()
2427 {
2428     // Make sure there are no missing clips
2429     if (m_renderWidget)
2430         m_renderWidget->missingClips(m_projectList->hasMissingClips());
2431 }
2432
2433 void MainWindow::setRenderingProgress(const QString &url, int progress)
2434 {
2435     if (m_renderWidget)
2436         m_renderWidget->setRenderJob(url, progress);
2437 }
2438
2439 void MainWindow::setRenderingFinished(const QString &url, int status, const QString &error)
2440 {
2441     if (m_renderWidget)
2442         m_renderWidget->setRenderStatus(url, status, error);
2443 }
2444
2445 void MainWindow::slotCleanProject()
2446 {
2447     if (KMessageBox::warningContinueCancel(this, i18n("This will remove all unused clips from your project."), i18n("Clean up project")) == KMessageBox::Cancel) return;
2448     m_projectList->cleanup();
2449 }
2450
2451 void MainWindow::slotUpdateMousePosition(int pos)
2452 {
2453     if (m_activeDocument)
2454         switch (m_timecodeFormat->currentIndex()) {
2455         case 0:
2456             statusBar()->changeItem(m_activeDocument->timecode().getTimecodeFromFrames(pos), ID_TIMELINE_POS);
2457             break;
2458         default:
2459             statusBar()->changeItem(QString::number(pos), ID_TIMELINE_POS);
2460         }
2461 }
2462
2463 void MainWindow::slotUpdateDocumentState(bool modified)
2464 {
2465     if (!m_activeDocument) return;
2466     setCaption(m_activeDocument->description(), modified);
2467     m_saveAction->setEnabled(modified);
2468     if (modified) {
2469         m_timelineArea->setTabTextColor(m_timelineArea->currentIndex(), palette().color(QPalette::Link));
2470         m_timelineArea->setTabIcon(m_timelineArea->currentIndex(), KIcon("document-save"));
2471     } else {
2472         m_timelineArea->setTabTextColor(m_timelineArea->currentIndex(), palette().color(QPalette::Text));
2473         m_timelineArea->setTabIcon(m_timelineArea->currentIndex(), KIcon("kdenlive"));
2474     }
2475 }
2476
2477 void MainWindow::connectDocumentInfo(KdenliveDoc *doc)
2478 {
2479     if (m_activeDocument) {
2480         if (m_activeDocument == doc) return;
2481         disconnect(m_activeDocument, SIGNAL(progressInfo(const QString &, int)), this, SLOT(slotGotProgressInfo(const QString &, int)));
2482     }
2483     connect(doc, SIGNAL(progressInfo(const QString &, int)), this, SLOT(slotGotProgressInfo(const QString &, int)));
2484 }
2485
2486 void MainWindow::connectDocument(TrackView *trackView, KdenliveDoc *doc)   //changed
2487 {
2488     //m_projectMonitor->stop();
2489     m_closeAction->setEnabled(m_timelineArea->count() > 1);
2490     kDebug() << "///////////////////   CONNECTING DOC TO PROJECT VIEW ////////////////";
2491     if (m_activeDocument) {
2492         if (m_activeDocument == doc) return;
2493         if (m_activeTimeline) {
2494             disconnect(m_projectMonitor, SIGNAL(renderPosition(int)), m_activeTimeline, SLOT(moveCursorPos(int)));
2495             disconnect(m_projectMonitor, SIGNAL(zoneUpdated(QPoint)), m_activeTimeline, SLOT(slotSetZone(QPoint)));
2496             disconnect(m_projectMonitor, SIGNAL(durationChanged(int)), m_activeTimeline, SLOT(setDuration(int)));
2497             disconnect(m_projectMonitor, SIGNAL(zoneUpdated(QPoint)), m_activeDocument, SLOT(setModified()));
2498             disconnect(m_notesWidget, SIGNAL(textChanged()), m_activeDocument, SLOT(setModified()));
2499             disconnect(m_clipMonitor, SIGNAL(zoneUpdated(QPoint)), m_activeDocument, SLOT(setModified()));
2500             disconnect(m_projectList, SIGNAL(projectModified()), m_activeDocument, SLOT(setModified()));
2501
2502             disconnect(m_projectMonitor->render, SIGNAL(refreshDocumentProducers(bool, bool)), m_activeDocument, SLOT(checkProjectClips(bool, bool)));
2503
2504             disconnect(m_activeDocument, SIGNAL(guidesUpdated()), this, SLOT(slotGuidesUpdated()));
2505             disconnect(m_activeDocument, SIGNAL(addProjectClip(DocClipBase *, bool)), m_projectList, SLOT(slotAddClip(DocClipBase *, bool)));
2506             disconnect(m_activeDocument, SIGNAL(resetProjectList()), m_projectList, SLOT(slotResetProjectList()));
2507             disconnect(m_activeDocument, SIGNAL(signalDeleteProjectClip(const QString &)), this, SLOT(slotDeleteClip(const QString &)));
2508             disconnect(m_activeDocument, SIGNAL(updateClipDisplay(const QString &)), m_projectList, SLOT(slotUpdateClip(const QString &)));
2509             disconnect(m_activeDocument, SIGNAL(selectLastAddedClip(const QString &)), m_projectList, SLOT(slotSelectClip(const QString &)));
2510             disconnect(m_activeTimeline->projectView(), SIGNAL(clipItemSelected(ClipItem*, bool)), this, SLOT(slotTimelineClipSelected(ClipItem*, bool)));
2511             disconnect(m_activeTimeline->projectView(), SIGNAL(transitionItemSelected(Transition*, int, QPoint, bool)), m_transitionConfig, SLOT(slotTransitionItemSelected(Transition*, int, QPoint, bool)));
2512             disconnect(m_activeTimeline->projectView(), SIGNAL(transitionItemSelected(Transition*, int, QPoint, bool)), this, SLOT(slotActivateTransitionView(Transition *)));
2513             disconnect(m_activeTimeline->projectView(), SIGNAL(playMonitor()), m_projectMonitor, SLOT(slotPlay()));
2514             disconnect(m_activeTimeline->projectView(), SIGNAL(displayMessage(const QString&, MessageType)), m_messageLabel, SLOT(setMessage(const QString&, MessageType)));
2515             disconnect(m_activeTimeline->projectView(), SIGNAL(showClipFrame(DocClipBase *, QPoint, bool, const int)), m_clipMonitor, SLOT(slotSetClipProducer(DocClipBase *, QPoint, bool, const int)));
2516             disconnect(m_projectList, SIGNAL(gotFilterJobResults(const QString &, int, int, const QString &, stringMap)), m_activeTimeline->projectView(), SLOT(slotGotFilterJobResults(const QString &, int, int, const QString &, stringMap)));
2517
2518             disconnect(m_activeTimeline, SIGNAL(cursorMoved()), m_projectMonitor, SLOT(slotActivateMonitor()));
2519             disconnect(m_activeTimeline, SIGNAL(configTrack(int)), this, SLOT(slotConfigTrack(int)));
2520             disconnect(m_activeDocument, SIGNAL(docModified(bool)), this, SLOT(slotUpdateDocumentState(bool)));
2521             disconnect(m_effectStack, SIGNAL(updateEffect(ClipItem*, int, QDomElement, QDomElement, int,bool)), m_activeTimeline->projectView(), SLOT(slotUpdateClipEffect(ClipItem*, int, QDomElement, QDomElement, int,bool)));
2522             disconnect(m_effectStack, SIGNAL(removeEffect(ClipItem*, int, QDomElement)), m_activeTimeline->projectView(), SLOT(slotDeleteEffect(ClipItem*, int, QDomElement)));
2523             disconnect(m_effectStack, SIGNAL(addEffect(ClipItem*, QDomElement)), trackView->projectView(), SLOT(slotAddEffect(ClipItem*, QDomElement)));
2524             disconnect(m_effectStack, SIGNAL(changeEffectState(ClipItem*, int, QList <int>, bool)), m_activeTimeline->projectView(), SLOT(slotChangeEffectState(ClipItem*, int, QList <int>, bool)));
2525             disconnect(m_effectStack, SIGNAL(changeEffectPosition(ClipItem*, int, QList<int>, int)), m_activeTimeline->projectView(), SLOT(slotChangeEffectPosition(ClipItem*, int, QList <int>, int)));
2526             disconnect(m_effectStack, SIGNAL(refreshEffectStack(ClipItem*)), m_activeTimeline->projectView(), SLOT(slotRefreshEffects(ClipItem*)));
2527             disconnect(m_effectStack, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
2528             disconnect(m_effectStack, SIGNAL(displayMessage(const QString&, int)), this, SLOT(slotGotProgressInfo(const QString&, int)));
2529             disconnect(m_transitionConfig, SIGNAL(transitionUpdated(Transition *, QDomElement)), m_activeTimeline->projectView() , SLOT(slotTransitionUpdated(Transition *, QDomElement)));
2530             disconnect(m_transitionConfig, SIGNAL(seekTimeline(int)), m_activeTimeline->projectView() , SLOT(setCursorPos(int)));
2531             disconnect(m_activeTimeline->projectView(), SIGNAL(activateDocumentMonitor()), m_projectMonitor, SLOT(slotActivateMonitor()));
2532             disconnect(m_activeTimeline, SIGNAL(zoneMoved(int, int)), this, SLOT(slotZoneMoved(int, int)));
2533             disconnect(m_projectList, SIGNAL(loadingIsOver()), m_activeTimeline->projectView(), SLOT(slotUpdateAllThumbs()));
2534             disconnect(m_projectList, SIGNAL(refreshClip(const QString &)), m_activeTimeline->projectView(), SLOT(slotRefreshThumbs(const QString &)));
2535             m_effectStack->clear();
2536         }
2537         //m_activeDocument->setRenderer(NULL);
2538         m_clipMonitor->stop();
2539     }
2540     KdenliveSettings::setCurrent_profile(doc->profilePath());
2541     KdenliveSettings::setProject_fps(doc->fps());
2542     m_monitorManager->resetProfiles(doc->timecode());
2543     m_clipMonitorDock->raise();
2544     m_projectList->setDocument(doc);
2545     m_transitionConfig->updateProjectFormat(doc->mltProfile(), doc->timecode(), doc->tracksList());
2546     m_effectStack->updateProjectFormat(doc->mltProfile(), doc->timecode());
2547     connect(m_projectList, SIGNAL(refreshClip(const QString &, bool)), trackView->projectView(), SLOT(slotRefreshThumbs(const QString &, bool)));
2548
2549     connect(m_projectList, SIGNAL(projectModified()), doc, SLOT(setModified()));
2550     connect(m_projectList, SIGNAL(clipNameChanged(const QString, const QString)), trackView->projectView(), SLOT(clipNameChanged(const QString, const QString)));
2551
2552     //connect(trackView, SIGNAL(cursorMoved()), m_projectMonitor, SLOT(activateMonitor()));
2553     connect(trackView, SIGNAL(configTrack(int)), this, SLOT(slotConfigTrack(int)));
2554     connect(trackView, SIGNAL(updateTracksInfo()), this, SLOT(slotUpdateTrackInfo()));
2555     connect(trackView, SIGNAL(mousePosition(int)), this, SLOT(slotUpdateMousePosition(int)));
2556     connect(trackView->projectView(), SIGNAL(forceClipProcessing(const QString &)), m_projectList, SLOT(slotForceProcessing(const QString &)));
2557     connect(m_projectMonitor, SIGNAL(renderPosition(int)), trackView, SLOT(moveCursorPos(int)));
2558     connect(m_projectMonitor, SIGNAL(zoneUpdated(QPoint)), trackView, SLOT(slotSetZone(QPoint)));
2559     connect(m_projectMonitor, SIGNAL(zoneUpdated(QPoint)), doc, SLOT(setModified()));
2560     connect(m_clipMonitor, SIGNAL(zoneUpdated(QPoint)), doc, SLOT(setModified()));
2561     connect(m_projectMonitor, SIGNAL(durationChanged(int)), trackView, SLOT(setDuration(int)));
2562     connect(m_projectMonitor->render, SIGNAL(refreshDocumentProducers(bool, bool)), doc, SLOT(checkProjectClips(bool, bool)));
2563
2564     connect(doc, SIGNAL(addProjectClip(DocClipBase *, bool)), m_projectList, SLOT(slotAddClip(DocClipBase *, bool)));
2565     connect(doc, SIGNAL(resetProjectList()), m_projectList, SLOT(slotResetProjectList()));
2566     connect(doc, SIGNAL(signalDeleteProjectClip(const QString &)), this, SLOT(slotDeleteClip(const QString &)));
2567     connect(doc, SIGNAL(updateClipDisplay(const QString &)), m_projectList, SLOT(slotUpdateClip(const QString &)));
2568     connect(doc, SIGNAL(selectLastAddedClip(const QString &)), m_projectList, SLOT(slotSelectClip(const QString &)));
2569
2570     connect(doc, SIGNAL(docModified(bool)), this, SLOT(slotUpdateDocumentState(bool)));
2571     connect(doc, SIGNAL(guidesUpdated()), this, SLOT(slotGuidesUpdated()));
2572     connect(doc, SIGNAL(saveTimelinePreview(const QString &)), trackView, SLOT(slotSaveTimelinePreview(const QString)));
2573
2574     connect(m_notesWidget, SIGNAL(textChanged()), doc, SLOT(setModified()));
2575
2576     connect(trackView->projectView(), SIGNAL(updateClipMarkers(DocClipBase *)), this, SLOT(slotUpdateClipMarkers(DocClipBase*)));
2577     connect(trackView, SIGNAL(showTrackEffects(int, TrackInfo)), this, SLOT(slotTrackSelected(int, TrackInfo)));
2578
2579     connect(trackView->projectView(), SIGNAL(clipItemSelected(ClipItem*, bool)), this, SLOT(slotTimelineClipSelected(ClipItem*, bool)));
2580     connect(trackView->projectView(), SIGNAL(transitionItemSelected(Transition*, int, QPoint, bool)), m_transitionConfig, SLOT(slotTransitionItemSelected(Transition*, int, QPoint, bool)));
2581     connect(trackView->projectView(), SIGNAL(transitionItemSelected(Transition*, int, QPoint, bool)), this, SLOT(slotActivateTransitionView(Transition *)));
2582     m_zoomSlider->setValue(doc->zoom().x());
2583     connect(trackView->projectView(), SIGNAL(zoomIn()), this, SLOT(slotZoomIn()));
2584     connect(trackView->projectView(), SIGNAL(zoomOut()), this, SLOT(slotZoomOut()));
2585     connect(trackView, SIGNAL(setZoom(int)), this, SLOT(slotSetZoom(int)));
2586     connect(trackView->projectView(), SIGNAL(displayMessage(const QString&, MessageType)), m_messageLabel, SLOT(setMessage(const QString&, MessageType)));
2587
2588     connect(trackView->projectView(), SIGNAL(showClipFrame(DocClipBase *, QPoint, bool, const int)), m_clipMonitor, SLOT(slotSetClipProducer(DocClipBase *, QPoint, bool, const int)));
2589     connect(trackView->projectView(), SIGNAL(playMonitor()), m_projectMonitor, SLOT(slotPlay()));
2590
2591     connect(trackView->projectView(), SIGNAL(transitionItemSelected(Transition*, int, QPoint, bool)), m_projectMonitor, SLOT(slotSetSelectedClip(Transition*)));
2592
2593     connect(m_projectList, SIGNAL(gotFilterJobResults(const QString &, int, int, const QString &, stringMap)), trackView->projectView(), SLOT(slotGotFilterJobResults(const QString &, int, int, const QString &, stringMap)));
2594
2595     // Effect stack signals
2596     connect(m_effectStack, SIGNAL(updateEffect(ClipItem*, int, QDomElement, QDomElement, int,bool)), trackView->projectView(), SLOT(slotUpdateClipEffect(ClipItem*, int, QDomElement, QDomElement, int,bool)));
2597     connect(m_effectStack, SIGNAL(updateClipRegion(ClipItem*, int, QString)), trackView->projectView(), SLOT(slotUpdateClipRegion(ClipItem*, int, QString)));
2598     connect(m_effectStack, SIGNAL(removeEffect(ClipItem*, int, QDomElement)), trackView->projectView(), SLOT(slotDeleteEffect(ClipItem*, int, QDomElement)));
2599     connect(m_effectStack, SIGNAL(addEffect(ClipItem*, QDomElement)), trackView->projectView(), SLOT(slotAddEffect(ClipItem*, QDomElement)));
2600     connect(m_effectStack, SIGNAL(changeEffectState(ClipItem*, int, QList <int>, bool)), trackView->projectView(), SLOT(slotChangeEffectState(ClipItem*, int, QList <int>, bool)));
2601     connect(m_effectStack, SIGNAL(changeEffectPosition(ClipItem*, int, QList <int>, int)), trackView->projectView(), SLOT(slotChangeEffectPosition(ClipItem*, int, QList <int>, int)));
2602     connect(m_effectStack, SIGNAL(refreshEffectStack(ClipItem*)), trackView->projectView(), SLOT(slotRefreshEffects(ClipItem*)));
2603     connect(m_effectStack, SIGNAL(seekTimeline(int)), trackView->projectView() , SLOT(setCursorPos(int)));
2604     connect(m_effectStack, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
2605     connect(m_effectStack, SIGNAL(displayMessage(const QString&, int)), this, SLOT(slotGotProgressInfo(const QString&, int)));
2606     
2607     // Transition config signals
2608     connect(m_transitionConfig, SIGNAL(transitionUpdated(Transition *, QDomElement)), trackView->projectView() , SLOT(slotTransitionUpdated(Transition *, QDomElement)));
2609     connect(m_transitionConfig, SIGNAL(seekTimeline(int)), trackView->projectView() , SLOT(setCursorPos(int)));
2610
2611     connect(trackView->projectView(), SIGNAL(activateDocumentMonitor()), m_projectMonitor, SLOT(slotActivateMonitor()));
2612     connect(trackView, SIGNAL(zoneMoved(int, int)), this, SLOT(slotZoneMoved(int, int)));
2613     connect(m_projectList, SIGNAL(loadingIsOver()), trackView->projectView(), SLOT(slotUpdateAllThumbs()));
2614     trackView->projectView()->setContextMenu(m_timelineContextMenu, m_timelineContextClipMenu, m_timelineContextTransitionMenu, m_clipTypeGroup, static_cast<QMenu*>(factory()->container("marker_menu", this)));
2615     m_activeTimeline = trackView;
2616     if (m_renderWidget) {
2617         slotCheckRenderStatus();
2618         m_renderWidget->setProfile(doc->mltProfile());
2619         m_renderWidget->setGuides(doc->guidesXml(), doc->projectDuration());
2620         m_renderWidget->setDocumentPath(doc->projectFolder().path(KUrl::AddTrailingSlash));
2621         m_renderWidget->setRenderProfile(doc->getRenderProperties());
2622     }
2623     //doc->setRenderer(m_projectMonitor->render);
2624     m_commandStack->setActiveStack(doc->commandStack());
2625     KdenliveSettings::setProject_display_ratio(doc->dar());
2626     //doc->clipManager()->checkAudioThumbs();
2627
2628     //m_overView->setScene(trackView->projectScene());
2629     //m_overView->scale(m_overView->width() / trackView->duration(), m_overView->height() / (50 * trackView->tracksNumber()));
2630     //m_overView->fitInView(m_overView->itemAt(0, 50), Qt::KeepAspectRatio);
2631
2632     setCaption(doc->description(), doc->isModified());
2633     m_saveAction->setEnabled(doc->isModified());
2634     m_normalEditTool->setChecked(true);
2635     m_activeDocument = doc;
2636     m_activeTimeline->updateProjectFps();
2637     m_activeDocument->checkProjectClips();
2638 #ifndef Q_WS_MAC
2639     m_recMonitor->slotUpdateCaptureFolder(m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash));
2640 #endif
2641     //Update the mouse position display so it will display in DF/NDF format by default based on the project setting.
2642     slotUpdateMousePosition(0);
2643     m_monitorManager->activateMonitor(Kdenlive::clipMonitor);
2644     // set tool to select tool
2645     m_buttonSelectTool->setChecked(true);
2646 }
2647
2648 void MainWindow::slotZoneMoved(int start, int end)
2649 {
2650     m_activeDocument->setZone(start, end);
2651     m_projectMonitor->slotZoneMoved(start, end);
2652 }
2653
2654 void MainWindow::slotGuidesUpdated()
2655 {
2656     if (m_renderWidget)
2657         m_renderWidget->setGuides(m_activeDocument->guidesXml(), m_activeDocument->projectDuration());
2658 }
2659
2660 void MainWindow::slotEditKeys()
2661 {
2662     KShortcutsDialog dialog(KShortcutsEditor::AllActions, KShortcutsEditor::LetterShortcutsAllowed, this);
2663     dialog.addCollection(actionCollection(), i18nc("general keyboard shortcuts", "General"));
2664     dialog.addCollection(m_effectsActionCollection, i18nc("effects and transitions keyboard shortcuts", "Effects & Transitions"));
2665     dialog.addCollection(m_tracksActionCollection, i18nc("timeline track keyboard shortcuts", "Timeline and Tracks"));
2666     dialog.configure();
2667 }
2668
2669 void MainWindow::slotPreferences(int page, int option)
2670 {
2671     /*
2672      * An instance of your dialog could be already created and could be
2673      * cached, in which case you want to display the cached dialog
2674      * instead of creating another one
2675      */
2676     if (m_stopmotion) m_stopmotion->slotLive(false);
2677     if (KConfigDialog::showDialog("settings")) {
2678         KdenliveSettingsDialog* d = static_cast <KdenliveSettingsDialog*>(KConfigDialog::exists("settings"));
2679         if (page != -1) d->showPage(page, option);
2680         return;
2681     }
2682
2683     // KConfigDialog didn't find an instance of this dialog, so lets
2684     // create it :
2685
2686     // Get the mappable actions in localized form
2687     QMap<QString, QString> actions;
2688     KActionCollection* collection = actionCollection();
2689     foreach (const QString& action_name, m_action_names) {
2690         actions[collection->action(action_name)->text()] = action_name;
2691     }
2692
2693     KdenliveSettingsDialog* dialog = new KdenliveSettingsDialog(actions, this);
2694     connect(dialog, SIGNAL(settingsChanged(const QString&)), this, SLOT(updateConfiguration()));
2695     connect(dialog, SIGNAL(doResetProfile()), m_monitorManager, SLOT(slotResetProfiles()));
2696 #ifndef Q_WS_MAC
2697     connect(dialog, SIGNAL(updateCaptureFolder()), this, SLOT(slotUpdateCaptureFolder()));
2698 #endif
2699     dialog->show();
2700     if (page != -1) dialog->showPage(page, option);
2701 }
2702
2703 void MainWindow::slotUpdateCaptureFolder()
2704 {
2705
2706 #ifndef Q_WS_MAC
2707     if (m_activeDocument) m_recMonitor->slotUpdateCaptureFolder(m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash));
2708     else m_recMonitor->slotUpdateCaptureFolder(KdenliveSettings::defaultprojectfolder());
2709 #endif
2710 }
2711
2712 void MainWindow::updateConfiguration()
2713 {
2714     //TODO: we should apply settings to all projects, not only the current one
2715     if (m_activeTimeline) {
2716         m_activeTimeline->refresh();
2717         m_activeTimeline->projectView()->checkAutoScroll();
2718         m_activeTimeline->checkTrackHeight();
2719         if (m_activeDocument)
2720             m_activeDocument->clipManager()->checkAudioThumbs();
2721     }
2722     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
2723     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
2724     m_buttonShowMarkers->setChecked(KdenliveSettings::showmarkers());
2725     m_buttonAutomaticSplitAudio->setChecked(KdenliveSettings::splitaudio());
2726
2727     // Update list of transcoding profiles
2728     loadTranscoders();
2729     loadStabilize();
2730 #ifdef USE_JOGSHUTTLE
2731     activateShuttleDevice();
2732 #endif
2733
2734 }
2735
2736 void MainWindow::slotSwitchSplitAudio()
2737 {
2738     KdenliveSettings::setSplitaudio(!KdenliveSettings::splitaudio());
2739     m_buttonAutomaticSplitAudio->setChecked(KdenliveSettings::splitaudio());
2740 }
2741
2742 void MainWindow::slotSwitchVideoThumbs()
2743 {
2744     KdenliveSettings::setVideothumbnails(!KdenliveSettings::videothumbnails());
2745     if (m_activeTimeline)
2746         m_activeTimeline->projectView()->slotUpdateAllThumbs();
2747     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
2748 }
2749
2750 void MainWindow::slotSwitchAudioThumbs()
2751 {
2752     KdenliveSettings::setAudiothumbnails(!KdenliveSettings::audiothumbnails());
2753     if (m_activeTimeline) {
2754         m_activeTimeline->refresh();
2755         m_activeTimeline->projectView()->checkAutoScroll();
2756         if (m_activeDocument)
2757             m_activeDocument->clipManager()->checkAudioThumbs();
2758     }
2759     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
2760 }
2761
2762 void MainWindow::slotSwitchMarkersComments()
2763 {
2764     KdenliveSettings::setShowmarkers(!KdenliveSettings::showmarkers());
2765     if (m_activeTimeline)
2766         m_activeTimeline->refresh();
2767     m_buttonShowMarkers->setChecked(KdenliveSettings::showmarkers());
2768 }
2769
2770 void MainWindow::slotSwitchSnap()
2771 {
2772     KdenliveSettings::setSnaptopoints(!KdenliveSettings::snaptopoints());
2773     m_buttonSnap->setChecked(KdenliveSettings::snaptopoints());
2774 }
2775
2776
2777 void MainWindow::slotDeleteItem()
2778 {
2779     if (QApplication::focusWidget() &&
2780             QApplication::focusWidget()->parentWidget() &&
2781             QApplication::focusWidget()->parentWidget()->parentWidget() &&
2782             QApplication::focusWidget()->parentWidget()->parentWidget() == m_projectListDock) {
2783         m_projectList->slotRemoveClip();
2784
2785     } else {
2786         QWidget *widget = QApplication::focusWidget();
2787         while (widget) {
2788             if (widget == m_effectStackDock) {
2789                 m_effectStack->deleteCurrentEffect();
2790                 return;
2791             }
2792             widget = widget->parentWidget();
2793         }
2794
2795         // effect stack has no focus
2796         if (m_activeTimeline)
2797             m_activeTimeline->projectView()->deleteSelectedClips();
2798     }
2799 }
2800
2801 void MainWindow::slotUpdateClipMarkers(DocClipBase *clip)
2802 {
2803     if (m_clipMonitor->isActive())
2804         m_clipMonitor->checkOverlay();
2805     m_clipMonitor->updateMarkers(clip);
2806 }
2807
2808 void MainWindow::slotAddClipMarker()
2809 {
2810     DocClipBase *clip = NULL;
2811     GenTime pos;
2812     if (m_projectMonitor->isActive()) {
2813         if (m_activeTimeline) {
2814             ClipItem *item = m_activeTimeline->projectView()->getActiveClipUnderCursor();
2815             if (item) {
2816                 pos = GenTime((int)((m_projectMonitor->position() - item->startPos() + item->cropStart()).frames(m_activeDocument->fps()) * item->speed() + 0.5), m_activeDocument->fps());
2817                 clip = item->baseClip();
2818             }
2819         }
2820     } else {
2821         clip = m_clipMonitor->activeClip();
2822         pos = m_clipMonitor->position();
2823     }
2824     if (!clip) {
2825         m_messageLabel->setMessage(i18n("Cannot find clip to add marker"), ErrorMessage);
2826         return;
2827     }
2828     QString id = clip->getId();
2829     CommentedTime marker(pos, i18n("Marker"));
2830     MarkerDialog d(clip, marker, m_activeDocument->timecode(), i18n("Add Marker"), this);
2831     if (d.exec() == QDialog::Accepted)
2832         m_activeTimeline->projectView()->slotAddClipMarker(id, d.newMarker().time(), d.newMarker().comment());
2833 }
2834
2835 void MainWindow::slotDeleteClipMarker()
2836 {
2837     DocClipBase *clip = NULL;
2838     GenTime pos;
2839     if (m_projectMonitor->isActive()) {
2840         if (m_activeTimeline) {
2841             ClipItem *item = m_activeTimeline->projectView()->getActiveClipUnderCursor();
2842             if (item) {
2843                 pos = (m_projectMonitor->position() - item->startPos() + item->cropStart()) / item->speed();
2844                 clip = item->baseClip();
2845             }
2846         }
2847     } else {
2848         clip = m_clipMonitor->activeClip();
2849         pos = m_clipMonitor->position();
2850     }
2851     if (!clip) {
2852         m_messageLabel->setMessage(i18n("Cannot find clip to remove marker"), ErrorMessage);
2853         return;
2854     }
2855
2856     QString id = clip->getId();
2857     QString comment = clip->markerComment(pos);
2858     if (comment.isEmpty()) {
2859         m_messageLabel->setMessage(i18n("No marker found at cursor time"), ErrorMessage);
2860         return;
2861     }
2862     m_activeTimeline->projectView()->slotDeleteClipMarker(comment, id, pos);
2863 }
2864
2865 void MainWindow::slotDeleteAllClipMarkers()
2866 {
2867     DocClipBase *clip = NULL;
2868     if (m_projectMonitor->isActive()) {
2869         if (m_activeTimeline) {
2870             ClipItem *item = m_activeTimeline->projectView()->getActiveClipUnderCursor();
2871             if (item) {
2872                 clip = item->baseClip();
2873             }
2874         }
2875     } else {
2876         clip = m_clipMonitor->activeClip();
2877     }
2878     if (!clip) {
2879         m_messageLabel->setMessage(i18n("Cannot find clip to remove marker"), ErrorMessage);
2880         return;
2881     }
2882     m_activeTimeline->projectView()->slotDeleteAllClipMarkers(clip->getId());
2883 }
2884
2885 void MainWindow::slotEditClipMarker()
2886 {
2887     DocClipBase *clip = NULL;
2888     GenTime pos;
2889     if (m_projectMonitor->isActive()) {
2890         if (m_activeTimeline) {
2891             ClipItem *item = m_activeTimeline->projectView()->getActiveClipUnderCursor();
2892             if (item) {
2893                 pos = (m_projectMonitor->position() - item->startPos() + item->cropStart()) / item->speed();
2894                 clip = item->baseClip();
2895             }
2896         }
2897     } else {
2898         clip = m_clipMonitor->activeClip();
2899         pos = m_clipMonitor->position();
2900     }
2901     if (!clip) {
2902         m_messageLabel->setMessage(i18n("Cannot find clip to remove marker"), ErrorMessage);
2903         return;
2904     }
2905
2906     QString id = clip->getId();
2907     QString oldcomment = clip->markerComment(pos);
2908     if (oldcomment.isEmpty()) {
2909         m_messageLabel->setMessage(i18n("No marker found at cursor time"), ErrorMessage);
2910         return;
2911     }
2912
2913     CommentedTime marker(pos, oldcomment);
2914     MarkerDialog d(clip, marker, m_activeDocument->timecode(), i18n("Edit Marker"), this);
2915     if (d.exec() == QDialog::Accepted) {
2916         m_activeTimeline->projectView()->slotAddClipMarker(id, d.newMarker().time(), d.newMarker().comment());
2917         if (d.newMarker().time() != pos) {
2918             // remove old marker
2919             m_activeTimeline->projectView()->slotAddClipMarker(id, pos, QString());
2920         }
2921     }
2922 }
2923
2924 void MainWindow::slotAddMarkerGuideQuickly()
2925 {
2926     if (!m_activeTimeline || !m_activeDocument)
2927         return;
2928
2929     if (m_clipMonitor->isActive()) {
2930         DocClipBase *clip = m_clipMonitor->activeClip();
2931         GenTime pos = m_clipMonitor->position();
2932
2933         if (!clip) {
2934             m_messageLabel->setMessage(i18n("Cannot find clip to add marker"), ErrorMessage);
2935             return;
2936         }
2937
2938         m_activeTimeline->projectView()->slotAddClipMarker(clip->getId(), pos, m_activeDocument->timecode().getDisplayTimecode(pos, false));
2939     } else {
2940         m_activeTimeline->projectView()->slotAddGuide(false);
2941     }
2942 }
2943
2944 void MainWindow::slotAddGuide()
2945 {
2946     if (m_activeTimeline)
2947         m_activeTimeline->projectView()->slotAddGuide();
2948 }
2949
2950 void MainWindow::slotInsertSpace()
2951 {
2952     if (m_activeTimeline)
2953         m_activeTimeline->projectView()->slotInsertSpace();
2954 }
2955
2956 void MainWindow::slotRemoveSpace()
2957 {
2958     if (m_activeTimeline)
2959         m_activeTimeline->projectView()->slotRemoveSpace();
2960 }
2961
2962 void MainWindow::slotInsertTrack(int ix)
2963 {
2964     m_projectMonitor->slotActivateMonitor();
2965     if (m_activeTimeline) {
2966         if (ix == -1) ix = m_activeTimeline->projectView()->selectedTrack();
2967         m_activeTimeline->projectView()->slotInsertTrack(ix);
2968     }
2969     if (m_activeDocument)
2970         m_transitionConfig->updateProjectFormat(m_activeDocument->mltProfile(), m_activeDocument->timecode(), m_activeDocument->tracksList());
2971 }
2972
2973 void MainWindow::slotDeleteTrack(int ix)
2974 {
2975     m_projectMonitor->slotActivateMonitor();
2976     if (m_activeTimeline) {
2977         if (ix == -1) ix = m_activeTimeline->projectView()->selectedTrack();
2978         m_activeTimeline->projectView()->slotDeleteTrack(ix);
2979     }
2980     if (m_activeDocument)
2981         m_transitionConfig->updateProjectFormat(m_activeDocument->mltProfile(), m_activeDocument->timecode(), m_activeDocument->tracksList());
2982 }
2983
2984 void MainWindow::slotConfigTrack(int ix)
2985 {
2986     m_projectMonitor->slotActivateMonitor();
2987     if (m_activeTimeline)
2988         m_activeTimeline->projectView()->slotConfigTracks(ix);
2989     if (m_activeDocument)
2990         m_transitionConfig->updateProjectFormat(m_activeDocument->mltProfile(), m_activeDocument->timecode(), m_activeDocument->tracksList());
2991 }
2992
2993 void MainWindow::slotSelectTrack()
2994 {
2995     m_projectMonitor->slotActivateMonitor();
2996     if (m_activeTimeline) {
2997         m_activeTimeline->projectView()->slotSelectClipsInTrack();
2998     }
2999 }
3000
3001 void MainWindow::slotSelectAllTracks()
3002 {
3003     m_projectMonitor->slotActivateMonitor();
3004     if (m_activeTimeline)
3005         m_activeTimeline->projectView()->slotSelectAllClips();
3006 }
3007
3008 void MainWindow::slotEditGuide()
3009 {
3010     if (m_activeTimeline)
3011         m_activeTimeline->projectView()->slotEditGuide();
3012 }
3013
3014 void MainWindow::slotDeleteGuide()
3015 {
3016     if (m_activeTimeline)
3017         m_activeTimeline->projectView()->slotDeleteGuide();
3018 }
3019
3020 void MainWindow::slotDeleteAllGuides()
3021 {
3022     if (m_activeTimeline)
3023         m_activeTimeline->projectView()->slotDeleteAllGuides();
3024 }
3025
3026 void MainWindow::slotCutTimelineClip()
3027 {
3028     if (m_activeTimeline)
3029         m_activeTimeline->projectView()->cutSelectedClips();
3030 }
3031
3032 void MainWindow::slotInsertClipOverwrite()
3033 {
3034     if (m_activeTimeline) {
3035         QStringList data = m_clipMonitor->getZoneInfo();
3036         m_activeTimeline->projectView()->insertZoneOverwrite(data, m_activeTimeline->inPoint());
3037     }
3038 }
3039
3040 void MainWindow::slotSelectTimelineClip()
3041 {
3042     if (m_activeTimeline)
3043         m_activeTimeline->projectView()->selectClip(true);
3044 }
3045
3046 void MainWindow::slotSelectTimelineTransition()
3047 {
3048     if (m_activeTimeline)
3049         m_activeTimeline->projectView()->selectTransition(true);
3050 }
3051
3052 void MainWindow::slotDeselectTimelineClip()
3053 {
3054     if (m_activeTimeline)
3055         m_activeTimeline->projectView()->selectClip(false, true);
3056 }
3057
3058 void MainWindow::slotDeselectTimelineTransition()
3059 {
3060     if (m_activeTimeline)
3061         m_activeTimeline->projectView()->selectTransition(false, true);
3062 }
3063
3064 void MainWindow::slotSelectAddTimelineClip()
3065 {
3066     if (m_activeTimeline)
3067         m_activeTimeline->projectView()->selectClip(true, true);
3068 }
3069
3070 void MainWindow::slotSelectAddTimelineTransition()
3071 {
3072     if (m_activeTimeline)
3073         m_activeTimeline->projectView()->selectTransition(true, true);
3074 }
3075
3076 void MainWindow::slotGroupClips()
3077 {
3078     if (m_activeTimeline)
3079         m_activeTimeline->projectView()->groupClips();
3080 }
3081
3082 void MainWindow::slotUnGroupClips()
3083 {
3084     if (m_activeTimeline)
3085         m_activeTimeline->projectView()->groupClips(false);
3086 }
3087
3088 void MainWindow::slotEditItemDuration()
3089 {
3090     if (m_activeTimeline)
3091         m_activeTimeline->projectView()->editItemDuration();
3092 }
3093
3094 void MainWindow::slotAddProjectClip(KUrl url, const QString &comment)
3095 {
3096     if (m_activeDocument)
3097         m_activeDocument->slotAddClipFile(url, QString(), QString(), comment);
3098 }
3099
3100 void MainWindow::slotAddProjectClipList(KUrl::List urls)
3101 {
3102     if (m_activeDocument)
3103         m_activeDocument->slotAddClipList(urls, QString());
3104 }
3105
3106 void MainWindow::slotAddTransition(QAction *result)
3107 {
3108     if (!result) return;
3109     QStringList info = result->data().toStringList();
3110     if (info.isEmpty()) return;
3111     QDomElement transition = transitions.getEffectByTag(info.at(1), info.at(2));
3112     if (m_activeTimeline && !transition.isNull()) {
3113         m_activeTimeline->projectView()->slotAddTransitionToSelectedClips(transition.cloneNode().toElement());
3114     }
3115 }
3116
3117 void MainWindow::slotAddVideoEffect(QAction *result)
3118 {
3119     if (!result) return;
3120     const int EFFECT_VIDEO = 1;
3121     const int EFFECT_AUDIO = 2;
3122     QStringList info = result->data().toStringList();
3123
3124     if (info.isEmpty() || info.size() < 3) return;
3125     QDomElement effect ;
3126     if (info.last() == QString::number((int) EFFECT_VIDEO))
3127             effect = videoEffects.getEffectByTag(info.at(0), info.at(1));
3128     else if (info.last() == QString::number((int) EFFECT_AUDIO))
3129             effect = audioEffects.getEffectByTag(info.at(0), info.at(1));
3130     else
3131             effect = customEffects.getEffectByTag(info.at(0), info.at(1));
3132     if (!effect.isNull()) slotAddEffect(effect);
3133     else m_messageLabel->setMessage(i18n("Cannot find effect %1 / %2", info.at(0), info.at(1)), ErrorMessage);
3134 }
3135
3136
3137 void MainWindow::slotZoomIn()
3138 {
3139     m_zoomSlider->setValue(m_zoomSlider->value() - 1);
3140     slotShowZoomSliderToolTip();
3141 }
3142
3143 void MainWindow::slotZoomOut()
3144 {
3145     m_zoomSlider->setValue(m_zoomSlider->value() + 1);
3146     slotShowZoomSliderToolTip();
3147 }
3148
3149 void MainWindow::slotFitZoom()
3150 {
3151     if (m_activeTimeline)
3152         m_zoomSlider->setValue(m_activeTimeline->fitZoom());
3153 }
3154
3155 void MainWindow::slotSetZoom(int value)
3156 {
3157     value = qMax(m_zoomSlider->minimum(), value);
3158     value = qMin(m_zoomSlider->maximum(), value);
3159
3160     if (m_activeTimeline)
3161         m_activeTimeline->slotChangeZoom(value);
3162
3163     m_zoomOut->setEnabled(value < m_zoomSlider->maximum());
3164     m_zoomIn->setEnabled(value > m_zoomSlider->minimum());
3165     slotUpdateZoomSliderToolTip(value);
3166
3167     m_zoomSlider->blockSignals(true);
3168     m_zoomSlider->setValue(value);
3169     m_zoomSlider->blockSignals(false);
3170 }
3171
3172 void MainWindow::slotShowZoomSliderToolTip(int zoomlevel)
3173 {
3174     if (zoomlevel != -1)
3175         slotUpdateZoomSliderToolTip(zoomlevel);
3176
3177     QPoint global = m_zoomSlider->rect().topLeft();
3178     global.ry() += m_zoomSlider->height() / 2;
3179     QHelpEvent toolTipEvent(QEvent::ToolTip, QPoint(0, 0), m_zoomSlider->mapToGlobal(global));
3180     QApplication::sendEvent(m_zoomSlider, &toolTipEvent);
3181 }
3182
3183 void MainWindow::slotUpdateZoomSliderToolTip(int zoomlevel)
3184 {
3185     m_zoomSlider->setToolTip(i18n("Zoom Level: %1/13", (13 - zoomlevel)));
3186 }
3187
3188 void MainWindow::slotGotProgressInfo(const QString &message, int progress)
3189 {
3190     m_statusProgressBar->setValue(progress);
3191     if (progress >= 0) {
3192         if (!message.isEmpty())
3193             m_messageLabel->setMessage(message, InformationMessage);//statusLabel->setText(message);
3194         m_statusProgressBar->setVisible(true);
3195     } else if (progress == -2) {
3196         if (!message.isEmpty())
3197             m_messageLabel->setMessage(message, ErrorMessage);
3198         m_statusProgressBar->setVisible(false);
3199     } else {
3200         m_messageLabel->setMessage(QString(), DefaultMessage);
3201         m_statusProgressBar->setVisible(false);
3202     }
3203 }
3204
3205 void MainWindow::slotShowClipProperties(DocClipBase *clip)
3206 {
3207     if (clip->clipType() == TEXT) {
3208         QString titlepath = m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash) + "titles/";
3209         if (!clip->getProperty("resource").isEmpty() && clip->getProperty("xmldata").isEmpty()) {
3210             // template text clip
3211
3212             // Get the list of existing templates
3213             QStringList filter;
3214             filter << "*.kdenlivetitle";
3215             QStringList templateFiles = QDir(titlepath).entryList(filter, QDir::Files);
3216
3217             QDialog *dia = new QDialog(this);
3218             Ui::TemplateClip_UI dia_ui;
3219             dia_ui.setupUi(dia);
3220             int ix = -1;
3221             const QString templatePath = clip->getProperty("resource");
3222             for (int i = 0; i < templateFiles.size(); ++i) {
3223                 dia_ui.template_list->comboBox()->addItem(templateFiles.at(i), titlepath + templateFiles.at(i));
3224                 if (templatePath == KUrl(titlepath + templateFiles.at(i)).path()) ix = i;
3225             }
3226             if (ix != -1) dia_ui.template_list->comboBox()->setCurrentIndex(ix);
3227             else dia_ui.template_list->comboBox()->insertItem(0, templatePath);
3228             dia_ui.template_list->fileDialog()->setFilter("*.kdenlivetitle");
3229             //warning: setting base directory doesn't work??
3230             KUrl startDir(titlepath);
3231             dia_ui.template_list->fileDialog()->setUrl(startDir);
3232             dia_ui.description->setText(clip->getProperty("description"));
3233             if (dia->exec() == QDialog::Accepted) {
3234                 QString textTemplate = dia_ui.template_list->comboBox()->itemData(dia_ui.template_list->comboBox()->currentIndex()).toString();
3235                 if (textTemplate.isEmpty()) textTemplate = dia_ui.template_list->comboBox()->currentText();
3236
3237                 QMap <QString, QString> newprops;
3238
3239                 if (KUrl(textTemplate).path() != templatePath) {
3240                     // The template was changed
3241                     newprops.insert("resource", textTemplate);
3242                 }
3243
3244                 if (dia_ui.description->toPlainText() != clip->getProperty("description")) {
3245                     newprops.insert("description", dia_ui.description->toPlainText());
3246                 }
3247
3248                 QString newtemplate = newprops.value("xmltemplate");
3249                 if (newtemplate.isEmpty()) newtemplate = templatePath;
3250
3251                 // template modified we need to update xmldata
3252                 QString description = newprops.value("description");
3253                 if (description.isEmpty()) description = clip->getProperty("description");
3254                 else newprops.insert("templatetext", description);
3255                 //newprops.insert("xmldata", m_projectList->generateTemplateXml(newtemplate, description).toString());
3256                 if (!newprops.isEmpty()) {
3257                     EditClipCommand *command = new EditClipCommand(m_projectList, clip->getId(), clip->currentProperties(newprops), newprops, true);
3258                     m_activeDocument->commandStack()->push(command);
3259                 }
3260             }
3261             delete dia;
3262             return;
3263         }
3264         QString path = clip->getProperty("resource");
3265         TitleWidget *dia_ui = new TitleWidget(KUrl(), m_activeDocument->timecode(), titlepath, m_projectMonitor->render, this);
3266         QDomDocument doc;
3267         doc.setContent(clip->getProperty("xmldata"));
3268         dia_ui->setXml(doc);
3269         if (dia_ui->exec() == QDialog::Accepted) {
3270             QMap <QString, QString> newprops;
3271             newprops.insert("xmldata", dia_ui->xml().toString());
3272             if (dia_ui->outPoint() != clip->duration().frames(m_activeDocument->fps())) {
3273                 // duration changed, we need to update duration
3274                 newprops.insert("out", QString::number(dia_ui->outPoint()));
3275                 int currentLength = QString(clip->producerProperty("length")).toInt();
3276                 if (currentLength <= dia_ui->outPoint())
3277                         newprops.insert("length", QString::number(dia_ui->outPoint() + 1));
3278                 else newprops.insert("length", clip->producerProperty("length"));
3279             }
3280             if (!path.isEmpty()) {
3281                 // we are editing an external file, asked if we want to detach from that file or save the result to that title file.
3282                 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) {
3283                     // save to external file
3284                     dia_ui->saveTitle(path);
3285                 } else newprops.insert("resource", QString());
3286             }
3287             EditClipCommand *command = new EditClipCommand(m_projectList, clip->getId(), clip->currentProperties(newprops), newprops, true);
3288             m_activeDocument->commandStack()->push(command);
3289             //m_activeTimeline->projectView()->slotUpdateClip(clip->getId());
3290             m_activeDocument->setModified(true);
3291         }
3292         delete dia_ui;
3293
3294         //m_activeDocument->editTextClip(clip->getProperty("xml"), clip->getId());
3295         return;
3296     }
3297
3298     // any type of clip but a title
3299     ClipProperties *dia = new ClipProperties(clip, m_activeDocument->timecode(), m_activeDocument->fps(), this);
3300     connect(dia, SIGNAL(addMarker(const QString &, GenTime, QString)), m_activeTimeline->projectView(), SLOT(slotAddClipMarker(const QString &, GenTime, QString)));
3301     connect(dia, SIGNAL(deleteProxy(const QString)), m_projectList, SLOT(slotDeleteProxy(const QString)));
3302     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)));
3303     dia->show();
3304 }
3305
3306
3307 void MainWindow::slotApplyNewClipProperties(const QString id, QMap <QString, QString> props, QMap <QString, QString> newprops, bool refresh, bool reload)
3308 {
3309     if (newprops.isEmpty()) return;
3310     EditClipCommand *command = new EditClipCommand(m_projectList, id, props, newprops, true);
3311     m_activeDocument->commandStack()->push(command);
3312     m_activeDocument->setModified();
3313
3314     if (refresh) {
3315         // update clip occurences in timeline
3316         m_activeTimeline->projectView()->slotUpdateClip(id, reload);
3317     }
3318 }
3319
3320
3321 void MainWindow::slotShowClipProperties(QList <DocClipBase *> cliplist, QMap<QString, QString> commonproperties)
3322 {
3323     ClipProperties dia(cliplist, m_activeDocument->timecode(), commonproperties, this);
3324     if (dia.exec() == QDialog::Accepted) {
3325         QUndoCommand *command = new QUndoCommand();
3326         command->setText(i18n("Edit clips"));
3327         QMap <QString, QString> newImageProps = dia.properties();
3328         // Transparency setting applies only for images
3329         QMap <QString, QString> newProps = newImageProps;
3330         newProps.remove("transparency");
3331
3332         for (int i = 0; i < cliplist.count(); i++) {
3333             DocClipBase *clip = cliplist.at(i);
3334             if (clip->clipType() == IMAGE)
3335                 new EditClipCommand(m_projectList, clip->getId(), clip->currentProperties(newImageProps), newImageProps, true, command);
3336             else
3337                 new EditClipCommand(m_projectList, clip->getId(), clip->currentProperties(newProps), newProps, true, command);
3338         }
3339         m_activeDocument->commandStack()->push(command);
3340         for (int i = 0; i < cliplist.count(); i++)
3341             m_activeTimeline->projectView()->slotUpdateClip(cliplist.at(i)->getId(), dia.needsTimelineReload());
3342     }
3343 }
3344
3345 void MainWindow::customEvent(QEvent* e)
3346 {
3347     if (e->type() == QEvent::User)
3348         m_messageLabel->setMessage(static_cast <MltErrorEvent *>(e)->message(), MltError);
3349 }
3350
3351 void MainWindow::slotTimelineClipSelected(ClipItem* item, bool raise)
3352 {
3353     m_effectStack->slotClipItemSelected(item);
3354     m_projectMonitor->slotSetSelectedClip(item);
3355     if (raise)
3356         m_effectStack->raiseWindow(m_effectStackDock);
3357 }
3358
3359 void MainWindow::slotTrackSelected(int index, TrackInfo info, bool raise)
3360 {
3361     m_effectStack->slotTrackItemSelected(index, info);
3362     if (raise)
3363         m_effectStack->raiseWindow(m_effectStackDock);
3364 }
3365
3366 void MainWindow::slotActivateTransitionView(Transition *t)
3367 {
3368     if (t)
3369         m_transitionConfig->raiseWindow(m_transitionConfigDock);
3370 }
3371
3372 void MainWindow::slotSnapRewind()
3373 {
3374     if (m_projectMonitor->isActive()) {
3375         if (m_activeTimeline)
3376             m_activeTimeline->projectView()->slotSeekToPreviousSnap();
3377     } else  {
3378         m_clipMonitor->slotSeekToPreviousSnap();
3379     }
3380 }
3381
3382 void MainWindow::slotSnapForward()
3383 {
3384     if (m_projectMonitor->isActive()) {
3385         if (m_activeTimeline)
3386             m_activeTimeline->projectView()->slotSeekToNextSnap();
3387     } else {
3388         m_clipMonitor->slotSeekToNextSnap();
3389     }
3390 }
3391
3392 void MainWindow::slotClipStart()
3393 {
3394     if (m_projectMonitor->isActive()) {
3395         if (m_activeTimeline)
3396             m_activeTimeline->projectView()->clipStart();
3397     }
3398 }
3399
3400 void MainWindow::slotClipEnd()
3401 {
3402     if (m_projectMonitor->isActive()) {
3403         if (m_activeTimeline)
3404             m_activeTimeline->projectView()->clipEnd();
3405     }
3406 }
3407
3408 void MainWindow::slotZoneStart()
3409 {
3410     if (m_projectMonitor->isActive())
3411         m_projectMonitor->slotZoneStart();
3412     else
3413         m_clipMonitor->slotZoneStart();
3414 }
3415
3416 void MainWindow::slotZoneEnd()
3417 {
3418     if (m_projectMonitor->isActive())
3419         m_projectMonitor->slotZoneEnd();
3420     else
3421         m_clipMonitor->slotZoneEnd();
3422 }
3423
3424 void MainWindow::slotChangeTool(QAction * action)
3425 {
3426     if (action == m_buttonSelectTool)
3427         slotSetTool(SELECTTOOL);
3428     else if (action == m_buttonRazorTool)
3429         slotSetTool(RAZORTOOL);
3430     else if (action == m_buttonSpacerTool)
3431         slotSetTool(SPACERTOOL);
3432 }
3433
3434 void MainWindow::slotChangeEdit(QAction * action)
3435 {
3436     if (!m_activeTimeline)
3437         return;
3438
3439     if (action == m_overwriteEditTool)
3440         m_activeTimeline->projectView()->setEditMode(OVERWRITEEDIT);
3441     else if (action == m_insertEditTool)
3442         m_activeTimeline->projectView()->setEditMode(INSERTEDIT);
3443     else
3444         m_activeTimeline->projectView()->setEditMode(NORMALEDIT);
3445 }
3446
3447 void MainWindow::slotSetTool(PROJECTTOOL tool)
3448 {
3449     if (m_activeDocument && m_activeTimeline) {
3450         //m_activeDocument->setTool(tool);
3451         QString message;
3452         switch (tool)  {
3453         case SPACERTOOL:
3454             message = i18n("Ctrl + click to use spacer on current track only");
3455             break;
3456         case RAZORTOOL:
3457             message = i18n("Click on a clip to cut it");
3458             break;
3459         default:
3460             message = i18n("Shift + click to create a selection rectangle, Ctrl + click to add an item to selection");
3461             break;
3462         }
3463         m_messageLabel->setMessage(message, InformationMessage);
3464         m_activeTimeline->projectView()->setTool(tool);
3465     }
3466 }
3467
3468 void MainWindow::slotCopy()
3469 {
3470     if (m_activeDocument && m_activeTimeline)
3471         m_activeTimeline->projectView()->copyClip();
3472 }
3473
3474 void MainWindow::slotPaste()
3475 {
3476     if (m_activeDocument && m_activeTimeline)
3477         m_activeTimeline->projectView()->pasteClip();
3478 }
3479
3480 void MainWindow::slotPasteEffects()
3481 {
3482     if (m_activeDocument && m_activeTimeline)
3483         m_activeTimeline->projectView()->pasteClipEffects();
3484 }
3485
3486 void MainWindow::slotFind()
3487 {
3488     if (!m_activeDocument || !m_activeTimeline) return;
3489     m_projectSearch->setEnabled(false);
3490     m_findActivated = true;
3491     m_findString.clear();
3492     m_activeTimeline->projectView()->initSearchStrings();
3493     statusBar()->showMessage(i18n("Starting -- find text as you type"));
3494     m_findTimer.start(5000);
3495     qApp->installEventFilter(this);
3496 }
3497
3498 void MainWindow::slotFindNext()
3499 {
3500     if (m_activeTimeline && m_activeTimeline->projectView()->findNextString(m_findString))
3501         statusBar()->showMessage(i18n("Found: %1", m_findString));
3502     else
3503         statusBar()->showMessage(i18n("Reached end of project"));
3504     m_findTimer.start(4000);
3505 }
3506
3507 void MainWindow::findAhead()
3508 {
3509     if (m_activeTimeline && m_activeTimeline->projectView()->findString(m_findString)) {
3510         m_projectSearchNext->setEnabled(true);
3511         statusBar()->showMessage(i18n("Found: %1", m_findString));
3512     } else {
3513         m_projectSearchNext->setEnabled(false);
3514         statusBar()->showMessage(i18n("Not found: %1", m_findString));
3515     }
3516 }
3517
3518 void MainWindow::findTimeout()
3519 {
3520     m_projectSearchNext->setEnabled(false);
3521     m_findActivated = false;
3522     m_findString.clear();
3523     statusBar()->showMessage(i18n("Find stopped"), 3000);
3524     if (m_activeTimeline) m_activeTimeline->projectView()->clearSearchStrings();
3525     m_projectSearch->setEnabled(true);
3526     removeEventFilter(this);
3527 }
3528
3529 void MainWindow::slotClipInTimeline(const QString &clipId)
3530 {
3531     if (m_activeTimeline && m_activeDocument) {
3532         QList<ItemInfo> matching = m_activeTimeline->projectView()->findId(clipId);
3533
3534         QMenu *inTimelineMenu = static_cast<QMenu*>(factory()->container("clip_in_timeline", this));
3535         inTimelineMenu->clear();
3536
3537         QList <QAction *> actionList;
3538
3539         for (int i = 0; i < matching.count(); ++i) {
3540             QString track = QString::number(matching.at(i).track);
3541             QString start = m_activeDocument->timecode().getTimecode(matching.at(i).startPos);
3542             int j = 0;
3543             QAction *a = new QAction(track + ": " + start, this);
3544             a->setData(QStringList() << track << start);
3545             connect(a, SIGNAL(triggered()), this, SLOT(slotSelectClipInTimeline()));
3546             while (j < actionList.count()) {
3547                 if (actionList.at(j)->text() > a->text()) break;
3548                 j++;
3549             }
3550             actionList.insert(j, a);
3551         }
3552         inTimelineMenu->addActions(actionList);
3553
3554         if (matching.empty())
3555             inTimelineMenu->setEnabled(false);
3556         else
3557             inTimelineMenu->setEnabled(true);
3558     }
3559 }
3560
3561 void MainWindow::slotClipInProjectTree()
3562 {
3563     if (m_activeTimeline) {
3564         const QStringList &clipIds = m_activeTimeline->projectView()->selectedClips();
3565         if (clipIds.isEmpty())
3566             return;
3567         m_projectListDock->raise();
3568         for (int i = 0; i < clipIds.count(); i++)
3569             m_projectList->selectItemById(clipIds.at(i));
3570         if (m_projectMonitor->isActive())
3571             slotSwitchMonitors();
3572     }
3573 }
3574
3575 /*void MainWindow::slotClipToProjectTree()
3576 {
3577     if (m_activeTimeline) {
3578     const QList<ClipItem *> clips =  m_activeTimeline->projectView()->selectedClipItems();
3579         if (clips.isEmpty()) return;
3580         for (int i = 0; i < clips.count(); i++) {
3581         m_projectList->slotAddXmlClip(clips.at(i)->itemXml());
3582         }
3583         //m_projectList->selectItemById(clipIds.at(i));
3584     }
3585 }*/
3586
3587 void MainWindow::slotSelectClipInTimeline()
3588 {
3589     if (m_activeTimeline) {
3590         QAction *action = qobject_cast<QAction *>(sender());
3591         QStringList data = action->data().toStringList();
3592         m_activeTimeline->projectView()->selectFound(data.at(0), data.at(1));
3593     }
3594 }
3595
3596 void MainWindow::keyPressEvent(QKeyEvent *ke)
3597 {
3598     if (m_findActivated) {
3599         if (ke->key() == Qt::Key_Backspace) {
3600             m_findString = m_findString.left(m_findString.length() - 1);
3601
3602             if (!m_findString.isEmpty())
3603                 findAhead();
3604             else
3605                 findTimeout();
3606
3607             m_findTimer.start(4000);
3608             ke->accept();
3609             return;
3610         } else if (ke->key() == Qt::Key_Escape) {
3611             findTimeout();
3612             ke->accept();
3613             return;
3614         } else if (ke->key() == Qt::Key_Space || !ke->text().trimmed().isEmpty()) {
3615             m_findString += ke->text();
3616
3617             findAhead();
3618
3619             m_findTimer.start(4000);
3620             ke->accept();
3621             return;
3622         }
3623     } else {
3624         KXmlGuiWindow::keyPressEvent(ke);
3625     }
3626 }
3627
3628
3629 /** Gets called when the window gets hidden */
3630 void MainWindow::hideEvent(QHideEvent */*event*/)
3631 {
3632     if (isMinimized() && m_monitorManager)
3633         m_monitorManager->stopActiveMonitor();
3634 }
3635
3636 bool MainWindow::eventFilter(QObject *obj, QEvent *event)
3637 {
3638     if (m_findActivated) {
3639         if (event->type() == QEvent::ShortcutOverride) {
3640             QKeyEvent* ke = (QKeyEvent*) event;
3641             if (ke->text().trimmed().isEmpty()) return false;
3642             ke->accept();
3643             return true;
3644         } else {
3645             return false;
3646         }
3647     } else {
3648         // pass the event on to the parent class
3649         return QMainWindow::eventFilter(obj, event);
3650     }
3651 }
3652
3653
3654 void MainWindow::slotSaveZone(Render *render, QPoint zone, DocClipBase *baseClip, KUrl path)
3655 {
3656     KDialog *dialog = new KDialog(this);
3657     dialog->setCaption("Save clip zone");
3658     dialog->setButtons(KDialog::Ok | KDialog::Cancel);
3659
3660     QWidget *widget = new QWidget(dialog);
3661     dialog->setMainWidget(widget);
3662
3663     QVBoxLayout *vbox = new QVBoxLayout(widget);
3664     QLabel *label1 = new QLabel(i18n("Save clip zone as:"), this);
3665     if (path.isEmpty()) {
3666         QString tmppath = m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash);
3667         if (baseClip == NULL) tmppath.append("untitled.mlt");
3668         else {
3669             tmppath.append((baseClip->name().isEmpty() ? baseClip->fileURL().fileName() : baseClip->name()) + "-" + QString::number(zone.x()).rightJustified(4, '0') + ".mlt");
3670         }
3671         path = KUrl(tmppath);
3672     }
3673     KUrlRequester *url = new KUrlRequester(path, this);
3674     url->setFilter("video/mlt-playlist");
3675     QLabel *label2 = new QLabel(i18n("Description:"), this);
3676     KLineEdit *edit = new KLineEdit(this);
3677     vbox->addWidget(label1);
3678     vbox->addWidget(url);
3679     vbox->addWidget(label2);
3680     vbox->addWidget(edit);
3681     if (dialog->exec() == QDialog::Accepted) {
3682         if (QFile::exists(url->url().path())) {
3683             if (KMessageBox::questionYesNo(this, i18n("File %1 already exists.\nDo you want to overwrite it?", url->url().path())) == KMessageBox::No) {
3684                 slotSaveZone(render, zone, baseClip, url->url());
3685                 return;
3686             }
3687         }
3688         if (baseClip && !baseClip->fileURL().isEmpty()) {
3689             // create zone from clip url, so that we don't have problems with proxy clips
3690             QProcess p;
3691 #if QT_VERSION >= 0x040600
3692             QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
3693             env.remove("MLT_PROFILE");
3694             p.setProcessEnvironment(env);
3695 #else
3696             QStringList env = QProcess::systemEnvironment();
3697             env << "MLT_PROFILE='\0'";
3698             p.setEnvironment(env);
3699 #endif
3700             p.start(KdenliveSettings::rendererpath(), QStringList() << baseClip->fileURL().path() << "in=" + QString::number(zone.x()) << "out=" + QString::number(zone.y()) << "-consumer" << "xml:" + url->url().path());
3701             if (!p.waitForStarted(3000)) {
3702                 KMessageBox::sorry(this, i18n("Cannot start MLT's renderer:\n%1", KdenliveSettings::rendererpath()));
3703             }
3704             else if (!p.waitForFinished(5000)) {
3705                 KMessageBox::sorry(this, i18n("Timeout while creating xml output"));
3706             }
3707         }
3708         else render->saveZone(url->url(), edit->text(), zone);
3709     }
3710
3711 }
3712
3713 void MainWindow::slotSetInPoint()
3714 {
3715     if (m_clipMonitor->isActive()) {
3716         m_clipMonitor->slotSetZoneStart();
3717     } else {
3718         m_projectMonitor->slotSetZoneStart();
3719     }
3720 }
3721
3722 void MainWindow::slotSetOutPoint()
3723 {
3724     if (m_clipMonitor->isActive()) {
3725         m_clipMonitor->slotSetZoneEnd();
3726     } else {
3727         m_projectMonitor->slotSetZoneEnd();
3728     }
3729 }
3730
3731 void MainWindow::slotResizeItemStart()
3732 {
3733     if (m_activeTimeline)
3734         m_activeTimeline->projectView()->setInPoint();
3735 }
3736
3737 void MainWindow::slotResizeItemEnd()
3738 {
3739     if (m_activeTimeline)
3740         m_activeTimeline->projectView()->setOutPoint();
3741 }
3742
3743 int MainWindow::getNewStuff(const QString &configFile)
3744 {
3745     KNS3::Entry::List entries;
3746 #if KDE_IS_VERSION(4,3,80)
3747     KNS3::DownloadDialog dialog(configFile);
3748     dialog.exec();
3749     entries = dialog.changedEntries();
3750     foreach(const KNS3::Entry & entry, entries) {
3751         if (entry.status() == KNS3::Entry::Installed)
3752             kDebug() << "// Installed files: " << entry.installedFiles();
3753     }
3754 #else
3755     KNS::Engine engine(0);
3756     if (engine.init(configFile))
3757         entries = engine.downloadDialogModal(this);
3758     foreach(KNS::Entry * entry, entries) {
3759         if (entry->status() == KNS::Entry::Installed)
3760             kDebug() << "// Installed files: " << entry->installedFiles();
3761     }
3762 #endif
3763     return entries.size();
3764 }
3765
3766 void MainWindow::slotGetNewTitleStuff()
3767 {
3768     if (getNewStuff("kdenlive_titles.knsrc") > 0)
3769         TitleWidget::refreshTitleTemplates();
3770 }
3771
3772 void MainWindow::slotGetNewLumaStuff()
3773 {
3774     if (getNewStuff("kdenlive_wipes.knsrc") > 0) {
3775         initEffects::refreshLumas();
3776         m_activeTimeline->projectView()->reloadTransitionLumas();
3777     }
3778 }
3779
3780 void MainWindow::slotGetNewRenderStuff()
3781 {
3782     if (getNewStuff("kdenlive_renderprofiles.knsrc") > 0)
3783         if (m_renderWidget)
3784             m_renderWidget->reloadProfiles();
3785 }
3786
3787 void MainWindow::slotGetNewMltProfileStuff()
3788 {
3789     if (getNewStuff("kdenlive_projectprofiles.knsrc") > 0) {
3790         // update the list of profiles in settings dialog
3791         KdenliveSettingsDialog* d = static_cast <KdenliveSettingsDialog*>(KConfigDialog::exists("settings"));
3792         if (d)
3793             d->checkProfile();
3794     }
3795 }
3796
3797 void MainWindow::slotAutoTransition()
3798 {
3799     if (m_activeTimeline)
3800         m_activeTimeline->projectView()->autoTransition();
3801 }
3802
3803 void MainWindow::slotSplitAudio()
3804 {
3805     if (m_activeTimeline)
3806         m_activeTimeline->projectView()->splitAudio();
3807 }
3808
3809 void MainWindow::slotSetAudioAlignReference()
3810 {
3811     if (m_activeTimeline) {
3812         m_activeTimeline->projectView()->setAudioAlignReference();
3813     }
3814 }
3815
3816 void MainWindow::slotAlignAudio()
3817 {
3818     if (m_activeTimeline) {
3819         m_activeTimeline->projectView()->alignAudio();
3820     }
3821 }
3822
3823 void MainWindow::slotUpdateClipType(QAction *action)
3824 {
3825     if (m_activeTimeline) {
3826         if (action->data().toString() == "clip_audio_only") m_activeTimeline->projectView()->setAudioOnly();
3827         else if (action->data().toString() == "clip_video_only") m_activeTimeline->projectView()->setVideoOnly();
3828         else m_activeTimeline->projectView()->setAudioAndVideo();
3829     }
3830 }
3831
3832 void MainWindow::slotDvdWizard(const QString &url, const QString &profile)
3833 {
3834     // We must stop the monitors since we create a new on in the dvd wizard
3835     m_clipMonitor->stop();
3836     m_projectMonitor->stop();
3837     DvdWizard w(url, profile, this);
3838     w.exec();
3839     m_projectMonitor->start();
3840 }
3841
3842 void MainWindow::slotShowTimeline(bool show)
3843 {
3844     if (show == false) {
3845         m_timelineState = saveState();
3846         centralWidget()->setHidden(true);
3847     } else {
3848         centralWidget()->setHidden(false);
3849         restoreState(m_timelineState);
3850     }
3851 }
3852
3853 void MainWindow::slotMaximizeCurrent(bool)
3854 {
3855     //TODO: is there a way to maximize current widget?
3856
3857     m_timelineState = saveState();
3858     QWidget *par = focusWidget()->parentWidget();
3859     while (par->parentWidget() && par->parentWidget() != this)
3860         par = par->parentWidget();
3861     kDebug() << "CURRENT WIDGET: " << par->objectName();
3862 }
3863
3864 void MainWindow::loadStabilize()
3865 {
3866         QMenu* stabMenu= static_cast<QMenu*>(factory()->container("stabilize", this));
3867         if (stabMenu){
3868                 stabMenu->clear();
3869                 Mlt::Profile profile;
3870                 if (Mlt::Factory::filter(profile,(char*)"videostab")){
3871                         QAction *action=stabMenu->addAction("Videostab (vstab)");
3872                         action->setData("videostab");
3873                         connect(action,SIGNAL(triggered()), this, SLOT(slotStabilize()));
3874                 }
3875                 if (Mlt::Factory::filter(profile,(char*)"videostab2")){
3876                         QAction *action=stabMenu->addAction("Videostab (transcode)");
3877                         action->setData("videostab2");
3878                         connect(action,SIGNAL(triggered()), this, SLOT(slotStabilize()));
3879                 }
3880         }
3881
3882
3883 }
3884
3885 void MainWindow::loadTranscoders()
3886 {
3887     QMenu *transMenu = static_cast<QMenu*>(factory()->container("transcoders", this));
3888     transMenu->clear();
3889
3890     QMenu *extractAudioMenu = static_cast<QMenu*>(factory()->container("extract_audio", this));
3891     extractAudioMenu->clear();
3892
3893     KSharedConfigPtr config = KSharedConfig::openConfig("kdenlivetranscodingrc");
3894     KConfigGroup transConfig(config, "Transcoding");
3895     // read the entries
3896     QMap< QString, QString > profiles = transConfig.entryMap();
3897     QMapIterator<QString, QString> i(profiles);
3898     while (i.hasNext()) {
3899         i.next();
3900         QStringList data = i.value().split(";");
3901         QAction *a;
3902         // separate audio transcoding in a separate menu
3903         if (data.count() > 2 && data.at(2) == "audio") {
3904             a = extractAudioMenu->addAction(i.key());
3905         }
3906         else {
3907             a = transMenu->addAction(i.key());
3908         }
3909         a->setData(data);
3910         if (data.count() > 1) a->setToolTip(data.at(1));
3911         connect(a, SIGNAL(triggered()), this, SLOT(slotTranscode()));
3912     }
3913 }
3914
3915 void MainWindow::slotStabilize()
3916 {
3917     QString condition,filtername;
3918     QStringList ids;
3919
3920     // Stablize selected clips
3921     QAction *action = qobject_cast<QAction *>(sender());
3922     if (action){
3923         filtername=action->data().toString();
3924     }
3925     m_projectList->startClipFilterJob(filtername, condition);
3926     /*
3927     if (ids.isEmpty()) {
3928         m_messageLabel->setMessage(i18n("No clip to transcode"), ErrorMessage);
3929         return;
3930     }
3931     QString destination;
3932     ProjectItem *item = m_projectList->getClipById(ids.at(0));
3933     if (ids.count() == 1) {
3934
3935     }
3936     ClipStabilize *d = new ClipStabilize(destination, ids.count(), filtername);
3937     //connect(d, SIGNAL(addClip(KUrl)), this, SLOT(slotAddProjectClip(KUrl)));
3938     if (d->exec() == QDialog::Accepted) {
3939         m_projectList->slotStabilizeClipJob(ids, d->autoAddClip(), d->params(), d->desc());
3940     }
3941     delete d;*/
3942 }
3943
3944 void MainWindow::slotTranscode(KUrl::List urls)
3945 {
3946     QString params;
3947     QString desc;
3948     QString condition;
3949     if (urls.isEmpty()) {
3950         QAction *action = qobject_cast<QAction *>(sender());
3951         QStringList data = action->data().toStringList();
3952         params = data.at(0);
3953         if (data.count() > 1) desc = data.at(1);
3954         if (data.count() > 3) condition = data.at(3);
3955         m_projectList->slotTranscodeClipJob(condition, params, desc);
3956         return;
3957     }
3958     if (urls.isEmpty()) {
3959         m_messageLabel->setMessage(i18n("No clip to transcode"), ErrorMessage);
3960         return;
3961     }
3962     ClipTranscode *d = new ClipTranscode(urls, params, desc);
3963     connect(d, SIGNAL(addClip(KUrl)), this, SLOT(slotAddProjectClip(KUrl)));
3964     d->show();
3965 }
3966
3967 void MainWindow::slotTranscodeClip()
3968 {
3969     KUrl::List urls = KFileDialog::getOpenUrls(KUrl("kfiledialog:///projectfolder"));
3970     if (urls.isEmpty()) return;
3971     slotTranscode(urls);
3972 }
3973
3974 void MainWindow::slotSetDocumentRenderProfile(QMap <QString, QString> props)
3975 {
3976     if (m_activeDocument == NULL) return;
3977     QMapIterator<QString, QString> i(props);
3978     while (i.hasNext()) {
3979         i.next();
3980         m_activeDocument->setDocumentProperty(i.key(), i.value());
3981     }
3982     m_activeDocument->setModified(true);
3983 }
3984
3985
3986 void MainWindow::slotPrepareRendering(bool scriptExport, bool zoneOnly, const QString &chapterFile)
3987 {
3988     if (m_activeDocument == NULL || m_renderWidget == NULL) return;
3989     QString scriptPath;
3990     QString playlistPath;
3991     if (scriptExport) {
3992         bool ok;
3993         QString scriptsFolder = m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash) + "scripts/";
3994         QString path = m_renderWidget->getFreeScriptName();
3995         scriptPath = QInputDialog::getText(this, i18n("Create Render Script"), i18n("Script name (will be saved in: %1)", scriptsFolder), QLineEdit::Normal, KUrl(path).fileName(), &ok);
3996         if (!ok || scriptPath.isEmpty()) return;
3997         scriptPath.prepend(scriptsFolder);
3998         QFile f(scriptPath);
3999         if (f.exists()) {
4000             if (KMessageBox::warningYesNo(this, i18n("Script file already exists. Do you want to overwrite it?")) != KMessageBox::Yes)
4001                 return;
4002         }
4003         playlistPath = scriptPath + ".mlt";
4004     } else {
4005         KTemporaryFile temp;
4006         temp.setAutoRemove(false);
4007         temp.setSuffix(".mlt");
4008         temp.open();
4009         playlistPath = temp.fileName();
4010     }
4011     QString playlistContent = m_projectMonitor->sceneList();
4012     if (!chapterFile.isEmpty()) {
4013         int in = 0;
4014         int out;
4015         if (!zoneOnly) out = (int) GenTime(m_activeDocument->projectDuration()).frames(m_activeDocument->fps());
4016         else {
4017             in = m_activeTimeline->inPoint();
4018             out = m_activeTimeline->outPoint();
4019         }
4020         QDomDocument doc;
4021         QDomElement chapters = doc.createElement("chapters");
4022         chapters.setAttribute("fps", m_activeDocument->fps());
4023         doc.appendChild(chapters);
4024
4025         QDomElement guidesxml = m_activeDocument->guidesXml();
4026         QDomNodeList nodes = guidesxml.elementsByTagName("guide");
4027         for (int i = 0; i < nodes.count(); i++) {
4028             QDomElement e = nodes.item(i).toElement();
4029             if (!e.isNull()) {
4030                 QString comment = e.attribute("comment");
4031                 int time = (int) GenTime(e.attribute("time").toDouble()).frames(m_activeDocument->fps());
4032                 if (time >= in && time < out) {
4033                     if (zoneOnly) time = time - in;
4034                     QDomElement chapter = doc.createElement("chapter");
4035                     chapters.appendChild(chapter);
4036                     chapter.setAttribute("title", comment);
4037                     chapter.setAttribute("time", time);
4038                 }
4039             }
4040         }
4041         if (chapters.childNodes().count() > 0) {
4042             if (m_activeTimeline->projectView()->hasGuide(out, 0) == -1) {
4043                 // Always insert a guide in pos 0
4044                 QDomElement chapter = doc.createElement("chapter");
4045                 chapters.insertBefore(chapter, QDomNode());
4046                 chapter.setAttribute("title", i18n("Start"));
4047                 chapter.setAttribute("time", "0");
4048             }
4049             // save chapters file
4050             QFile file(chapterFile);
4051             if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
4052                 kWarning() << "//////  ERROR writing DVD CHAPTER file: " << chapterFile;
4053             } else {
4054                 file.write(doc.toString().toUtf8());
4055                 if (file.error() != QFile::NoError) {
4056                     kWarning() << "//////  ERROR writing DVD CHAPTER file: " << chapterFile;
4057                 }
4058                 file.close();
4059             }
4060         }
4061     }
4062     bool exportAudio;
4063     if (m_renderWidget->automaticAudioExport()) {
4064         exportAudio = m_activeTimeline->checkProjectAudio();
4065     } else exportAudio = m_renderWidget->selectedAudioExport();
4066
4067     // Set playlist audio volume to 100%
4068     QDomDocument doc;
4069     doc.setContent(playlistContent);
4070     QDomElement tractor = doc.documentElement().firstChildElement("tractor");
4071     if (!tractor.isNull()) {
4072         QDomNodeList props = tractor.elementsByTagName("property");
4073         for (int i = 0; i < props.count(); i++) {
4074             if (props.at(i).toElement().attribute("name") == "meta.volume") {
4075                 props.at(i).firstChild().setNodeValue("1");
4076                 break;
4077             }
4078         }
4079     }
4080
4081     // Do we want proxy rendering
4082     if (m_projectList->useProxy() && !m_renderWidget->proxyRendering()) {
4083         QString root = doc.documentElement().attribute("root");
4084
4085         // replace proxy clips with originals
4086         QMap <QString, QString> proxies = m_projectList->getProxies();
4087
4088         QDomNodeList producers = doc.elementsByTagName("producer");
4089         QString producerResource;
4090         QString suffix;
4091         for (uint n = 0; n < producers.length(); n++) {
4092             QDomElement e = producers.item(n).toElement();
4093             producerResource = EffectsList::property(e, "resource");
4094             if (producerResource.isEmpty()) continue;
4095             if (!producerResource.startsWith("/")) {
4096                 producerResource.prepend(root + "/");
4097             }
4098             if (producerResource.contains('?')) {
4099                 // slowmotion producer
4100                 suffix = "?" + producerResource.section('?', 1);
4101                 producerResource = producerResource.section('?', 0, 0);
4102             }
4103             else suffix.clear();
4104             if (!producerResource.isEmpty()) {
4105                 if (proxies.contains(producerResource)) {
4106                     EffectsList::setProperty(e, "resource", proxies.value(producerResource) + suffix);
4107                     // We need to delete the "aspect_ratio" property because proxy clips
4108                     // sometimes have different ratio than original clips
4109                     EffectsList::removeProperty(e, "aspect_ratio");
4110                     EffectsList::removeMetaProperties(e);
4111                 }
4112             }
4113         }
4114
4115         /*QMapIterator<QString, QString> i(proxies);
4116         while (i.hasNext()) {
4117             i.next();
4118             // Replace all keys with their values (proxy path with original path)
4119             QString key = i.key();
4120             playlistContent.replace(key, i.value());
4121             if (!root.isEmpty() && key.startsWith(root)) {
4122                 // in case the resource path in MLT playlist is relative
4123                 key.remove(0, root.count() + 1);
4124                 playlistContent.replace(key, i.value());
4125             }
4126         }*/
4127     }
4128     playlistContent = doc.toString();
4129
4130     // Do save scenelist
4131     QFile file(playlistPath);
4132     if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
4133         m_messageLabel->setMessage(i18n("Cannot write to file %1", playlistPath), ErrorMessage);
4134         return;
4135     }
4136     file.write(playlistContent.toUtf8());
4137     if (file.error() != QFile::NoError) {
4138         m_messageLabel->setMessage(i18n("Cannot write to file %1", playlistPath), ErrorMessage);
4139         file.close();
4140         return;
4141     }
4142     file.close();
4143     m_renderWidget->slotExport(scriptExport, m_activeTimeline->inPoint(), m_activeTimeline->outPoint(), m_activeDocument->metadata(), playlistPath, scriptPath, exportAudio);
4144 }
4145
4146 void MainWindow::slotUpdateTimecodeFormat(int ix)
4147 {
4148     KdenliveSettings::setFrametimecode(ix == 1);
4149     m_clipMonitor->updateTimecodeFormat();
4150     m_projectMonitor->updateTimecodeFormat();
4151     m_transitionConfig->updateTimecodeFormat();
4152     m_effectStack->updateTimecodeFormat();
4153     //m_activeTimeline->projectView()->clearSelection();
4154     m_activeTimeline->updateRuler();
4155 }
4156
4157 void MainWindow::slotRemoveFocus()
4158 {
4159     statusBar()->setFocus();
4160     statusBar()->clearFocus();
4161 }
4162
4163 void MainWindow::slotRevert()
4164 {
4165     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;
4166     KUrl url = m_activeDocument->url();
4167     if (closeCurrentDocument(false))
4168         doOpenFile(url, NULL);
4169 }
4170
4171
4172 void MainWindow::slotShutdown()
4173 {
4174     if (m_activeDocument) m_activeDocument->setModified(false);
4175     // Call shutdown
4176     QDBusConnectionInterface* interface = QDBusConnection::sessionBus().interface();
4177     if (interface && interface->isServiceRegistered("org.kde.ksmserver")) {
4178         QDBusInterface smserver("org.kde.ksmserver", "/KSMServer", "org.kde.KSMServerInterface");
4179         smserver.call("logout", 1, 2, 2);
4180     } else if (interface && interface->isServiceRegistered("org.gnome.SessionManager")) {
4181         QDBusInterface smserver("org.gnome.SessionManager", "/org/gnome/SessionManager", "org.gnome.SessionManager");
4182         smserver.call("Shutdown");
4183     }
4184 }
4185
4186 void MainWindow::slotUpdateTrackInfo()
4187 {
4188     if (m_activeDocument)
4189         m_transitionConfig->updateProjectFormat(m_activeDocument->mltProfile(), m_activeDocument->timecode(), m_activeDocument->tracksList());
4190 }
4191
4192 void MainWindow::slotChangePalette(QAction *action, const QString &themename)
4193 {
4194     // Load the theme file
4195     QString theme;
4196     if (action == NULL) theme = themename;
4197     else theme = action->data().toString();
4198     KdenliveSettings::setColortheme(theme);
4199     // Make palette for all widgets.
4200     QPalette plt = kapp->palette();
4201     if (theme.isEmpty()) {
4202         plt = QApplication::desktop()->palette();
4203     } else {
4204         KSharedConfigPtr config = KSharedConfig::openConfig(theme);
4205
4206 #if KDE_IS_VERSION(4,6,3)
4207         plt = KGlobalSettings::createNewApplicationPalette(config);
4208 #else
4209         // Since there was a bug in createApplicationPalette in KDE < 4.6.3 we need
4210         // to do the palette loading stuff ourselves. (https://bugs.kde.org/show_bug.cgi?id=263497)
4211         QPalette::ColorGroup states[3] = { QPalette::Active, QPalette::Inactive,
4212                                             QPalette::Disabled };
4213         // TT thinks tooltips shouldn't use active, so we use our active colors for all states
4214         KColorScheme schemeTooltip(QPalette::Active, KColorScheme::Tooltip, config);
4215
4216         for ( int i = 0; i < 3 ; i++ ) {
4217             QPalette::ColorGroup state = states[i];
4218             KColorScheme schemeView(state, KColorScheme::View, config);
4219             KColorScheme schemeWindow(state, KColorScheme::Window, config);
4220             KColorScheme schemeButton(state, KColorScheme::Button, config);
4221             KColorScheme schemeSelection(state, KColorScheme::Selection, config);
4222
4223             plt.setBrush( state, QPalette::WindowText, schemeWindow.foreground() );
4224             plt.setBrush( state, QPalette::Window, schemeWindow.background() );
4225             plt.setBrush( state, QPalette::Base, schemeView.background() );
4226             plt.setBrush( state, QPalette::Text, schemeView.foreground() );
4227             plt.setBrush( state, QPalette::Button, schemeButton.background() );
4228             plt.setBrush( state, QPalette::ButtonText, schemeButton.foreground() );
4229             plt.setBrush( state, QPalette::Highlight, schemeSelection.background() );
4230             plt.setBrush( state, QPalette::HighlightedText, schemeSelection.foreground() );
4231             plt.setBrush( state, QPalette::ToolTipBase, schemeTooltip.background() );
4232             plt.setBrush( state, QPalette::ToolTipText, schemeTooltip.foreground() );
4233
4234             plt.setColor( state, QPalette::Light, schemeWindow.shade( KColorScheme::LightShade ) );
4235             plt.setColor( state, QPalette::Midlight, schemeWindow.shade( KColorScheme::MidlightShade ) );
4236             plt.setColor( state, QPalette::Mid, schemeWindow.shade( KColorScheme::MidShade ) );
4237             plt.setColor( state, QPalette::Dark, schemeWindow.shade( KColorScheme::DarkShade ) );
4238             plt.setColor( state, QPalette::Shadow, schemeWindow.shade( KColorScheme::ShadowShade ) );
4239
4240             plt.setBrush( state, QPalette::AlternateBase, schemeView.background( KColorScheme::AlternateBackground) );
4241             plt.setBrush( state, QPalette::Link, schemeView.foreground( KColorScheme::LinkText ) );
4242             plt.setBrush( state, QPalette::LinkVisited, schemeView.foreground( KColorScheme::VisitedText ) );
4243         }
4244 #endif
4245     }
4246
4247     kapp->setPalette(plt);
4248     slotChangePalette();
4249     const QObjectList children = statusBar()->children();
4250
4251     foreach(QObject * child, children) {
4252         if (child->isWidgetType())
4253             ((QWidget*)child)->setPalette(plt);
4254         const QObjectList subchildren = child->children();
4255         foreach(QObject * subchild, subchildren) {
4256             if (subchild->isWidgetType())
4257                 ((QWidget*)subchild)->setPalette(plt);
4258         }
4259     }
4260 }
4261
4262
4263 QPixmap MainWindow::createSchemePreviewIcon(const KSharedConfigPtr &config)
4264 {
4265     // code taken from kdebase/workspace/kcontrol/colors/colorscm.cpp
4266     const uchar bits1[] = { 0xff, 0xff, 0xff, 0x2c, 0x16, 0x0b };
4267     const uchar bits2[] = { 0x68, 0x34, 0x1a, 0xff, 0xff, 0xff };
4268     const QSize bitsSize(24, 2);
4269     const QBitmap b1 = QBitmap::fromData(bitsSize, bits1);
4270     const QBitmap b2 = QBitmap::fromData(bitsSize, bits2);
4271
4272     QPixmap pixmap(23, 16);
4273     pixmap.fill(Qt::black); // ### use some color other than black for borders?
4274
4275     KConfigGroup group(config, "WM");
4276     QPainter p(&pixmap);
4277     KColorScheme windowScheme(QPalette::Active, KColorScheme::Window, config);
4278     p.fillRect(1,  1, 7, 7, windowScheme.background());
4279     p.fillRect(2,  2, 5, 2, QBrush(windowScheme.foreground().color(), b1));
4280
4281     KColorScheme buttonScheme(QPalette::Active, KColorScheme::Button, config);
4282     p.fillRect(8,  1, 7, 7, buttonScheme.background());
4283     p.fillRect(9,  2, 5, 2, QBrush(buttonScheme.foreground().color(), b1));
4284
4285     p.fillRect(15,  1, 7, 7, group.readEntry("activeBackground", QColor(96, 148, 207)));
4286     p.fillRect(16,  2, 5, 2, QBrush(group.readEntry("activeForeground", QColor(255, 255, 255)), b1));
4287
4288     KColorScheme viewScheme(QPalette::Active, KColorScheme::View, config);
4289     p.fillRect(1,  8, 7, 7, viewScheme.background());
4290     p.fillRect(2, 12, 5, 2, QBrush(viewScheme.foreground().color(), b2));
4291
4292     KColorScheme selectionScheme(QPalette::Active, KColorScheme::Selection, config);
4293     p.fillRect(8,  8, 7, 7, selectionScheme.background());
4294     p.fillRect(9, 12, 5, 2, QBrush(selectionScheme.foreground().color(), b2));
4295
4296     p.fillRect(15,  8, 7, 7, group.readEntry("inactiveBackground", QColor(224, 223, 222)));
4297     p.fillRect(16, 12, 5, 2, QBrush(group.readEntry("inactiveForeground", QColor(20, 19, 18)), b2));
4298
4299     p.end();
4300     return pixmap;
4301 }
4302
4303 void MainWindow::slotSwitchMonitors()
4304 {
4305     m_monitorManager->slotSwitchMonitors(!m_clipMonitor->isActive());
4306     if (m_projectMonitor->isActive()) m_activeTimeline->projectView()->setFocus();
4307     else m_projectList->focusTree();
4308 }
4309
4310 void MainWindow::slotInsertZoneToTree()
4311 {
4312     if (!m_clipMonitor->isActive() || m_clipMonitor->activeClip() == NULL) return;
4313     QStringList info = m_clipMonitor->getZoneInfo();
4314     m_projectList->slotAddClipCut(info.at(0), info.at(1).toInt(), info.at(2).toInt());
4315 }
4316
4317 void MainWindow::slotInsertZoneToTimeline()
4318 {
4319     if (m_activeTimeline == NULL || m_clipMonitor->activeClip() == NULL) return;
4320     QStringList info = m_clipMonitor->getZoneInfo();
4321     m_activeTimeline->projectView()->insertClipCut(m_clipMonitor->activeClip(), info.at(1).toInt(), info.at(2).toInt());
4322 }
4323
4324
4325 void MainWindow::slotDeleteProjectClips(QStringList ids, QMap<QString, QString> folderids)
4326 {
4327     if (m_activeDocument && m_activeTimeline) {
4328         if (!ids.isEmpty()) {
4329             for (int i = 0; i < ids.size(); ++i) {
4330                 m_activeTimeline->slotDeleteClip(ids.at(i));
4331             }
4332             m_activeDocument->clipManager()->slotDeleteClips(ids);
4333         }
4334         if (!folderids.isEmpty()) m_projectList->deleteProjectFolder(folderids);
4335         m_activeDocument->setModified(true);
4336     }
4337 }
4338
4339 void MainWindow::slotShowTitleBars(bool show)
4340 {
4341     QList <QDockWidget *> docks = findChildren<QDockWidget *>();
4342     for (int i = 0; i < docks.count(); i++) {
4343         QDockWidget* dock = docks.at(i);
4344         if (show) {
4345             dock->setTitleBarWidget(0);
4346         } else {
4347             if (!dock->isFloating()) {
4348                 dock->setTitleBarWidget(new QWidget);
4349             }
4350         }
4351     }
4352     KdenliveSettings::setShowtitlebars(show);
4353 }
4354
4355 void MainWindow::slotSwitchTitles()
4356 {
4357     slotShowTitleBars(!KdenliveSettings::showtitlebars());
4358 }
4359
4360 QString MainWindow::getMimeType(bool open)
4361 {
4362     QString mimetype = "application/x-kdenlive";
4363     KMimeType::Ptr mime = KMimeType::mimeType(mimetype);
4364     if (!mime) {
4365         mimetype = "*.kdenlive";
4366         if (open) mimetype.append(" *.tar.gz");
4367     }
4368     else if (open) mimetype.append(" application/x-compressed-tar");
4369     return mimetype;
4370 }
4371
4372 void MainWindow::slotMonitorRequestRenderFrame(bool request)
4373 {
4374     if (request) {
4375         m_projectMonitor->render->sendFrameForAnalysis = true;
4376         return;
4377     } else {
4378         for (int i = 0; i < m_gfxScopesList.count(); i++) {
4379             if (m_gfxScopesList.at(i)->isVisible() && tabifiedDockWidgets(m_gfxScopesList.at(i)).isEmpty() && static_cast<AbstractGfxScopeWidget *>(m_gfxScopesList.at(i)->widget())->autoRefreshEnabled()) {
4380                 request = true;
4381                 break;
4382             }
4383         }
4384     }
4385 #ifdef DEBUG_MAINW
4386     qDebug() << "Any scope accepting new frames? " << request;
4387 #endif
4388     if (!request) {
4389         m_projectMonitor->render->sendFrameForAnalysis = false;
4390     }
4391 }
4392
4393
4394 void MainWindow::slotOpenStopmotion()
4395 {
4396     if (m_stopmotion == NULL) {
4397         m_stopmotion = new StopmotionWidget(m_monitorManager, m_activeDocument->projectFolder(), m_stopmotion_actions->actions(), this);
4398         connect(m_stopmotion, SIGNAL(addOrUpdateSequence(const QString &)), m_projectList, SLOT(slotAddOrUpdateSequence(const QString)));
4399         //for (int i = 0; i < m_gfxScopesList.count(); i++) {
4400             // Check if we need the renderer to send a new frame for update
4401             /*if (!m_scopesList.at(i)->widget()->visibleRegion().isEmpty() && !(static_cast<AbstractScopeWidget *>(m_scopesList.at(i)->widget())->autoRefreshEnabled())) request = true;*/
4402             //connect(m_stopmotion, SIGNAL(gotFrame(QImage)), static_cast<AbstractGfxScopeWidget *>(m_gfxScopesList.at(i)->widget()), SLOT(slotRenderZoneUpdated(QImage)));
4403             //static_cast<AbstractScopeWidget *>(m_scopesList.at(i)->widget())->slotMonitorCapture();
4404         //}
4405     }
4406     m_stopmotion->show();
4407 }
4408
4409 void MainWindow::slotDeleteClip(const QString &id)
4410 {
4411     QList <ClipProperties *> list = findChildren<ClipProperties *>();
4412     for (int i = 0; i < list.size(); ++i) {
4413         list.at(i)->disableClipId(id);
4414     }
4415     m_projectList->slotDeleteClip(id);
4416 }
4417
4418 void MainWindow::slotUpdateProxySettings()
4419 {
4420     if (m_renderWidget) m_renderWidget->updateProxyConfig(m_projectList->useProxy());
4421     if (KdenliveSettings::enableproxy())
4422         KStandardDirs::makeDir(m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash) + "proxy/");
4423     m_projectList->updateProxyConfig();
4424 }
4425
4426 void MainWindow::slotInsertNotesTimecode()
4427 {
4428     int frames = m_projectMonitor->render->seekPosition().frames(m_activeDocument->fps());
4429     QString position = m_activeDocument->timecode().getTimecodeFromFrames(frames);
4430     m_notesWidget->insertHtml("<a href=\"" + QString::number(frames) + "\">" + position + "</a> ");
4431 }
4432
4433 void MainWindow::slotArchiveProject()
4434 {
4435     QList <DocClipBase*> list = m_projectList->documentClipList();
4436     QDomDocument doc = m_activeDocument->xmlSceneList(m_projectMonitor->sceneList(), m_projectList->expandedFolders());
4437     ArchiveWidget *d = new ArchiveWidget(m_activeDocument->url().fileName(), doc, list, m_activeTimeline->projectView()->extractTransitionsLumas(), this);
4438     d->exec();
4439 }
4440
4441
4442 void MainWindow::slotOpenBackupDialog(const KUrl url)
4443 {
4444     KUrl projectFile;
4445     KUrl projectFolder;
4446     QString projectId;
4447     kDebug()<<"// BACKUP URL: "<<url.path();
4448     if (!url.isEmpty()) {
4449         // we could not open the project file, guess where the backups are
4450         projectFolder = KUrl(KdenliveSettings::defaultprojectfolder());
4451         projectFile = url;
4452     }
4453     else {
4454         projectFolder = m_activeDocument->projectFolder();
4455         projectFile = m_activeDocument->url();
4456         projectId = m_activeDocument->getDocumentProperty("documentid");
4457     }
4458
4459     BackupWidget *dia = new BackupWidget(projectFile, projectFolder, projectId, this);
4460     if (dia->exec() == QDialog::Accepted) {
4461         QString requestedBackup = dia->selectedFile();
4462         m_activeDocument->backupLastSavedVersion(projectFile.path());
4463         closeCurrentDocument(false);
4464         doOpenFile(KUrl(requestedBackup), NULL);
4465         m_activeDocument->setUrl(projectFile);
4466         m_activeDocument->setModified(true);
4467         setCaption(m_activeDocument->description());
4468     }
4469     delete dia;
4470 }
4471
4472 void MainWindow::slotElapsedTime()
4473 {
4474     kDebug()<<"-----------------------------------------\n"<<"Time elapsed: "<<m_timer.elapsed()<<"\n-------------------------";
4475 }
4476
4477
4478 void MainWindow::slotDownloadResources()
4479 {
4480     QString currentFolder;
4481     if (m_activeDocument) currentFolder = m_activeDocument->projectFolder().path();
4482     else currentFolder = KdenliveSettings::defaultprojectfolder();
4483     ResourceWidget *d = new ResourceWidget(currentFolder);
4484     connect(d, SIGNAL(addClip(KUrl, const QString &)), this, SLOT(slotAddProjectClip(KUrl, const QString &)));
4485     d->show();
4486 }
4487
4488 void MainWindow::slotChangePalette()
4489 {
4490     QPalette plt = QApplication::palette();
4491     if (m_effectStack) m_effectStack->updatePalette();
4492     if (m_projectList) m_projectList->updatePalette();
4493     if (m_effectList) m_effectList->updatePalette();
4494     
4495     if (m_clipMonitor) m_clipMonitor->setPalette(plt);
4496     if (m_projectMonitor) m_projectMonitor->setPalette(plt);
4497     
4498     setStatusBarStyleSheet(plt);
4499     if (m_activeTimeline) {
4500         m_activeTimeline->updatePalette();
4501     }
4502 }
4503
4504 void MainWindow::slotSaveTimelineClip()
4505 {
4506     if (m_activeTimeline && m_projectMonitor->render) {
4507         ClipItem *clip = m_activeTimeline->projectView()->getActiveClipUnderCursor(true);
4508         if (!clip) {
4509             m_messageLabel->setMessage(i18n("Select a clip to save"), InformationMessage);
4510             return;
4511         }
4512         KUrl url = KFileDialog::getSaveUrl(m_activeDocument->projectFolder(), "video/mlt-playlist");
4513         if (!url.isEmpty()) m_projectMonitor->render->saveClip(m_activeDocument->tracksCount() - clip->track(), clip->startPos(), url);
4514     }
4515 }
4516
4517
4518 #include "mainwindow.moc"
4519
4520 #ifdef DEBUG_MAINW
4521 #undef DEBUG_MAINW
4522 #endif