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