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