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