]> git.sesse.net Git - kdenlive/blob - src/mainwindow.cpp
faef4b2dd9190dcee87689cdd818b92fbf0e2e08
[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 #ifndef NO_JOGSHUTTLE
43 #include "jogshuttle.h"
44 #endif /* NO_JOGSHUTTLE */
45 #include "clipproperties.h"
46 #include "wizard.h"
47 #include "editclipcommand.h"
48 #include "titlewidget.h"
49 #include "markerdialog.h"
50 #include "clipitem.h"
51 #include "interfaces.h"
52 #include "kdenlive-config.h"
53 #include "cliptranscode.h"
54 #include "ui_templateclip_ui.h"
55 #include "vectorscope.h"
56 #include "waveform.h"
57 #include "rgbparade.h"
58 #include "histogram.h"
59
60 #include <KApplication>
61 #include <KAction>
62 #include <KLocale>
63 #include <KGlobal>
64 #include <KActionCollection>
65 #include <KActionCategory>
66 #include <KStandardAction>
67 #include <KShortcutsDialog>
68 #include <KFileDialog>
69 #include <KMessageBox>
70 #include <KDebug>
71 #include <KIO/NetAccess>
72 #include <KSaveFile>
73 #include <KRuler>
74 #include <KConfigDialog>
75 #include <KXMLGUIFactory>
76 #include <KStatusBar>
77 #include <kstandarddirs.h>
78 #include <KUrlRequesterDialog>
79 #include <KTemporaryFile>
80 #include <KProcess>
81 #include <KActionMenu>
82 #include <KMenu>
83 #include <locale.h>
84 #include <ktogglefullscreenaction.h>
85 #include <KFileItem>
86 #include <KNotification>
87 #include <KNotifyConfigWidget>
88 #if KDE_IS_VERSION(4,3,80)
89 #include <knewstuff3/downloaddialog.h>
90 #include <knewstuff3/knewstuffaction.h>
91 #else
92 #include <knewstuff2/engine.h>
93 #include <knewstuff2/ui/knewstuffaction.h>
94 #define KNS3 KNS
95 #endif /* KDE_IS_VERSION(4,3,80) */
96 #include <KToolBar>
97 #include <KColorScheme>
98
99 #include <QTextStream>
100 #include <QTimer>
101 #include <QAction>
102 #include <QKeyEvent>
103 #include <QInputDialog>
104 #include <QDesktopWidget>
105 #include <QBitmap>
106
107 #include <stdlib.h>
108
109 static const char version[] = VERSION;
110
111 static const int ID_TIMELINE_POS = 0;
112
113 namespace Mlt
114 {
115 class Producer;
116 };
117
118 EffectsList MainWindow::videoEffects;
119 EffectsList MainWindow::audioEffects;
120 EffectsList MainWindow::customEffects;
121 EffectsList MainWindow::transitions;
122
123 MainWindow::MainWindow(const QString &MltPath, const KUrl & Url, QWidget *parent) :
124         KXmlGuiWindow(parent),
125         m_activeDocument(NULL),
126         m_activeTimeline(NULL),
127         m_renderWidget(NULL),
128 #ifndef NO_JOGSHUTTLE
129         m_jogProcess(NULL),
130 #endif /* NO_JOGSHUTTLE */
131         m_findActivated(false)
132 {
133
134     // Create DBus interface
135     new MainWindowAdaptor(this);
136     QDBusConnection dbus = QDBusConnection::sessionBus();
137     dbus.registerObject("/MainWindow", this);
138
139     setlocale(LC_NUMERIC, "POSIX");
140     if (!KdenliveSettings::colortheme().isEmpty()) slotChangePalette(NULL, KdenliveSettings::colortheme());
141     setFont(KGlobalSettings::toolBarFont());
142     parseProfiles(MltPath);
143     m_commandStack = new QUndoGroup;
144     m_timelineArea = new KTabWidget(this);
145     m_timelineArea->setTabReorderingEnabled(true);
146     m_timelineArea->setTabBarHidden(true);
147     m_timelineArea->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred);
148     m_timelineArea->setMinimumHeight(200);
149
150     QToolButton *closeTabButton = new QToolButton;
151     connect(closeTabButton, SIGNAL(clicked()), this, SLOT(closeCurrentDocument()));
152     closeTabButton->setIcon(KIcon("tab-close"));
153     closeTabButton->adjustSize();
154     closeTabButton->setToolTip(i18n("Close the current tab"));
155     m_timelineArea->setCornerWidget(closeTabButton);
156     connect(m_timelineArea, SIGNAL(currentChanged(int)), this, SLOT(activateDocument()));
157
158     connect(&m_findTimer, SIGNAL(timeout()), this, SLOT(findTimeout()));
159     m_findTimer.setSingleShot(true);
160
161     // FIXME: the next call returns a newly allocated object, which leaks
162     initEffects::parseEffectFiles();
163     //initEffects::parseCustomEffectsFile();
164
165     m_monitorManager = new MonitorManager();
166
167     m_shortcutRemoveFocus = new QShortcut(QKeySequence("Esc"), this);
168     connect(m_shortcutRemoveFocus, SIGNAL(activated()), this, SLOT(slotRemoveFocus()));
169
170
171     /// Add Widgets ///
172
173     m_projectListDock = new QDockWidget(i18n("Project Tree"), this);
174     m_projectListDock->setObjectName("project_tree");
175     m_projectList = new ProjectList(this);
176     m_projectListDock->setWidget(m_projectList);
177     addDockWidget(Qt::TopDockWidgetArea, m_projectListDock);
178
179     m_effectStackDock = new QDockWidget(i18n("Effect Stack"), this);
180     m_effectStackDock->setObjectName("effect_stack");
181     m_effectStack = new EffectStackView(this);
182     m_effectStackDock->setWidget(m_effectStack);
183     addDockWidget(Qt::TopDockWidgetArea, m_effectStackDock);
184
185     m_transitionConfigDock = new QDockWidget(i18n("Transition"), this);
186     m_transitionConfigDock->setObjectName("transition");
187     m_transitionConfig = new TransitionSettings(this);
188     m_transitionConfigDock->setWidget(m_transitionConfig);
189     addDockWidget(Qt::TopDockWidgetArea, m_transitionConfigDock);
190
191     m_clipMonitorDock = new QDockWidget(i18n("Clip Monitor"), this);
192     m_clipMonitorDock->setObjectName("clip_monitor");
193     m_clipMonitor = new Monitor("clip", m_monitorManager, QString(), this);
194     m_clipMonitorDock->setWidget(m_clipMonitor);
195     addDockWidget(Qt::TopDockWidgetArea, m_clipMonitorDock);
196
197     m_projectMonitorDock = new QDockWidget(i18n("Project Monitor"), this);
198     m_projectMonitorDock->setObjectName("project_monitor");
199     m_projectMonitor = new Monitor("project", m_monitorManager, QString(), this);
200     m_projectMonitorDock->setWidget(m_projectMonitor);
201     addDockWidget(Qt::TopDockWidgetArea, m_projectMonitorDock);
202
203 #ifndef Q_WS_MAC
204     m_recMonitorDock = new QDockWidget(i18n("Record Monitor"), this);
205     m_recMonitorDock->setObjectName("record_monitor");
206     m_recMonitor = new RecMonitor("record", this);
207     m_recMonitorDock->setWidget(m_recMonitor);
208     addDockWidget(Qt::TopDockWidgetArea, m_recMonitorDock);
209     connect(m_recMonitor, SIGNAL(addProjectClip(KUrl)), this, SLOT(slotAddProjectClip(KUrl)));
210     connect(m_recMonitor, SIGNAL(showConfigDialog(int, int)), this, SLOT(slotPreferences(int, int)));
211 #endif
212
213     m_effectListDock = new QDockWidget(i18n("Effect List"), this);
214     m_effectListDock->setObjectName("effect_list");
215     m_effectList = new EffectsListView();
216     m_effectListDock->setWidget(m_effectList);
217     addDockWidget(Qt::TopDockWidgetArea, m_effectListDock);
218
219     m_vectorscope = new Vectorscope(m_projectMonitor, m_clipMonitor, this);
220     m_vectorscopeDock = new QDockWidget(i18n("Vectorscope"), this);
221     m_vectorscopeDock->setObjectName(m_vectorscope->widgetName());
222     m_vectorscopeDock->setWidget(m_vectorscope);
223     addDockWidget(Qt::TopDockWidgetArea, m_vectorscopeDock);
224
225     m_waveform = new Waveform(m_projectMonitor, m_clipMonitor, this);
226     m_waveformDock = new QDockWidget(i18n("Waveform"), this);
227     m_waveformDock->setObjectName(m_waveform->widgetName());
228     m_waveformDock->setWidget(m_waveform);
229     addDockWidget(Qt::TopDockWidgetArea, m_waveformDock);
230
231     m_RGBParade = new RGBParade(m_projectMonitor, m_clipMonitor, this);
232     m_RGBParadeDock = new QDockWidget(i18n("RGB Parade"), this);
233     m_RGBParadeDock->setObjectName(m_RGBParade->widgetName());
234     m_RGBParadeDock->setWidget(m_RGBParade);
235     addDockWidget(Qt::TopDockWidgetArea, m_RGBParadeDock);
236
237     m_histogram = new Histogram(m_projectMonitor, m_clipMonitor, this);
238     m_histogramDock = new QDockWidget(i18n("Histogram"), this);
239     m_histogramDock->setObjectName(m_histogram->widgetName());
240     m_histogramDock->setWidget(m_histogram);
241     addDockWidget(Qt::TopDockWidgetArea, m_histogramDock);
242
243
244     m_undoViewDock = new QDockWidget(i18n("Undo History"), this);
245     m_undoViewDock->setObjectName("undo_history");
246     m_undoView = new QUndoView(this);
247     m_undoView->setCleanIcon(KIcon("edit-clear"));
248     m_undoView->setEmptyLabel(i18n("Clean"));
249     m_undoViewDock->setWidget(m_undoView);
250     m_undoView->setGroup(m_commandStack);
251     addDockWidget(Qt::TopDockWidgetArea, m_undoViewDock);
252
253     //overviewDock = new QDockWidget(i18n("Project Overview"), this);
254     //overviewDock->setObjectName("project_overview");
255     //m_overView = new CustomTrackView(NULL, NULL, this);
256     //overviewDock->setWidget(m_overView);
257     //addDockWidget(Qt::TopDockWidgetArea, overviewDock);
258
259
260     setupActions();
261
262     /// Tabify Widgets ///
263     tabifyDockWidget(m_projectListDock, m_effectStackDock);
264     tabifyDockWidget(m_projectListDock, m_transitionConfigDock);
265
266
267     tabifyDockWidget(m_clipMonitorDock, m_projectMonitorDock);
268 #ifndef Q_WS_MAC
269     tabifyDockWidget(m_clipMonitorDock, m_recMonitorDock);
270 #endif
271
272     tabifyDockWidget(m_vectorscopeDock, m_waveformDock);
273     tabifyDockWidget(m_vectorscopeDock, m_RGBParadeDock);
274     tabifyDockWidget(m_vectorscopeDock, m_histogramDock);
275     tabifyDockWidget(m_vectorscopeDock, m_undoViewDock);
276     tabifyDockWidget(m_vectorscopeDock, m_effectListDock);
277
278
279     setCentralWidget(m_timelineArea);
280
281
282     KdenliveSettings::setCurrent_profile(KdenliveSettings::default_profile());
283     m_fileOpenRecent = KStandardAction::openRecent(this, SLOT(openFile(const KUrl &)), actionCollection());
284     readOptions();
285     m_fileRevert = KStandardAction::revert(this, SLOT(slotRevert()), actionCollection());
286     m_fileRevert->setEnabled(false);
287
288
289     setupGUI();
290
291
292     // Find QDockWidget tab bars and show / hide widget title bars on right click
293     QList <QTabBar *> tabs = findChildren<QTabBar *>();
294     for (int i = 0; i < tabs.count(); i++) {
295         tabs.at(i)->setContextMenuPolicy(Qt::CustomContextMenu);
296         connect(tabs.at(i), SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(slotSwitchTitles()));
297     }
298
299     /*ScriptingPart* sp = new ScriptingPart(this, QStringList());
300     guiFactory()->addClient(sp);*/
301
302     loadPlugins();
303     loadTranscoders();
304     //kDebug() << factory() << " " << factory()->container("video_effects_menu", this);
305
306     m_projectMonitor->setupMenu(static_cast<QMenu*>(factory()->container("monitor_go", this)), m_playZone, m_loopZone);
307     m_clipMonitor->setupMenu(static_cast<QMenu*>(factory()->container("monitor_go", this)), m_playZone, m_loopZone, static_cast<QMenu*>(factory()->container("marker_menu", this)));
308
309     QMenu *clipInTimeline = static_cast<QMenu*>(factory()->container("clip_in_timeline", this));
310     clipInTimeline->setIcon(KIcon("go-jump"));
311     m_projectList->setupGeneratorMenu(static_cast<QMenu*>(factory()->container("generators", this)),
312                                       static_cast<QMenu*>(factory()->container("transcoders", this)),
313                                       clipInTimeline);
314
315     KAction *action;
316     // build themes menus
317     QMenu *themesMenu = static_cast<QMenu*>(factory()->container("themes_menu", this));
318     QActionGroup *themegroup = new QActionGroup(this);
319     themegroup->setExclusive(true);
320     action = new KAction(i18n("Default"), this);
321     action->setCheckable(true);
322     themegroup->addAction(action);
323     if (KdenliveSettings::colortheme().isEmpty()) action->setChecked(true);
324
325     const QStringList schemeFiles = KGlobal::dirs()->findAllResources("data", "color-schemes/*.colors", KStandardDirs::NoDuplicates);
326
327     for (int i = 0; i < schemeFiles.size(); ++i) {
328         // get the file name
329         const QString filename = schemeFiles.at(i);
330         const QFileInfo info(filename);
331
332         // add the entry
333         KSharedConfigPtr config = KSharedConfig::openConfig(filename);
334         QIcon icon = createSchemePreviewIcon(config);
335         KConfigGroup group(config, "General");
336         const QString name = group.readEntry("Name", info.baseName());
337         action = new KAction(name, this);
338         action->setData(filename);
339         action->setIcon(icon);
340         action->setCheckable(true);
341         themegroup->addAction(action);
342         if (KdenliveSettings::colortheme() == filename) action->setChecked(true);
343     }
344
345     /*KGlobal::dirs()->addResourceDir("themes", KStandardDirs::installPath("data") + QString("kdenlive/themes"));
346     QStringList themes = KGlobal::dirs()->findAllResources("themes", QString(), KStandardDirs::Recursive | KStandardDirs::NoDuplicates);
347     for (QStringList::const_iterator it = themes.constBegin(); it != themes.constEnd(); ++it)
348     {
349     QFileInfo fi(*it);
350         action = new QAction(fi.fileName(), this);
351         action->setData(*it);
352     action->setCheckable(true);
353     themegroup->addAction(action);
354     if (KdenliveSettings::colortheme() == *it) action->setChecked(true);
355     }*/
356     themesMenu->addActions(themegroup->actions());
357     connect(themesMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotChangePalette(QAction*)));
358
359     // Setup and fill effects and transitions menus.
360     m_videoEffectsMenu = static_cast<QMenu*>(factory()->container("video_effects_menu", this));
361     for (int i = 0; i < videoEffects.count(); ++i)
362         m_videoEffectsMenu->addAction(m_videoEffects[i]);
363     m_audioEffectsMenu = static_cast<QMenu*>(factory()->container("audio_effects_menu", this));
364     for (int i = 0; i < audioEffects.count(); ++i)
365         m_audioEffectsMenu->addAction(m_audioEffects[i]);
366     m_customEffectsMenu = static_cast<QMenu*>(factory()->container("custom_effects_menu", this));
367     if (customEffects.isEmpty())
368         m_customEffectsMenu->setEnabled(false);
369     else
370         m_customEffectsMenu->setEnabled(true);
371     for (int i = 0; i < customEffects.count(); ++i)
372         m_customEffectsMenu->addAction(m_customEffects[i]);
373     m_transitionsMenu = new QMenu(i18n("Add Transition"), this);
374     for (int i = 0; i < transitions.count(); ++i)
375         m_transitionsMenu->addAction(m_transitions[i]);
376
377     connect(m_videoEffectsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddVideoEffect(QAction *)));
378     connect(m_audioEffectsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddAudioEffect(QAction *)));
379     connect(m_customEffectsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddCustomEffect(QAction *)));
380     connect(m_transitionsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddTransition(QAction *)));
381
382     QMenu *newEffect = new QMenu(this);
383     newEffect->addMenu(m_videoEffectsMenu);
384     newEffect->addMenu(m_audioEffectsMenu);
385     newEffect->addMenu(m_customEffectsMenu);
386     m_effectStack->setMenu(newEffect);
387
388     QMenu *viewMenu = static_cast<QMenu*>(factory()->container("dockwindows", this));
389     const QList<QAction *> viewActions = createPopupMenu()->actions();
390     viewMenu->insertActions(NULL, viewActions);
391
392     m_timelineContextMenu = new QMenu(this);
393     m_timelineContextClipMenu = new QMenu(this);
394     m_timelineContextTransitionMenu = new QMenu(this);
395
396     m_timelineContextMenu->addAction(actionCollection()->action("insert_space"));
397     m_timelineContextMenu->addAction(actionCollection()->action("delete_space"));
398     m_timelineContextMenu->addAction(actionCollection()->action(KStandardAction::name(KStandardAction::Paste)));
399
400     m_timelineContextClipMenu->addAction(actionCollection()->action("clip_in_project_tree"));
401     //m_timelineContextClipMenu->addAction(actionCollection()->action("clip_to_project_tree"));
402     m_timelineContextClipMenu->addAction(actionCollection()->action("edit_item_duration"));
403     m_timelineContextClipMenu->addAction(actionCollection()->action("delete_item"));
404     m_timelineContextClipMenu->addSeparator();
405     m_timelineContextClipMenu->addAction(actionCollection()->action("group_clip"));
406     m_timelineContextClipMenu->addAction(actionCollection()->action("ungroup_clip"));
407     m_timelineContextClipMenu->addAction(actionCollection()->action("split_audio"));
408     m_timelineContextClipMenu->addSeparator();
409     m_timelineContextClipMenu->addAction(actionCollection()->action("cut_timeline_clip"));
410     m_timelineContextClipMenu->addAction(actionCollection()->action(KStandardAction::name(KStandardAction::Copy)));
411     m_timelineContextClipMenu->addAction(actionCollection()->action("paste_effects"));
412     m_timelineContextClipMenu->addSeparator();
413
414     QMenu *markersMenu = (QMenu*)(factory()->container("marker_menu", this));
415     m_timelineContextClipMenu->addMenu(markersMenu);
416     m_timelineContextClipMenu->addSeparator();
417     m_timelineContextClipMenu->addMenu(m_transitionsMenu);
418     m_timelineContextClipMenu->addMenu(m_videoEffectsMenu);
419     m_timelineContextClipMenu->addMenu(m_audioEffectsMenu);
420     //TODO: re-enable custom effects menu when it is implemented
421     m_timelineContextClipMenu->addMenu(m_customEffectsMenu);
422
423     m_timelineContextTransitionMenu->addAction(actionCollection()->action("edit_item_duration"));
424     m_timelineContextTransitionMenu->addAction(actionCollection()->action("delete_item"));
425     m_timelineContextTransitionMenu->addAction(actionCollection()->action(KStandardAction::name(KStandardAction::Copy)));
426
427     m_timelineContextTransitionMenu->addAction(actionCollection()->action("auto_transition"));
428
429     connect(m_projectMonitorDock, SIGNAL(visibilityChanged(bool)), m_projectMonitor, SLOT(refreshMonitor(bool)));
430     connect(m_clipMonitorDock, SIGNAL(visibilityChanged(bool)), m_clipMonitor, SLOT(refreshMonitor(bool)));
431     //connect(m_monitorManager, SIGNAL(connectMonitors()), this, SLOT(slotConnectMonitors()));
432     connect(m_monitorManager, SIGNAL(raiseClipMonitor(bool)), this, SLOT(slotRaiseMonitor(bool)));
433     connect(m_monitorManager, SIGNAL(raiseClipMonitor(bool)), m_vectorscope, SLOT(slotActiveMonitorChanged(bool)));
434     connect(m_monitorManager, SIGNAL(raiseClipMonitor(bool)), m_waveform, SLOT(slotActiveMonitorChanged(bool)));
435     connect(m_monitorManager, SIGNAL(raiseClipMonitor(bool)), m_RGBParade, SLOT(slotActiveMonitorChanged(bool)));
436     connect(m_monitorManager, SIGNAL(raiseClipMonitor(bool)), m_histogram, SLOT(slotActiveMonitorChanged(bool)));
437     connect(m_effectList, SIGNAL(addEffect(const QDomElement)), this, SLOT(slotAddEffect(const QDomElement)));
438     connect(m_effectList, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
439
440     m_monitorManager->initMonitors(m_clipMonitor, m_projectMonitor);
441     slotConnectMonitors();
442
443     // Disable drop B frames, see Kdenlive issue #1330, see also kdenlivesettingsdialog.cpp
444     KdenliveSettings::setDropbframes(false);
445
446     // Open or create a file.  Command line argument passed in Url has
447     // precedence, then "openlastproject", then just a plain empty file.
448     // If opening Url fails, openlastproject will _not_ be used.
449     if (!Url.isEmpty()) {
450         // delay loading so that the window shows up
451         m_startUrl = Url;
452         QTimer::singleShot(500, this, SLOT(openFile()));
453     } else if (KdenliveSettings::openlastproject()) {
454         QTimer::singleShot(500, this, SLOT(openLastFile()));
455     } else { //if (m_timelineArea->count() == 0) {
456         newFile(false);
457     }
458
459 #ifndef NO_JOGSHUTTLE
460     activateShuttleDevice();
461 #endif /* NO_JOGSHUTTLE */
462     m_projectListDock->raise();
463 }
464
465 void MainWindow::queryQuit()
466 {
467     if (queryClose()) {
468         if (m_projectMonitor) m_projectMonitor->stop();
469         if (m_clipMonitor) m_clipMonitor->stop();
470         delete m_effectStack;
471         delete m_activeTimeline;
472 #ifndef Q_WS_MAC
473         // This sometimes causes crash on exit on OS X for some reason.
474         delete m_projectMonitor;
475         delete m_clipMonitor;
476 #endif
477         delete m_activeDocument;
478         delete m_shortcutRemoveFocus;
479         Mlt::Factory::close();
480         kapp->quit();
481     }
482 }
483
484 //virtual
485 bool MainWindow::queryClose()
486 {
487     if (m_renderWidget) {
488         int waitingJobs = m_renderWidget->waitingJobsCount();
489         if (waitingJobs > 0) {
490             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")))) {
491             case KMessageBox::Yes :
492                 // create script with waiting jobs and start it
493                 if (m_renderWidget->startWaitingRenderJobs() == false) return false;
494                 break;
495             case KMessageBox::No :
496                 // Don't do anything, jobs will be deleted
497                 break;
498             default:
499                 return false;
500             }
501         }
502     }
503     saveOptions();
504     if (m_monitorManager) m_monitorManager->stopActiveMonitor();
505     // warn the user to save if document is modified and we have clips in our project list
506     if (m_activeDocument && m_activeDocument->isModified() &&
507         ((m_projectList->documentClipList().isEmpty() && !m_activeDocument->url().isEmpty()) ||
508             !m_projectList->documentClipList().isEmpty())) {
509         QString message;
510         if (m_activeDocument->url().fileName().isEmpty())
511             message = i18n("Save changes to document?");
512         else
513             message = i18n("The project <b>\"%1\"</b> has been changed.\nDo you want to save your changes?").arg(m_activeDocument->url().fileName());
514         switch (KMessageBox::warningYesNoCancel(this, message)) {
515         case KMessageBox::Yes :
516             // save document here. If saving fails, return false;
517             return saveFile();
518         case KMessageBox::No :
519             // User does not want to save the changes, clear recovery files
520             m_activeDocument->m_autosave->resize(0);
521             return true;
522         default: // cancel
523             return false;
524         }
525     }
526     return true;
527 }
528
529 void MainWindow::loadPlugins()
530 {
531     foreach(QObject *plugin, QPluginLoader::staticInstances()) {
532         populateMenus(plugin);
533     }
534
535     QStringList directories = KGlobal::dirs()->findDirs("module", QString());
536     QStringList filters;
537     filters << "libkdenlive*";
538     foreach(const QString &folder, directories) {
539         kDebug() << "Parsing plugin folder: " << folder;
540         QDir pluginsDir(folder);
541         foreach(const QString &fileName,
542                 pluginsDir.entryList(filters, QDir::Files)) {
543             /*
544              * Avoid loading the same plugin twice when there is more than one
545              * installation.
546              */
547             if (!m_pluginFileNames.contains(fileName)) {
548                 kDebug() << "Found plugin: " << fileName;
549                 QPluginLoader loader(pluginsDir.absoluteFilePath(fileName));
550                 QObject *plugin = loader.instance();
551                 if (plugin) {
552                     populateMenus(plugin);
553                     m_pluginFileNames += fileName;
554                 } else
555                     kDebug() << "Error loading plugin: " << fileName << ", " << loader.errorString();
556             }
557         }
558     }
559 }
560
561 void MainWindow::populateMenus(QObject *plugin)
562 {
563     QMenu *addMenu = static_cast<QMenu*>(factory()->container("generators", this));
564     ClipGenerator *iGenerator = qobject_cast<ClipGenerator *>(plugin);
565     if (iGenerator)
566         addToMenu(plugin, iGenerator->generators(KdenliveSettings::producerslist()), addMenu, SLOT(generateClip()),
567                   NULL);
568 }
569
570 void MainWindow::addToMenu(QObject *plugin, const QStringList &texts,
571                            QMenu *menu, const char *member,
572                            QActionGroup *actionGroup)
573 {
574     kDebug() << "// ADD to MENU" << texts;
575     foreach(const QString &text, texts) {
576         QAction *action = new QAction(text, plugin);
577         action->setData(text);
578         connect(action, SIGNAL(triggered()), this, member);
579         menu->addAction(action);
580
581         if (actionGroup) {
582             action->setCheckable(true);
583             actionGroup->addAction(action);
584         }
585     }
586 }
587
588 void MainWindow::aboutPlugins()
589 {
590     //PluginDialog dialog(pluginsDir.path(), m_pluginFileNames, this);
591     //dialog.exec();
592 }
593
594
595 void MainWindow::generateClip()
596 {
597     QAction *action = qobject_cast<QAction *>(sender());
598     ClipGenerator *iGenerator = qobject_cast<ClipGenerator *>(action->parent());
599
600     KUrl clipUrl = iGenerator->generatedClip(action->data().toString(), m_activeDocument->projectFolder(),
601                    QStringList(), QStringList(), m_activeDocument->fps(), m_activeDocument->width(), m_activeDocument->height());
602     if (!clipUrl.isEmpty()) {
603         m_projectList->slotAddClip(QList <QUrl> () << clipUrl);
604     }
605 }
606
607 void MainWindow::saveProperties(KConfigGroup &config)
608 {
609     // save properties here,used by session management
610     saveFile();
611     KMainWindow::saveProperties(config);
612 }
613
614
615 void MainWindow::readProperties(const KConfigGroup &config)
616 {
617     // read properties here,used by session management
618     KMainWindow::readProperties(config);
619     QString Lastproject = config.group("Recent Files").readPathEntry("File1", QString());
620     openFile(KUrl(Lastproject));
621 }
622
623 void MainWindow::slotReloadEffects()
624 {
625     m_customEffectsMenu->clear();
626     initEffects::parseCustomEffectsFile();
627     QAction *action;
628     QStringList effectInfo;
629     QMap<QString, QStringList> effectsList;
630     for (int ix = 0; ix < customEffects.count(); ix++) {
631         effectInfo = customEffects.effectIdInfo(ix);
632         effectsList.insert(effectInfo.at(0).toLower(), effectInfo);
633     }
634     if (effectsList.isEmpty())
635         m_customEffectsMenu->setEnabled(false);
636     else
637         m_customEffectsMenu->setEnabled(true);
638
639     foreach(const QStringList &value, effectsList) {
640         action = new QAction(value.at(0), this);
641         action->setData(value);
642         m_customEffectsMenu->addAction(action);
643     }
644     m_effectList->reloadEffectList();
645 }
646
647 #ifndef NO_JOGSHUTTLE
648 void MainWindow::activateShuttleDevice()
649 {
650     delete m_jogProcess;
651     m_jogProcess = NULL;
652     if (KdenliveSettings::enableshuttle() == false) return;
653     m_jogProcess = new JogShuttle(KdenliveSettings::shuttledevice());
654     connect(m_jogProcess, SIGNAL(rewind1()), m_monitorManager, SLOT(slotRewindOneFrame()));
655     connect(m_jogProcess, SIGNAL(forward1()), m_monitorManager, SLOT(slotForwardOneFrame()));
656     connect(m_jogProcess, SIGNAL(rewind(double)), m_monitorManager, SLOT(slotRewind(double)));
657     connect(m_jogProcess, SIGNAL(forward(double)), m_monitorManager, SLOT(slotForward(double)));
658     connect(m_jogProcess, SIGNAL(stop()), m_monitorManager, SLOT(slotPlay()));
659     connect(m_jogProcess, SIGNAL(button(int)), this, SLOT(slotShuttleButton(int)));
660 }
661
662 void MainWindow::slotShuttleButton(int code)
663 {
664     switch (code) {
665     case 5:
666         slotShuttleAction(KdenliveSettings::shuttle1());
667         break;
668     case 6:
669         slotShuttleAction(KdenliveSettings::shuttle2());
670         break;
671     case 7:
672         slotShuttleAction(KdenliveSettings::shuttle3());
673         break;
674     case 8:
675         slotShuttleAction(KdenliveSettings::shuttle4());
676         break;
677     case 9:
678         slotShuttleAction(KdenliveSettings::shuttle5());
679         break;
680     }
681 }
682
683 void MainWindow::slotShuttleAction(int code)
684 {
685     switch (code) {
686     case 0:
687         return;
688     case 1:
689         m_monitorManager->slotPlay();
690         break;
691     default:
692         m_monitorManager->slotPlay();
693         break;
694     }
695 }
696 #endif /* NO_JOGSHUTTLE */
697
698 void MainWindow::configureNotifications()
699 {
700     KNotifyConfigWidget::configure(this);
701 }
702
703 void MainWindow::slotFullScreen()
704 {
705     KToggleFullScreenAction::setFullScreen(this, actionCollection()->action("fullscreen")->isChecked());
706 }
707
708 void MainWindow::slotAddEffect(const QDomElement effect, GenTime pos, int track)
709 {
710     if (!m_activeDocument) return;
711     if (effect.isNull()) {
712         kDebug() << "--- ERROR, TRYING TO APPEND NULL EFFECT";
713         return;
714     }
715     QDomElement effectToAdd = effect.cloneNode().toElement();
716     m_activeTimeline->projectView()->slotAddEffect(effectToAdd, pos, track);
717 }
718
719 void MainWindow::slotRaiseMonitor(bool clipMonitor)
720 {
721     if (clipMonitor) m_clipMonitorDock->raise();
722     else m_projectMonitorDock->raise();
723 }
724
725 void MainWindow::slotUpdateClip(const QString &id)
726 {
727     if (!m_activeDocument) return;
728     m_activeTimeline->projectView()->slotUpdateClip(id);
729 }
730
731 void MainWindow::slotConnectMonitors()
732 {
733     m_projectList->setRenderer(m_projectMonitor->render);
734     //connect(m_projectList, SIGNAL(receivedClipDuration(const QString &)), this, SLOT(slotUpdateClip(const QString &)));
735     connect(m_projectList, SIGNAL(deleteProjectClips(QStringList, QMap<QString, QString>)), this, SLOT(slotDeleteProjectClips(QStringList, QMap<QString, QString>)));
736     connect(m_projectList, SIGNAL(showClipProperties(DocClipBase *)), this, SLOT(slotShowClipProperties(DocClipBase *)));
737     connect(m_projectList, SIGNAL(showClipProperties(QList <DocClipBase *>, QMap<QString, QString>)), this, SLOT(slotShowClipProperties(QList <DocClipBase *>, QMap<QString, QString>)));
738     connect(m_projectList, SIGNAL(getFileProperties(const QDomElement, const QString &, int, bool)), m_projectMonitor->render, SLOT(getFileProperties(const QDomElement, const QString &, int, bool)));
739     connect(m_projectMonitor->render, SIGNAL(replyGetImage(const QString &, const QPixmap &)), m_projectList, SLOT(slotReplyGetImage(const QString &, const QPixmap &)));
740     connect(m_projectMonitor->render, SIGNAL(replyGetFileProperties(const QString &, Mlt::Producer*, const QMap < QString, QString > &, const QMap < QString, QString > &, bool)), m_projectList, SLOT(slotReplyGetFileProperties(const QString &, Mlt::Producer*, const QMap < QString, QString > &, const QMap < QString, QString > &, bool)));
741
742     connect(m_projectMonitor->render, SIGNAL(removeInvalidClip(const QString &, bool)), m_projectList, SLOT(slotRemoveInvalidClip(const QString &, bool)));
743
744     connect(m_clipMonitor, SIGNAL(refreshClipThumbnail(const QString &)), m_projectList, SLOT(slotRefreshClipThumbnail(const QString &)));
745
746     connect(m_clipMonitor, SIGNAL(adjustMonitorSize()), this, SLOT(slotAdjustClipMonitor()));
747     connect(m_projectMonitor, SIGNAL(adjustMonitorSize()), this, SLOT(slotAdjustProjectMonitor()));
748
749     connect(m_clipMonitor, SIGNAL(saveZone(Render *, QPoint)), this, SLOT(slotSaveZone(Render *, QPoint)));
750     connect(m_projectMonitor, SIGNAL(saveZone(Render *, QPoint)), this, SLOT(slotSaveZone(Render *, QPoint)));
751 }
752
753 void MainWindow::slotAdjustClipMonitor()
754 {
755     m_clipMonitorDock->updateGeometry();
756     m_clipMonitorDock->adjustSize();
757     m_clipMonitor->resetSize();
758 }
759
760 void MainWindow::slotAdjustProjectMonitor()
761 {
762     m_projectMonitorDock->updateGeometry();
763     m_projectMonitorDock->adjustSize();
764     m_projectMonitor->resetSize();
765 }
766
767 void MainWindow::setupActions()
768 {
769
770     KActionCollection* collection = actionCollection();
771     m_timecodeFormat = new KComboBox(this);
772     m_timecodeFormat->addItem(i18n("hh:mm:ss::ff"));
773     m_timecodeFormat->addItem(i18n("Frames"));
774     if (KdenliveSettings::frametimecode()) m_timecodeFormat->setCurrentIndex(1);
775     connect(m_timecodeFormat, SIGNAL(activated(int)), this, SLOT(slotUpdateTimecodeFormat(int)));
776
777     m_statusProgressBar = new QProgressBar(this);
778     m_statusProgressBar->setMinimum(0);
779     m_statusProgressBar->setMaximum(100);
780     m_statusProgressBar->setMaximumWidth(150);
781     m_statusProgressBar->setVisible(false);
782
783     KToolBar *toolbar = new KToolBar("statusToolBar", this, Qt::BottomToolBarArea);
784     toolbar->setMovable(false);
785     statusBar()->setStyleSheet(QString("QStatusBar QLabel {font-size:%1pt;} QStatusBar::item { border: 0px; font-size:%1pt;padding:0px; }").arg(statusBar()->font().pointSize()));
786     QString style1 = "QToolBar { border: 0px } QToolButton { border-style: inset; border:1px solid #999999;border-radius: 3px;margin: 0px 3px;padding: 0px;} QToolButton:checked { background-color: rgba(224, 224, 0, 100); border-style: inset; border:1px solid #cc6666;border-radius: 3px;}";
787     QString styleBorderless = "QToolButton { border-width: 0px;margin: 1px 3px 0px;padding: 0px;}";
788
789     //create edit mode buttons
790     m_normalEditTool = new KAction(KIcon("kdenlive-normal-edit"), i18n("Normal mode"), this);
791     m_normalEditTool->setShortcut(i18nc("Normal editing", "n"));
792     toolbar->addAction(m_normalEditTool);
793     m_normalEditTool->setCheckable(true);
794     m_normalEditTool->setChecked(true);
795
796     m_overwriteEditTool = new KAction(KIcon("kdenlive-overwrite-edit"), i18n("Overwrite mode"), this);
797     //m_overwriteEditTool->setShortcut(i18nc("Overwrite mode shortcut", "o"));
798     toolbar->addAction(m_overwriteEditTool);
799     m_overwriteEditTool->setCheckable(true);
800     m_overwriteEditTool->setChecked(false);
801
802     m_insertEditTool = new KAction(KIcon("kdenlive-insert-edit"), i18n("Insert mode"), this);
803     //m_insertEditTool->setShortcut(i18nc("Insert mode shortcut", "i"));
804     toolbar->addAction(m_insertEditTool);
805     m_insertEditTool->setCheckable(true);
806     m_insertEditTool->setChecked(false);
807     // not implemented yet
808     m_insertEditTool->setEnabled(false);
809
810     QActionGroup *editGroup = new QActionGroup(this);
811     editGroup->addAction(m_normalEditTool);
812     editGroup->addAction(m_overwriteEditTool);
813     editGroup->addAction(m_insertEditTool);
814     editGroup->setExclusive(true);
815     connect(editGroup, SIGNAL(triggered(QAction *)), this, SLOT(slotChangeEdit(QAction *)));
816     //connect(m_overwriteEditTool, SIGNAL(toggled(bool)), this, SLOT(slotSetOverwriteMode(bool)));
817
818     toolbar->addSeparator();
819
820     // create tools buttons
821     m_buttonSelectTool = new KAction(KIcon("kdenlive-select-tool"), i18n("Selection tool"), this);
822     m_buttonSelectTool->setShortcut(i18nc("Selection tool shortcut", "s"));
823     toolbar->addAction(m_buttonSelectTool);
824     m_buttonSelectTool->setCheckable(true);
825     m_buttonSelectTool->setChecked(true);
826
827     m_buttonRazorTool = new KAction(KIcon("edit-cut"), i18n("Razor tool"), this);
828     m_buttonRazorTool->setShortcut(i18nc("Razor tool shortcut", "x"));
829     toolbar->addAction(m_buttonRazorTool);
830     m_buttonRazorTool->setCheckable(true);
831     m_buttonRazorTool->setChecked(false);
832
833     m_buttonSpacerTool = new KAction(KIcon("kdenlive-spacer-tool"), i18n("Spacer tool"), this);
834     m_buttonSpacerTool->setShortcut(i18nc("Spacer tool shortcut", "m"));
835     toolbar->addAction(m_buttonSpacerTool);
836     m_buttonSpacerTool->setCheckable(true);
837     m_buttonSpacerTool->setChecked(false);
838
839     QActionGroup *toolGroup = new QActionGroup(this);
840     toolGroup->addAction(m_buttonSelectTool);
841     toolGroup->addAction(m_buttonRazorTool);
842     toolGroup->addAction(m_buttonSpacerTool);
843     toolGroup->setExclusive(true);
844     toolbar->setToolButtonStyle(Qt::ToolButtonIconOnly);
845
846     QWidget * actionWidget;
847     int max = toolbar->iconSizeDefault() + 2;
848     actionWidget = toolbar->widgetForAction(m_normalEditTool);
849     actionWidget->setMaximumWidth(max);
850     actionWidget->setMaximumHeight(max - 4);
851
852     actionWidget = toolbar->widgetForAction(m_insertEditTool);
853     actionWidget->setMaximumWidth(max);
854     actionWidget->setMaximumHeight(max - 4);
855
856     actionWidget = toolbar->widgetForAction(m_overwriteEditTool);
857     actionWidget->setMaximumWidth(max);
858     actionWidget->setMaximumHeight(max - 4);
859
860     actionWidget = toolbar->widgetForAction(m_buttonSelectTool);
861     actionWidget->setMaximumWidth(max);
862     actionWidget->setMaximumHeight(max - 4);
863
864     actionWidget = toolbar->widgetForAction(m_buttonRazorTool);
865     actionWidget->setMaximumWidth(max);
866     actionWidget->setMaximumHeight(max - 4);
867
868     actionWidget = toolbar->widgetForAction(m_buttonSpacerTool);
869     actionWidget->setMaximumWidth(max);
870     actionWidget->setMaximumHeight(max - 4);
871
872     toolbar->setStyleSheet(style1);
873     connect(toolGroup, SIGNAL(triggered(QAction *)), this, SLOT(slotChangeTool(QAction *)));
874
875     toolbar->addSeparator();
876     m_buttonFitZoom = new KAction(KIcon("zoom-fit-best"), i18n("Fit zoom to project"), this);
877     toolbar->addAction(m_buttonFitZoom);
878     m_buttonFitZoom->setCheckable(false);
879
880     m_zoomOut = new KAction(KIcon("zoom-out"), i18n("Zoom Out"), this);
881     toolbar->addAction(m_zoomOut);
882     m_zoomOut->setShortcut(Qt::CTRL + Qt::Key_Minus);
883
884     m_zoomSlider = new QSlider(Qt::Horizontal, this);
885     m_zoomSlider->setMaximum(13);
886     m_zoomSlider->setPageStep(1);
887     m_zoomSlider->setInvertedAppearance(true);
888
889     m_zoomSlider->setMaximumWidth(150);
890     m_zoomSlider->setMinimumWidth(100);
891     toolbar->addWidget(m_zoomSlider);
892
893     m_zoomIn = new KAction(KIcon("zoom-in"), i18n("Zoom In"), this);
894     toolbar->addAction(m_zoomIn);
895     m_zoomIn->setShortcut(Qt::CTRL + Qt::Key_Plus);
896
897     actionWidget = toolbar->widgetForAction(m_buttonFitZoom);
898     actionWidget->setMaximumWidth(max);
899     actionWidget->setMaximumHeight(max - 4);
900     actionWidget->setStyleSheet(styleBorderless);
901
902     actionWidget = toolbar->widgetForAction(m_zoomIn);
903     actionWidget->setMaximumWidth(max);
904     actionWidget->setMaximumHeight(max - 4);
905     actionWidget->setStyleSheet(styleBorderless);
906
907     actionWidget = toolbar->widgetForAction(m_zoomOut);
908     actionWidget->setMaximumWidth(max);
909     actionWidget->setMaximumHeight(max - 4);
910     actionWidget->setStyleSheet(styleBorderless);
911
912     connect(m_zoomSlider, SIGNAL(valueChanged(int)), this, SLOT(slotSetZoom(int)));
913     connect(m_zoomSlider, SIGNAL(sliderMoved(int)), this, SLOT(slotShowZoomSliderToolTip(int)));
914     connect(m_buttonFitZoom, SIGNAL(triggered()), this, SLOT(slotFitZoom()));
915     connect(m_zoomIn, SIGNAL(triggered(bool)), this, SLOT(slotZoomIn()));
916     connect(m_zoomOut, SIGNAL(triggered(bool)), this, SLOT(slotZoomOut()));
917
918     toolbar->addSeparator();
919
920     //create automatic audio split button
921     m_buttonAutomaticSplitAudio = new KAction(KIcon("kdenlive-split-audio"), i18n("Split audio and video automatically"), this);
922     toolbar->addAction(m_buttonAutomaticSplitAudio);
923     m_buttonAutomaticSplitAudio->setCheckable(true);
924     m_buttonAutomaticSplitAudio->setChecked(KdenliveSettings::splitaudio());
925     connect(m_buttonAutomaticSplitAudio, SIGNAL(triggered()), this, SLOT(slotSwitchSplitAudio()));
926
927     m_buttonVideoThumbs = new KAction(KIcon("kdenlive-show-videothumb"), i18n("Show video thumbnails"), this);
928     toolbar->addAction(m_buttonVideoThumbs);
929     m_buttonVideoThumbs->setCheckable(true);
930     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
931     connect(m_buttonVideoThumbs, SIGNAL(triggered()), this, SLOT(slotSwitchVideoThumbs()));
932
933     m_buttonAudioThumbs = new KAction(KIcon("kdenlive-show-audiothumb"), i18n("Show audio thumbnails"), this);
934     toolbar->addAction(m_buttonAudioThumbs);
935     m_buttonAudioThumbs->setCheckable(true);
936     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
937     connect(m_buttonAudioThumbs, SIGNAL(triggered()), this, SLOT(slotSwitchAudioThumbs()));
938
939     m_buttonShowMarkers = new KAction(KIcon("kdenlive-show-markers"), i18n("Show markers comments"), this);
940     toolbar->addAction(m_buttonShowMarkers);
941     m_buttonShowMarkers->setCheckable(true);
942     m_buttonShowMarkers->setChecked(KdenliveSettings::showmarkers());
943     connect(m_buttonShowMarkers, SIGNAL(triggered()), this, SLOT(slotSwitchMarkersComments()));
944
945     m_buttonSnap = new KAction(KIcon("kdenlive-snap"), i18n("Snap"), this);
946     toolbar->addAction(m_buttonSnap);
947     m_buttonSnap->setCheckable(true);
948     m_buttonSnap->setChecked(KdenliveSettings::snaptopoints());
949     connect(m_buttonSnap, SIGNAL(triggered()), this, SLOT(slotSwitchSnap()));
950
951     actionWidget = toolbar->widgetForAction(m_buttonAutomaticSplitAudio);
952     actionWidget->setMaximumWidth(max);
953     actionWidget->setMaximumHeight(max - 4);
954
955     actionWidget = toolbar->widgetForAction(m_buttonVideoThumbs);
956     actionWidget->setMaximumWidth(max);
957     actionWidget->setMaximumHeight(max - 4);
958
959     actionWidget = toolbar->widgetForAction(m_buttonAudioThumbs);
960     actionWidget->setMaximumWidth(max);
961     actionWidget->setMaximumHeight(max - 4);
962
963     actionWidget = toolbar->widgetForAction(m_buttonShowMarkers);
964     actionWidget->setMaximumWidth(max);
965     actionWidget->setMaximumHeight(max - 4);
966
967     actionWidget = toolbar->widgetForAction(m_buttonSnap);
968     actionWidget->setMaximumWidth(max);
969     actionWidget->setMaximumHeight(max - 4);
970
971     m_messageLabel = new StatusBarMessageLabel(this);
972     m_messageLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::MinimumExpanding);
973
974     statusBar()->addWidget(m_messageLabel, 10);
975     statusBar()->addWidget(m_statusProgressBar, 0);
976     statusBar()->addPermanentWidget(toolbar);
977     statusBar()->insertPermanentFixedItem("00:00:00:00", ID_TIMELINE_POS);
978     statusBar()->addPermanentWidget(m_timecodeFormat);
979     //statusBar()->setMaximumHeight(statusBar()->font().pointSize() * 3);
980
981     collection->addAction("normal_mode", m_normalEditTool);
982     collection->addAction("overwrite_mode", m_overwriteEditTool);
983     collection->addAction("insert_mode", m_insertEditTool);
984     collection->addAction("select_tool", m_buttonSelectTool);
985     collection->addAction("razor_tool", m_buttonRazorTool);
986     collection->addAction("spacer_tool", m_buttonSpacerTool);
987
988     collection->addAction("automatic_split_audio", m_buttonAutomaticSplitAudio);
989     collection->addAction("show_video_thumbs", m_buttonVideoThumbs);
990     collection->addAction("show_audio_thumbs", m_buttonAudioThumbs);
991     collection->addAction("show_markers", m_buttonShowMarkers);
992     collection->addAction("snap", m_buttonSnap);
993     collection->addAction("zoom_fit", m_buttonFitZoom);
994     collection->addAction("zoom_in", m_zoomIn);
995     collection->addAction("zoom_out", m_zoomOut);
996
997     m_projectSearch = new KAction(KIcon("edit-find"), i18n("Find"), this);
998     collection->addAction("project_find", m_projectSearch);
999     connect(m_projectSearch, SIGNAL(triggered(bool)), this, SLOT(slotFind()));
1000     m_projectSearch->setShortcut(Qt::Key_Slash);
1001
1002     m_projectSearchNext = new KAction(KIcon("go-down-search"), i18n("Find Next"), this);
1003     collection->addAction("project_find_next", m_projectSearchNext);
1004     connect(m_projectSearchNext, SIGNAL(triggered(bool)), this, SLOT(slotFindNext()));
1005     m_projectSearchNext->setShortcut(Qt::Key_F3);
1006     m_projectSearchNext->setEnabled(false);
1007
1008     KAction* profilesAction = new KAction(KIcon("document-new"), i18n("Manage Project Profiles"), this);
1009     collection->addAction("manage_profiles", profilesAction);
1010     connect(profilesAction, SIGNAL(triggered(bool)), this, SLOT(slotEditProfiles()));
1011
1012     KNS3::standardAction(i18n("Download New Wipes..."),            this, SLOT(slotGetNewLumaStuff()),       actionCollection(), "get_new_lumas");
1013     KNS3::standardAction(i18n("Download New Render Profiles..."),  this, SLOT(slotGetNewRenderStuff()),     actionCollection(), "get_new_profiles");
1014     KNS3::standardAction(i18n("Download New Project Profiles..."), this, SLOT(slotGetNewMltProfileStuff()), actionCollection(), "get_new_mlt_profiles");
1015     KNS3::standardAction(i18n("Download New Title Templates..."),  this, SLOT(slotGetNewTitleStuff()),      actionCollection(), "get_new_titles");
1016
1017     KAction* wizAction = new KAction(KIcon("configure"), i18n("Run Config Wizard"), this);
1018     collection->addAction("run_wizard", wizAction);
1019     connect(wizAction, SIGNAL(triggered(bool)), this, SLOT(slotRunWizard()));
1020
1021     KAction* projectAction = new KAction(KIcon("configure"), i18n("Project Settings"), this);
1022     collection->addAction("project_settings", projectAction);
1023     connect(projectAction, SIGNAL(triggered(bool)), this, SLOT(slotEditProjectSettings()));
1024
1025     KAction* projectRender = new KAction(KIcon("media-record"), i18n("Render"), this);
1026     collection->addAction("project_render", projectRender);
1027     projectRender->setShortcut(Qt::CTRL + Qt::Key_Return);
1028     connect(projectRender, SIGNAL(triggered(bool)), this, SLOT(slotRenderProject()));
1029
1030     KAction* projectClean = new KAction(KIcon("edit-clear"), i18n("Clean Project"), this);
1031     collection->addAction("project_clean", projectClean);
1032     connect(projectClean, SIGNAL(triggered(bool)), this, SLOT(slotCleanProject()));
1033
1034     KAction* monitorPlay = new KAction(KIcon("media-playback-start"), i18n("Play"), this);
1035     KShortcut playShortcut;
1036     playShortcut.setPrimary(Qt::Key_Space);
1037     playShortcut.setAlternate(Qt::Key_K);
1038     monitorPlay->setShortcut(playShortcut);
1039     collection->addAction("monitor_play", monitorPlay);
1040     connect(monitorPlay, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotPlay()));
1041
1042     m_playZone = new KAction(KIcon("media-playback-start"), i18n("Play Zone"), this);
1043     m_playZone->setShortcut(Qt::CTRL + Qt::Key_Space);
1044     collection->addAction("monitor_play_zone", m_playZone);
1045     connect(m_playZone, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotPlayZone()));
1046
1047     m_loopZone = new KAction(KIcon("media-playback-start"), i18n("Loop Zone"), this);
1048     m_loopZone->setShortcut(Qt::ALT + Qt::Key_Space);
1049     collection->addAction("monitor_loop_zone", m_loopZone);
1050     connect(m_loopZone, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotLoopZone()));
1051
1052     KAction *dvdWizard =  new KAction(KIcon("media-optical"), i18n("DVD Wizard"), this);
1053     collection->addAction("dvd_wizard", dvdWizard);
1054     connect(dvdWizard, SIGNAL(triggered(bool)), this, SLOT(slotDvdWizard()));
1055
1056     KAction *transcodeClip =  new KAction(KIcon("edit-copy"), i18n("Transcode Clips"), this);
1057     collection->addAction("transcode_clip", transcodeClip);
1058     connect(transcodeClip, SIGNAL(triggered(bool)), this, SLOT(slotTranscodeClip()));
1059
1060     KAction *markIn = collection->addAction("mark_in");
1061     markIn->setText(i18n("Set Zone In"));
1062     markIn->setShortcut(Qt::Key_I);
1063     connect(markIn, SIGNAL(triggered(bool)), this, SLOT(slotSetInPoint()));
1064
1065     KAction *markOut = collection->addAction("mark_out");
1066     markOut->setText(i18n("Set Zone Out"));
1067     markOut->setShortcut(Qt::Key_O);
1068     connect(markOut, SIGNAL(triggered(bool)), this, SLOT(slotSetOutPoint()));
1069
1070     KAction *switchMon = collection->addAction("switch_monitor");
1071     switchMon->setText(i18n("Switch monitor"));
1072     switchMon->setShortcut(Qt::Key_T);
1073     connect(switchMon, SIGNAL(triggered(bool)), this, SLOT(slotSwitchMonitors()));
1074
1075     KAction *insertTree = collection->addAction("insert_project_tree");
1076     insertTree->setText(i18n("Insert zone in project tree"));
1077     insertTree->setShortcut(Qt::CTRL + Qt::Key_I);
1078     connect(insertTree, SIGNAL(triggered(bool)), this, SLOT(slotInsertZoneToTree()));
1079
1080     KAction *insertTimeline = collection->addAction("insert_timeline");
1081     insertTimeline->setText(i18n("Insert zone in timeline"));
1082     insertTimeline->setShortcut(Qt::SHIFT + Qt::CTRL + Qt::Key_I);
1083     connect(insertTimeline, SIGNAL(triggered(bool)), this, SLOT(slotInsertZoneToTimeline()));
1084
1085     KAction *resizeStart =  new KAction(KIcon(), i18n("Resize Item Start"), this);
1086     collection->addAction("resize_timeline_clip_start", resizeStart);
1087     resizeStart->setShortcut(Qt::Key_1);
1088     connect(resizeStart, SIGNAL(triggered(bool)), this, SLOT(slotResizeItemStart()));
1089
1090     KAction *resizeEnd =  new KAction(KIcon(), i18n("Resize Item End"), this);
1091     collection->addAction("resize_timeline_clip_end", resizeEnd);
1092     resizeEnd->setShortcut(Qt::Key_2);
1093     connect(resizeEnd, SIGNAL(triggered(bool)), this, SLOT(slotResizeItemEnd()));
1094
1095     KAction* monitorSeekBackward = new KAction(KIcon("media-seek-backward"), i18n("Rewind"), this);
1096     monitorSeekBackward->setShortcut(Qt::Key_J);
1097     collection->addAction("monitor_seek_backward", monitorSeekBackward);
1098     connect(monitorSeekBackward, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotRewind()));
1099
1100     KAction* monitorSeekBackwardOneFrame = new KAction(KIcon("media-skip-backward"), i18n("Rewind 1 Frame"), this);
1101     monitorSeekBackwardOneFrame->setShortcut(Qt::Key_Left);
1102     collection->addAction("monitor_seek_backward-one-frame", monitorSeekBackwardOneFrame);
1103     connect(monitorSeekBackwardOneFrame, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotRewindOneFrame()));
1104
1105     KAction* monitorSeekBackwardOneSecond = new KAction(KIcon("media-skip-backward"), i18n("Rewind 1 Second"), this);
1106     monitorSeekBackwardOneSecond->setShortcut(Qt::SHIFT + Qt::Key_Left);
1107     collection->addAction("monitor_seek_backward-one-second", monitorSeekBackwardOneSecond);
1108     connect(monitorSeekBackwardOneSecond, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotRewindOneSecond()));
1109
1110     KAction* monitorSeekSnapBackward = new KAction(KIcon("media-seek-backward"), i18n("Go to Previous Snap Point"), this);
1111     monitorSeekSnapBackward->setShortcut(Qt::ALT + Qt::Key_Left);
1112     collection->addAction("monitor_seek_snap_backward", monitorSeekSnapBackward);
1113     connect(monitorSeekSnapBackward, SIGNAL(triggered(bool)), this, SLOT(slotSnapRewind()));
1114
1115     KAction* monitorSeekForward = new KAction(KIcon("media-seek-forward"), i18n("Forward"), this);
1116     monitorSeekForward->setShortcut(Qt::Key_L);
1117     collection->addAction("monitor_seek_forward", monitorSeekForward);
1118     connect(monitorSeekForward, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotForward()));
1119
1120     KAction* clipStart = new KAction(KIcon("media-seek-backward"), i18n("Go to Clip Start"), this);
1121     clipStart->setShortcut(Qt::Key_Home);
1122     collection->addAction("seek_clip_start", clipStart);
1123     connect(clipStart, SIGNAL(triggered(bool)), this, SLOT(slotClipStart()));
1124
1125     KAction* clipEnd = new KAction(KIcon("media-seek-forward"), i18n("Go to Clip End"), this);
1126     clipEnd->setShortcut(Qt::Key_End);
1127     collection->addAction("seek_clip_end", clipEnd);
1128     connect(clipEnd, SIGNAL(triggered(bool)), this, SLOT(slotClipEnd()));
1129
1130     KAction* zoneStart = new KAction(KIcon("media-seek-backward"), i18n("Go to Zone Start"), this);
1131     zoneStart->setShortcut(Qt::SHIFT + Qt::Key_I);
1132     collection->addAction("seek_zone_start", zoneStart);
1133     connect(zoneStart, SIGNAL(triggered(bool)), this, SLOT(slotZoneStart()));
1134
1135     KAction* zoneEnd = new KAction(KIcon("media-seek-forward"), i18n("Go to Zone End"), this);
1136     zoneEnd->setShortcut(Qt::SHIFT + Qt::Key_O);
1137     collection->addAction("seek_zone_end", zoneEnd);
1138     connect(zoneEnd, SIGNAL(triggered(bool)), this, SLOT(slotZoneEnd()));
1139
1140     KAction* projectStart = new KAction(KIcon("go-first"), i18n("Go to Project Start"), this);
1141     projectStart->setShortcut(Qt::CTRL + Qt::Key_Home);
1142     collection->addAction("seek_start", projectStart);
1143     connect(projectStart, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotStart()));
1144
1145     KAction* projectEnd = new KAction(KIcon("go-last"), i18n("Go to Project End"), this);
1146     projectEnd->setShortcut(Qt::CTRL + Qt::Key_End);
1147     collection->addAction("seek_end", projectEnd);
1148     connect(projectEnd, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotEnd()));
1149
1150     KAction* monitorSeekForwardOneFrame = new KAction(KIcon("media-skip-forward"), i18n("Forward 1 Frame"), this);
1151     monitorSeekForwardOneFrame->setShortcut(Qt::Key_Right);
1152     collection->addAction("monitor_seek_forward-one-frame", monitorSeekForwardOneFrame);
1153     connect(monitorSeekForwardOneFrame, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotForwardOneFrame()));
1154
1155     KAction* monitorSeekForwardOneSecond = new KAction(KIcon("media-skip-forward"), i18n("Forward 1 Second"), this);
1156     monitorSeekForwardOneSecond->setShortcut(Qt::SHIFT + Qt::Key_Right);
1157     collection->addAction("monitor_seek_forward-one-second", monitorSeekForwardOneSecond);
1158     connect(monitorSeekForwardOneSecond, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotForwardOneSecond()));
1159
1160     KAction* monitorSeekSnapForward = new KAction(KIcon("media-seek-forward"), i18n("Go to Next Snap Point"), this);
1161     monitorSeekSnapForward->setShortcut(Qt::ALT + Qt::Key_Right);
1162     collection->addAction("monitor_seek_snap_forward", monitorSeekSnapForward);
1163     connect(monitorSeekSnapForward, SIGNAL(triggered(bool)), this, SLOT(slotSnapForward()));
1164
1165     KAction* deleteItem = new KAction(KIcon("edit-delete"), i18n("Delete Selected Item"), this);
1166     deleteItem->setShortcut(Qt::Key_Delete);
1167     collection->addAction("delete_timeline_clip", deleteItem);
1168     connect(deleteItem, SIGNAL(triggered(bool)), this, SLOT(slotDeleteItem()));
1169
1170     /*KAction* editTimelineClipSpeed = new KAction(i18n("Change Clip Speed"), this);
1171     collection->addAction("change_clip_speed", editTimelineClipSpeed);
1172     editTimelineClipSpeed->setData("change_speed");
1173     connect(editTimelineClipSpeed, SIGNAL(triggered(bool)), this, SLOT(slotChangeClipSpeed()));*/
1174
1175     KAction *stickTransition = collection->addAction("auto_transition");
1176     stickTransition->setData(QString("auto"));
1177     stickTransition->setCheckable(true);
1178     stickTransition->setEnabled(false);
1179     stickTransition->setText(i18n("Automatic Transition"));
1180     connect(stickTransition, SIGNAL(triggered(bool)), this, SLOT(slotAutoTransition()));
1181
1182     KAction* groupClip = new KAction(KIcon("object-group"), i18n("Group Clips"), this);
1183     groupClip->setShortcut(Qt::CTRL + Qt::Key_G);
1184     collection->addAction("group_clip", groupClip);
1185     connect(groupClip, SIGNAL(triggered(bool)), this, SLOT(slotGroupClips()));
1186
1187     KAction* ungroupClip = new KAction(KIcon("object-ungroup"), i18n("Ungroup Clips"), this);
1188     collection->addAction("ungroup_clip", ungroupClip);
1189     ungroupClip->setShortcut(Qt::CTRL + Qt::SHIFT + Qt::Key_G);
1190     ungroupClip->setData("ungroup_clip");
1191     connect(ungroupClip, SIGNAL(triggered(bool)), this, SLOT(slotUnGroupClips()));
1192
1193     KAction* editItemDuration = new KAction(KIcon("measure"), i18n("Edit Duration"), this);
1194     collection->addAction("edit_item_duration", editItemDuration);
1195     connect(editItemDuration, SIGNAL(triggered(bool)), this, SLOT(slotEditItemDuration()));
1196
1197     KAction* clipInProjectTree = new KAction(KIcon("go-jump-definition"), i18n("Clip in Project Tree"), this);
1198     collection->addAction("clip_in_project_tree", clipInProjectTree);
1199     connect(clipInProjectTree, SIGNAL(triggered(bool)), this, SLOT(slotClipInProjectTree()));
1200
1201     /*KAction* clipToProjectTree = new KAction(KIcon("go-jump-definition"), i18n("Add Clip to Project Tree"), this);
1202     collection->addAction("clip_to_project_tree", clipToProjectTree);
1203     connect(clipToProjectTree, SIGNAL(triggered(bool)), this, SLOT(slotClipToProjectTree()));*/
1204
1205     KAction* insertOvertwrite = new KAction(KIcon(), i18n("Insert Clip Zone in Timeline (Overwrite)"), this);
1206     insertOvertwrite->setShortcut(Qt::Key_V);
1207     collection->addAction("overwrite_to_in_point", insertOvertwrite);
1208     connect(insertOvertwrite, SIGNAL(triggered(bool)), this, SLOT(slotInsertClipOverwrite()));
1209
1210     KAction* selectTimelineClip = new KAction(KIcon("edit-select"), i18n("Select Clip"), this);
1211     selectTimelineClip->setShortcut(Qt::Key_Plus);
1212     collection->addAction("select_timeline_clip", selectTimelineClip);
1213     connect(selectTimelineClip, SIGNAL(triggered(bool)), this, SLOT(slotSelectTimelineClip()));
1214
1215     KAction* deselectTimelineClip = new KAction(KIcon("edit-select"), i18n("Deselect Clip"), this);
1216     deselectTimelineClip->setShortcut(Qt::Key_Minus);
1217     collection->addAction("deselect_timeline_clip", deselectTimelineClip);
1218     connect(deselectTimelineClip, SIGNAL(triggered(bool)), this, SLOT(slotDeselectTimelineClip()));
1219
1220     KAction* selectAddTimelineClip = new KAction(KIcon("edit-select"), i18n("Add Clip To Selection"), this);
1221     selectAddTimelineClip->setShortcut(Qt::ALT + Qt::Key_Plus);
1222     collection->addAction("select_add_timeline_clip", selectAddTimelineClip);
1223     connect(selectAddTimelineClip, SIGNAL(triggered(bool)), this, SLOT(slotSelectAddTimelineClip()));
1224
1225     KAction* selectTimelineTransition = new KAction(KIcon("edit-select"), i18n("Select Transition"), this);
1226     selectTimelineTransition->setShortcut(Qt::SHIFT + Qt::Key_Plus);
1227     collection->addAction("select_timeline_transition", selectTimelineTransition);
1228     connect(selectTimelineTransition, SIGNAL(triggered(bool)), this, SLOT(slotSelectTimelineTransition()));
1229
1230     KAction* deselectTimelineTransition = new KAction(KIcon("edit-select"), i18n("Deselect Transition"), this);
1231     deselectTimelineTransition->setShortcut(Qt::SHIFT + Qt::Key_Minus);
1232     collection->addAction("deselect_timeline_transition", deselectTimelineTransition);
1233     connect(deselectTimelineTransition, SIGNAL(triggered(bool)), this, SLOT(slotDeselectTimelineTransition()));
1234
1235     KAction* selectAddTimelineTransition = new KAction(KIcon("edit-select"), i18n("Add Transition To Selection"), this);
1236     selectAddTimelineTransition->setShortcut(Qt::ALT + Qt::SHIFT + Qt::Key_Plus);
1237     collection->addAction("select_add_timeline_transition", selectAddTimelineTransition);
1238     connect(selectAddTimelineTransition, SIGNAL(triggered(bool)), this, SLOT(slotSelectAddTimelineTransition()));
1239
1240     KAction* cutTimelineClip = new KAction(KIcon("edit-cut"), i18n("Cut Clip"), this);
1241     cutTimelineClip->setShortcut(Qt::SHIFT + Qt::Key_R);
1242     collection->addAction("cut_timeline_clip", cutTimelineClip);
1243     connect(cutTimelineClip, SIGNAL(triggered(bool)), this, SLOT(slotCutTimelineClip()));
1244
1245     KAction* addClipMarker = new KAction(KIcon("bookmark-new"), i18n("Add Marker"), this);
1246     collection->addAction("add_clip_marker", addClipMarker);
1247     connect(addClipMarker, SIGNAL(triggered(bool)), this, SLOT(slotAddClipMarker()));
1248
1249     KAction* deleteClipMarker = new KAction(KIcon("edit-delete"), i18n("Delete Marker"), this);
1250     collection->addAction("delete_clip_marker", deleteClipMarker);
1251     connect(deleteClipMarker, SIGNAL(triggered(bool)), this, SLOT(slotDeleteClipMarker()));
1252
1253     KAction* deleteAllClipMarkers = new KAction(KIcon("edit-delete"), i18n("Delete All Markers"), this);
1254     collection->addAction("delete_all_clip_markers", deleteAllClipMarkers);
1255     connect(deleteAllClipMarkers, SIGNAL(triggered(bool)), this, SLOT(slotDeleteAllClipMarkers()));
1256
1257     KAction* editClipMarker = new KAction(KIcon("document-properties"), i18n("Edit Marker"), this);
1258     collection->addAction("edit_clip_marker", editClipMarker);
1259     connect(editClipMarker, SIGNAL(triggered(bool)), this, SLOT(slotEditClipMarker()));
1260
1261     KAction* splitAudio = new KAction(KIcon("document-new"), i18n("Split Audio"), this);
1262     collection->addAction("split_audio", splitAudio);
1263     connect(splitAudio, SIGNAL(triggered(bool)), this, SLOT(slotSplitAudio()));
1264
1265     KAction* audioOnly = new KAction(KIcon("document-new"), i18n("Audio Only"), this);
1266     collection->addAction("clip_audio_only", audioOnly);
1267     audioOnly->setData("clip_audio_only");
1268     audioOnly->setCheckable(true);
1269
1270     KAction* videoOnly = new KAction(KIcon("document-new"), i18n("Video Only"), this);
1271     collection->addAction("clip_video_only", videoOnly);
1272     videoOnly->setData("clip_video_only");
1273     videoOnly->setCheckable(true);
1274
1275     KAction* audioAndVideo = new KAction(KIcon("document-new"), i18n("Audio and Video"), this);
1276     collection->addAction("clip_audio_and_video", audioAndVideo);
1277     audioAndVideo->setData("clip_audio_and_video");
1278     audioAndVideo->setCheckable(true);
1279
1280     m_clipTypeGroup = new QActionGroup(this);
1281     m_clipTypeGroup->addAction(audioOnly);
1282     m_clipTypeGroup->addAction(videoOnly);
1283     m_clipTypeGroup->addAction(audioAndVideo);
1284     connect(m_clipTypeGroup, SIGNAL(triggered(QAction *)), this, SLOT(slotUpdateClipType(QAction *)));
1285     m_clipTypeGroup->setEnabled(false);
1286
1287     KAction *insertSpace = new KAction(KIcon(), i18n("Insert Space"), this);
1288     collection->addAction("insert_space", insertSpace);
1289     connect(insertSpace, SIGNAL(triggered()), this, SLOT(slotInsertSpace()));
1290
1291     KAction *removeSpace = new KAction(KIcon(), i18n("Remove Space"), this);
1292     collection->addAction("delete_space", removeSpace);
1293     connect(removeSpace, SIGNAL(triggered()), this, SLOT(slotRemoveSpace()));
1294
1295     KAction *insertTrack = new KAction(KIcon(), i18n("Insert Track"), this);
1296     collection->addAction("insert_track", insertTrack);
1297     connect(insertTrack, SIGNAL(triggered()), this, SLOT(slotInsertTrack()));
1298
1299     KAction *deleteTrack = new KAction(KIcon(), i18n("Delete Track"), this);
1300     collection->addAction("delete_track", deleteTrack);
1301     connect(deleteTrack, SIGNAL(triggered()), this, SLOT(slotDeleteTrack()));
1302
1303     KAction *configTracks = new KAction(KIcon("configure"), i18n("Configure Tracks"), this);
1304     collection->addAction("config_tracks", configTracks);
1305     connect(configTracks, SIGNAL(triggered()), this, SLOT(slotConfigTrack()));
1306
1307     KAction *addGuide = new KAction(KIcon("document-new"), i18n("Add Guide"), this);
1308     collection->addAction("add_guide", addGuide);
1309     connect(addGuide, SIGNAL(triggered()), this, SLOT(slotAddGuide()));
1310
1311     QAction *delGuide = new KAction(KIcon("edit-delete"), i18n("Delete Guide"), this);
1312     collection->addAction("delete_guide", delGuide);
1313     connect(delGuide, SIGNAL(triggered()), this, SLOT(slotDeleteGuide()));
1314
1315     QAction *editGuide = new KAction(KIcon("document-properties"), i18n("Edit Guide"), this);
1316     collection->addAction("edit_guide", editGuide);
1317     connect(editGuide, SIGNAL(triggered()), this, SLOT(slotEditGuide()));
1318
1319     QAction *delAllGuides = new KAction(KIcon("edit-delete"), i18n("Delete All Guides"), this);
1320     collection->addAction("delete_all_guides", delAllGuides);
1321     connect(delAllGuides, SIGNAL(triggered()), this, SLOT(slotDeleteAllGuides()));
1322
1323     QAction *pasteEffects = new KAction(KIcon("edit-paste"), i18n("Paste Effects"), this);
1324     collection->addAction("paste_effects", pasteEffects);
1325     pasteEffects->setData("paste_effects");
1326     connect(pasteEffects , SIGNAL(triggered()), this, SLOT(slotPasteEffects()));
1327
1328     QAction *showTimeline = new KAction(i18n("Show Timeline"), this);
1329     collection->addAction("show_timeline", showTimeline);
1330     showTimeline->setCheckable(true);
1331     showTimeline->setChecked(true);
1332     connect(showTimeline, SIGNAL(triggered(bool)), this, SLOT(slotShowTimeline(bool)));
1333
1334     QAction *showTitleBar = new KAction(i18n("Show Title Bars"), this);
1335     collection->addAction("show_titlebars", showTitleBar);
1336     showTitleBar->setCheckable(true);
1337     connect(showTitleBar, SIGNAL(triggered(bool)), this, SLOT(slotShowTitleBars(bool)));
1338     showTitleBar->setChecked(KdenliveSettings::showtitlebars());
1339     slotShowTitleBars(KdenliveSettings::showtitlebars());
1340
1341     /*QAction *maxCurrent = new KAction(i18n("Maximize Current Widget"), this);
1342     collection->addAction("maximize_current", maxCurrent);
1343     maxCurrent->setCheckable(true);
1344     maxCurrent->setChecked(false);
1345     connect(maxCurrent, SIGNAL(triggered(bool)), this, SLOT(slotMaximizeCurrent(bool)));*/
1346
1347     m_closeAction = KStandardAction::close(this,  SLOT(closeCurrentDocument()),   collection);
1348     KStandardAction::quit(this,                   SLOT(queryQuit()),              collection);
1349     KStandardAction::open(this,                   SLOT(openFile()),               collection);
1350     m_saveAction = KStandardAction::save(this,    SLOT(saveFile()),               collection);
1351     KStandardAction::saveAs(this,                 SLOT(saveFileAs()),             collection);
1352     KStandardAction::openNew(this,                SLOT(newFile()),                collection);
1353     // TODO: make the following connection to slotEditKeys work
1354     KStandardAction::keyBindings(this,            SLOT(slotEditKeys()),           collection);
1355     KStandardAction::preferences(this,            SLOT(slotPreferences()),        collection);
1356     KStandardAction::configureNotifications(this, SLOT(configureNotifications()), collection);
1357     KStandardAction::copy(this,                   SLOT(slotCopy()),               collection);
1358     KStandardAction::paste(this,                  SLOT(slotPaste()),              collection);
1359     KStandardAction::fullScreen(this,             SLOT(slotFullScreen()), this,   collection);
1360
1361     KAction *undo = KStandardAction::undo(m_commandStack, SLOT(undo()), collection);
1362     undo->setEnabled(false);
1363     connect(m_commandStack, SIGNAL(canUndoChanged(bool)), undo, SLOT(setEnabled(bool)));
1364
1365     KAction *redo = KStandardAction::redo(m_commandStack, SLOT(redo()), collection);
1366     redo->setEnabled(false);
1367     connect(m_commandStack, SIGNAL(canRedoChanged(bool)), redo, SLOT(setEnabled(bool)));
1368
1369     /*
1370     //TODO: Add status tooltip to actions ?
1371     connect(collection, SIGNAL(actionHovered(QAction*)),
1372             this, SLOT(slotDisplayActionMessage(QAction*)));*/
1373
1374
1375     QAction *addClip = new KAction(KIcon("kdenlive-add-clip"), i18n("Add Clip"), this);
1376     collection->addAction("add_clip", addClip);
1377     connect(addClip , SIGNAL(triggered()), m_projectList, SLOT(slotAddClip()));
1378
1379     QAction *addColorClip = new KAction(KIcon("kdenlive-add-color-clip"), i18n("Add Color Clip"), this);
1380     collection->addAction("add_color_clip", addColorClip);
1381     connect(addColorClip , SIGNAL(triggered()), m_projectList, SLOT(slotAddColorClip()));
1382
1383     QAction *addSlideClip = new KAction(KIcon("kdenlive-add-slide-clip"), i18n("Add Slideshow Clip"), this);
1384     collection->addAction("add_slide_clip", addSlideClip);
1385     connect(addSlideClip , SIGNAL(triggered()), m_projectList, SLOT(slotAddSlideshowClip()));
1386
1387     QAction *addTitleClip = new KAction(KIcon("kdenlive-add-text-clip"), i18n("Add Title Clip"), this);
1388     collection->addAction("add_text_clip", addTitleClip);
1389     connect(addTitleClip , SIGNAL(triggered()), m_projectList, SLOT(slotAddTitleClip()));
1390
1391     QAction *addTitleTemplateClip = new KAction(KIcon("kdenlive-add-text-clip"), i18n("Add Template Title"), this);
1392     collection->addAction("add_text_template_clip", addTitleTemplateClip);
1393     connect(addTitleTemplateClip , SIGNAL(triggered()), m_projectList, SLOT(slotAddTitleTemplateClip()));
1394
1395     QAction *addFolderButton = new KAction(KIcon("folder-new"), i18n("Create Folder"), this);
1396     collection->addAction("add_folder", addFolderButton);
1397     connect(addFolderButton , SIGNAL(triggered()), m_projectList, SLOT(slotAddFolder()));
1398
1399     QAction *clipProperties = new KAction(KIcon("document-edit"), i18n("Clip Properties"), this);
1400     collection->addAction("clip_properties", clipProperties);
1401     clipProperties->setData("clip_properties");
1402     connect(clipProperties , SIGNAL(triggered()), m_projectList, SLOT(slotEditClip()));
1403     clipProperties->setEnabled(false);
1404
1405     QAction *openClip = new KAction(KIcon("document-open"), i18n("Edit Clip"), this);
1406     collection->addAction("edit_clip", openClip);
1407     openClip->setData("edit_clip");
1408     connect(openClip , SIGNAL(triggered()), m_projectList, SLOT(slotOpenClip()));
1409     openClip->setEnabled(false);
1410
1411     QAction *deleteClip = new KAction(KIcon("edit-delete"), i18n("Delete Clip"), this);
1412     collection->addAction("delete_clip", deleteClip);
1413     deleteClip->setData("delete_clip");
1414     connect(deleteClip , SIGNAL(triggered()), m_projectList, SLOT(slotRemoveClip()));
1415     deleteClip->setEnabled(false);
1416
1417     QAction *reloadClip = new KAction(KIcon("view-refresh"), i18n("Reload Clip"), this);
1418     collection->addAction("reload_clip", reloadClip);
1419     reloadClip->setData("reload_clip");
1420     connect(reloadClip , SIGNAL(triggered()), m_projectList, SLOT(slotReloadClip()));
1421     reloadClip->setEnabled(false);
1422
1423     QMenu *addClips = new QMenu();
1424     addClips->addAction(addClip);
1425     addClips->addAction(addColorClip);
1426     addClips->addAction(addSlideClip);
1427     addClips->addAction(addTitleClip);
1428     addClips->addAction(addTitleTemplateClip);
1429     addClips->addAction(addFolderButton);
1430
1431     addClips->addAction(reloadClip);
1432     addClips->addAction(clipProperties);
1433     addClips->addAction(openClip);
1434     addClips->addAction(deleteClip);
1435     m_projectList->setupMenu(addClips, addClip);
1436
1437     // Setup effects and transitions actions.
1438     m_effectsActionCollection = new KActionCollection(this, KGlobal::mainComponent());
1439     //KActionCategory *videoEffectActions = new KActionCategory(i18n("Video Effects"), m_effectsActionCollection);
1440     KActionCategory *videoEffectActions = new KActionCategory(i18n("Video Effects"), collection);
1441     m_videoEffects = new KAction*[videoEffects.count()];
1442     for (int i = 0; i < videoEffects.count(); ++i) {
1443         QStringList effectInfo = videoEffects.effectIdInfo(i);
1444         m_videoEffects[i] = new KAction(KIcon("kdenlive-show-video"), effectInfo.at(0), this);
1445         m_videoEffects[i]->setData(effectInfo);
1446         m_videoEffects[i]->setIconVisibleInMenu(false);
1447         videoEffectActions->addAction("video_effect_" + effectInfo.at(0), m_videoEffects[i]);
1448     }
1449     //KActionCategory *audioEffectActions = new KActionCategory(i18n("Audio Effects"), m_effectsActionCollection);
1450     KActionCategory *audioEffectActions = new KActionCategory(i18n("Audio Effects"), collection);
1451     m_audioEffects = new KAction*[audioEffects.count()];
1452     for (int i = 0; i < audioEffects.count(); ++i) {
1453         QStringList effectInfo = audioEffects.effectIdInfo(i);
1454         m_audioEffects[i] = new KAction(KIcon("kdenlive-show-audio"), effectInfo.at(0), this);
1455         m_audioEffects[i]->setData(effectInfo);
1456         m_audioEffects[i]->setIconVisibleInMenu(false);
1457         audioEffectActions->addAction("audio_effect_" + effectInfo.at(0), m_audioEffects[i]);
1458     }
1459     //KActionCategory *customEffectActions = new KActionCategory(i18n("Custom Effects"), m_effectsActionCollection);
1460     KActionCategory *customEffectActions = new KActionCategory(i18n("Custom Effects"), collection);
1461     m_customEffects = new KAction*[customEffects.count()];
1462     for (int i = 0; i < customEffects.count(); ++i) {
1463         QStringList effectInfo = customEffects.effectIdInfo(i);
1464         m_customEffects[i] = new KAction(KIcon("kdenlive-custom-effect"), effectInfo.at(0), this);
1465         m_customEffects[i]->setData(effectInfo);
1466         m_customEffects[i]->setIconVisibleInMenu(false);
1467         customEffectActions->addAction("custom_effect_" + effectInfo.at(0), m_customEffects[i]);
1468     }
1469     //KActionCategory *transitionActions = new KActionCategory(i18n("Transitions"), m_effectsActionCollection);
1470     KActionCategory *transitionActions = new KActionCategory(i18n("Transitions"), collection);
1471     m_transitions = new KAction*[transitions.count()];
1472     for (int i = 0; i < transitions.count(); i++) {
1473         QStringList effectInfo = transitions.effectIdInfo(i);
1474         m_transitions[i] = new KAction(effectInfo.at(0), this);
1475         m_transitions[i]->setData(effectInfo);
1476         m_transitions[i]->setIconVisibleInMenu(false);
1477         transitionActions->addAction("transition_" + effectInfo.at(0), m_transitions[i]);
1478     }
1479     m_effectsActionCollection->readSettings();
1480
1481     //connect(collection, SIGNAL( clearStatusText() ),
1482     //statusBar(), SLOT( clear() ) );
1483 }
1484
1485 void MainWindow::slotDisplayActionMessage(QAction *a)
1486 {
1487     statusBar()->showMessage(a->data().toString(), 3000);
1488 }
1489
1490 void MainWindow::saveOptions()
1491 {
1492     KdenliveSettings::self()->writeConfig();
1493     KSharedConfigPtr config = KGlobal::config();
1494     m_fileOpenRecent->saveEntries(KConfigGroup(config, "Recent Files"));
1495     KConfigGroup treecolumns(config, "Project Tree");
1496     treecolumns.writeEntry("columns", m_projectList->headerInfo());
1497     config->sync();
1498 }
1499
1500 void MainWindow::readOptions()
1501 {
1502     KSharedConfigPtr config = KGlobal::config();
1503     m_fileOpenRecent->loadEntries(KConfigGroup(config, "Recent Files"));
1504     KConfigGroup initialGroup(config, "version");
1505     bool upgrade = false;
1506     if (initialGroup.exists()) {
1507         if (initialGroup.readEntry("version", QString()).section(' ', 0, 0) != QString(version).section(' ', 0, 0)) {
1508             upgrade = true;
1509         }
1510
1511         if (initialGroup.readEntry("version") == "0.7") {
1512             //Add new settings from 0.7.1
1513             if (KdenliveSettings::defaultprojectfolder().isEmpty()) {
1514                 QString path = QDir::homePath() + "/kdenlive";
1515                 if (KStandardDirs::makeDir(path)  == false) {
1516                     kDebug() << "/// ERROR CREATING PROJECT FOLDER: " << path;
1517                 } else KdenliveSettings::setDefaultprojectfolder(path);
1518             }
1519         }
1520
1521     }
1522
1523     if (!initialGroup.exists() || upgrade) {
1524         // this is our first run, show Wizard
1525         Wizard *w = new Wizard(upgrade, this);
1526         if (w->exec() == QDialog::Accepted && w->isOk()) {
1527             w->adjustSettings();
1528             initialGroup.writeEntry("version", version);
1529             delete w;
1530         } else {
1531             ::exit(1);
1532         }
1533     }
1534     KConfigGroup treecolumns(config, "Project Tree");
1535     const QByteArray state = treecolumns.readEntry("columns", QByteArray());
1536     if (!state.isEmpty())
1537         m_projectList->setHeaderInfo(state);
1538 }
1539
1540 void MainWindow::slotRunWizard()
1541 {
1542     Wizard *w = new Wizard(false, this);
1543     if (w->exec() == QDialog::Accepted && w->isOk()) {
1544         w->adjustSettings();
1545     }
1546     delete w;
1547 }
1548
1549 void MainWindow::newFile(bool showProjectSettings, bool force)
1550 {
1551     if (!m_timelineArea->isEnabled() && !force) return;
1552     m_fileRevert->setEnabled(false);
1553     QString profileName;
1554     KUrl projectFolder;
1555     QPoint projectTracks(KdenliveSettings::videotracks(), KdenliveSettings::audiotracks());
1556     if (!showProjectSettings) {
1557         if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
1558         profileName = KdenliveSettings::default_profile();
1559         projectFolder = KdenliveSettings::defaultprojectfolder();
1560     } else {
1561         ProjectSettings *w = new ProjectSettings(NULL, QStringList(), projectTracks.x(), projectTracks.y(), KdenliveSettings::defaultprojectfolder(), false, true, this);
1562         if (w->exec() != QDialog::Accepted) return;
1563         if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
1564         if (KdenliveSettings::videothumbnails() != w->enableVideoThumbs()) slotSwitchVideoThumbs();
1565         if (KdenliveSettings::audiothumbnails() != w->enableAudioThumbs()) slotSwitchAudioThumbs();
1566         profileName = w->selectedProfile();
1567         projectFolder = w->selectedFolder();
1568         projectTracks = w->tracks();
1569         delete w;
1570     }
1571     m_timelineArea->setEnabled(true);
1572     m_projectList->setEnabled(true);
1573     KdenliveDoc *doc = new KdenliveDoc(KUrl(), projectFolder, m_commandStack, profileName, projectTracks, m_projectMonitor->render, this);
1574     doc->m_autosave = new KAutoSaveFile(KUrl(), doc);
1575     bool ok;
1576     TrackView *trackView = new TrackView(doc, &ok, this);
1577     m_timelineArea->addTab(trackView, KIcon("kdenlive"), doc->description());
1578     if (!ok) {
1579         // MLT is broken
1580         //m_timelineArea->setEnabled(false);
1581         //m_projectList->setEnabled(false);
1582         slotPreferences(6);
1583         return;
1584     }
1585     if (m_timelineArea->count() == 1) {
1586         connectDocumentInfo(doc);
1587         connectDocument(trackView, doc);
1588     } else m_timelineArea->setTabBarHidden(false);
1589     m_monitorManager->activateMonitor("clip");
1590     m_closeAction->setEnabled(m_timelineArea->count() > 1);
1591 }
1592
1593 void MainWindow::activateDocument()
1594 {
1595     if (m_timelineArea->currentWidget() == NULL || !m_timelineArea->isEnabled()) return;
1596     TrackView *currentTab = (TrackView *) m_timelineArea->currentWidget();
1597     KdenliveDoc *currentDoc = currentTab->document();
1598     connectDocumentInfo(currentDoc);
1599     connectDocument(currentTab, currentDoc);
1600 }
1601
1602 void MainWindow::closeCurrentDocument(bool saveChanges)
1603 {
1604     QWidget *w = m_timelineArea->currentWidget();
1605     if (!w) return;
1606     // closing current document
1607     int ix = m_timelineArea->currentIndex() + 1;
1608     if (ix == m_timelineArea->count()) ix = 0;
1609     m_timelineArea->setCurrentIndex(ix);
1610     TrackView *tabToClose = (TrackView *) w;
1611     KdenliveDoc *docToClose = tabToClose->document();
1612     if (docToClose && docToClose->isModified() && saveChanges) {
1613         QString message;
1614         if (m_activeDocument->url().fileName().isEmpty())
1615             message = i18n("Save changes to document?");
1616         else
1617             message = i18n("The project <b>\"%1\"</b> has been changed.\nDo you want to save your changes?").arg(m_activeDocument->url().fileName());
1618         switch (KMessageBox::warningYesNoCancel(this, message)) {
1619         case KMessageBox::Yes :
1620             // save document here. If saving fails, return false;
1621             if (saveFile() == false) return;
1622             break;
1623         case KMessageBox::Cancel :
1624             return;
1625             break;
1626         default:
1627             break;
1628         }
1629     }
1630     m_clipMonitor->slotSetXml(NULL);
1631     m_timelineArea->removeTab(m_timelineArea->indexOf(w));
1632     if (m_timelineArea->count() == 1) {
1633         m_timelineArea->setTabBarHidden(true);
1634         m_closeAction->setEnabled(false);
1635     }
1636     if (docToClose == m_activeDocument) {
1637         delete m_activeDocument;
1638         m_activeDocument = NULL;
1639         m_effectStack->clear();
1640         m_transitionConfig->slotTransitionItemSelected(NULL, 0, QPoint(), false);
1641     } else {
1642         delete docToClose;
1643     }
1644     if (w == m_activeTimeline) {
1645         delete m_activeTimeline;
1646         m_activeTimeline = NULL;
1647     } else {
1648         delete w;
1649     }
1650 }
1651
1652 bool MainWindow::saveFileAs(const QString &outputFileName)
1653 {
1654     QString currentSceneList;
1655     m_monitorManager->stopActiveMonitor();
1656     if (KdenliveSettings::dropbframes()) {
1657         KdenliveSettings::setDropbframes(false);
1658         m_activeDocument->clipManager()->updatePreviewSettings();
1659         currentSceneList = m_projectMonitor->sceneList();
1660         KdenliveSettings::setDropbframes(true);
1661         m_activeDocument->clipManager()->updatePreviewSettings();
1662     } else currentSceneList = m_projectMonitor->sceneList();
1663
1664     if (m_activeDocument->saveSceneList(outputFileName, currentSceneList) == false)
1665         return false;
1666
1667     // Save timeline thumbnails
1668     m_activeTimeline->projectView()->saveThumbnails();
1669     m_activeDocument->setUrl(KUrl(outputFileName));
1670     if (m_activeDocument->m_autosave == NULL) {
1671         m_activeDocument->m_autosave = new KAutoSaveFile(KUrl(outputFileName), this);
1672     } else m_activeDocument->m_autosave->setManagedFile(KUrl(outputFileName));
1673     setCaption(m_activeDocument->description());
1674     m_timelineArea->setTabText(m_timelineArea->currentIndex(), m_activeDocument->description());
1675     m_timelineArea->setTabToolTip(m_timelineArea->currentIndex(), m_activeDocument->url().path());
1676     m_activeDocument->setModified(false);
1677     m_fileOpenRecent->addUrl(KUrl(outputFileName));
1678     m_fileRevert->setEnabled(true);
1679     return true;
1680 }
1681
1682 bool MainWindow::saveFileAs()
1683 {
1684     QString outputFile = KFileDialog::getSaveFileName(m_activeDocument->projectFolder(), getMimeType());
1685     if (outputFile.isEmpty()) { return false; }
1686     if (QFile::exists(outputFile)) {
1687         // Show the file dialog again if the user does not want to overwrite the file
1688         if (KMessageBox::questionYesNo(this, i18n("File already exists.\nDo you want to overwrite it?")) == KMessageBox::No)
1689             return saveFileAs();
1690     }
1691     return saveFileAs(outputFile);
1692 }
1693
1694 bool MainWindow::saveFile()
1695 {
1696     if (!m_activeDocument) return true;
1697     if (m_activeDocument->url().isEmpty()) {
1698         return saveFileAs();
1699     } else {
1700         bool result = saveFileAs(m_activeDocument->url().path());
1701         m_activeDocument->m_autosave->resize(0);
1702         return result;
1703     }
1704 }
1705
1706 void MainWindow::openFile()
1707 {
1708     if (!m_startUrl.isEmpty()) {
1709         openFile(m_startUrl);
1710         m_startUrl = KUrl();
1711         return;
1712     }
1713     KUrl url = KFileDialog::getOpenUrl(KUrl("kfiledialog:///projectfolder"), getMimeType());
1714     if (url.isEmpty()) return;
1715     m_fileOpenRecent->addUrl(url);
1716     openFile(url);
1717 }
1718
1719 void MainWindow::openLastFile()
1720 {
1721     KSharedConfigPtr config = KGlobal::config();
1722     KUrl::List urls = m_fileOpenRecent->urls();
1723     //WARNING: this is buggy, we get a random url, not the last one. Bug in KRecentFileAction?
1724     if (urls.isEmpty()) newFile(false);
1725     else openFile(urls.last());
1726 }
1727
1728 void MainWindow::openFile(const KUrl &url)
1729 {
1730     // Check if the document is already opened
1731     const int ct = m_timelineArea->count();
1732     bool isOpened = false;
1733     int i;
1734     for (i = 0; i < ct; i++) {
1735         TrackView *tab = (TrackView *) m_timelineArea->widget(i);
1736         KdenliveDoc *doc = tab->document();
1737         if (doc->url() == url) {
1738             isOpened = true;
1739             break;
1740         }
1741     }
1742     if (isOpened) {
1743         m_timelineArea->setCurrentIndex(i);
1744         return;
1745     }
1746
1747     // Check for backup file
1748     QList<KAutoSaveFile *> staleFiles = KAutoSaveFile::staleFiles(url);
1749     if (!staleFiles.isEmpty()) {
1750         if (KMessageBox::questionYesNo(this,
1751                                        i18n("Auto-saved files exist. Do you want to recover them now?"),
1752                                        i18n("File Recovery"),
1753                                        KGuiItem(i18n("Recover")), KGuiItem(i18n("Don't recover"))) == KMessageBox::Yes) {
1754             recoverFiles(staleFiles);
1755             return;
1756         } else {
1757             // remove the stale files
1758             foreach(KAutoSaveFile *stale, staleFiles) {
1759                 stale->open(QIODevice::ReadWrite);
1760                 delete stale;
1761             }
1762         }
1763     }
1764     if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
1765     m_messageLabel->setMessage(i18n("Opening file %1", url.path()), InformationMessage);
1766     m_messageLabel->repaint();
1767     doOpenFile(url, NULL);
1768 }
1769
1770 void MainWindow::doOpenFile(const KUrl &url, KAutoSaveFile *stale)
1771 {
1772     if (!m_timelineArea->isEnabled()) return;
1773     m_fileRevert->setEnabled(true);
1774     KdenliveDoc *doc = new KdenliveDoc(url, KdenliveSettings::defaultprojectfolder(), m_commandStack, KdenliveSettings::default_profile(), QPoint(KdenliveSettings::videotracks(), KdenliveSettings::audiotracks()), m_projectMonitor->render, this);
1775     if (stale == NULL) {
1776         stale = new KAutoSaveFile(url, doc);
1777         doc->m_autosave = stale;
1778     } else {
1779         doc->m_autosave = stale;
1780         doc->setUrl(stale->managedFile());
1781         doc->setModified(true);
1782         stale->setParent(doc);
1783     }
1784     connectDocumentInfo(doc);
1785     bool ok;
1786     TrackView *trackView = new TrackView(doc, &ok, this);
1787     m_timelineArea->setCurrentIndex(m_timelineArea->addTab(trackView, KIcon("kdenlive"), doc->description()));
1788     if (!ok) {
1789         m_timelineArea->setEnabled(false);
1790         m_projectList->setEnabled(false);
1791         KMessageBox::sorry(this, i18n("Cannot open file %1.\nProject is corrupted.", url.path()));
1792         slotGotProgressInfo(QString(), -1);
1793         newFile(false, true);
1794         return;
1795     }
1796     m_timelineArea->setTabToolTip(m_timelineArea->currentIndex(), doc->url().path());
1797     trackView->setDuration(trackView->duration());
1798     trackView->projectView()->initCursorPos(m_projectMonitor->render->seekPosition().frames(doc->fps()));
1799
1800     if (m_timelineArea->count() > 1) m_timelineArea->setTabBarHidden(false);
1801     slotGotProgressInfo(QString(), -1);
1802     m_projectMonitor->adjustRulerSize(trackView->duration());
1803     m_projectMonitor->slotZoneMoved(trackView->inPoint(), trackView->outPoint());
1804     m_clipMonitor->refreshMonitor(true);
1805 }
1806
1807 void MainWindow::recoverFiles(QList<KAutoSaveFile *> staleFiles)
1808 {
1809     if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
1810     foreach(KAutoSaveFile *stale, staleFiles) {
1811         /*if (!stale->open(QIODevice::QIODevice::ReadOnly)) {
1812                   // show an error message; we could not steal the lockfile
1813                   // maybe another application got to the file before us?
1814                   delete stale;
1815                   continue;
1816         }*/
1817         kDebug() << "// OPENING RECOVERY: " << stale->fileName() << "\nMANAGED: " << stale->managedFile().path();
1818         // the stalefiles also contain ".lock" files so we must ignore them... bug in KAutoSaveFile?
1819         if (!stale->fileName().endsWith(".lock")) doOpenFile(KUrl(stale->fileName()), stale);
1820         else KIO::NetAccess::del(KUrl(stale->fileName()), this);
1821     }
1822 }
1823
1824 void MainWindow::parseProfiles(const QString &mltPath)
1825 {
1826     //KdenliveSettings::setDefaulttmpfolder();
1827     if (!mltPath.isEmpty()) {
1828         KdenliveSettings::setMltpath(mltPath + "/share/mlt/profiles/");
1829         KdenliveSettings::setRendererpath(mltPath + "/bin/melt");
1830     }
1831
1832     if (KdenliveSettings::mltpath().isEmpty())
1833         KdenliveSettings::setMltpath(QString(MLT_PREFIX) + QString("/share/mlt/profiles/"));
1834
1835     if (KdenliveSettings::rendererpath().isEmpty() || KdenliveSettings::rendererpath().endsWith("inigo")) {
1836         QString meltPath = QString(MLT_PREFIX) + QString("/bin/melt");
1837         if (!QFile::exists(meltPath))
1838             meltPath = KStandardDirs::findExe("melt");
1839         KdenliveSettings::setRendererpath(meltPath);
1840     }
1841
1842     if (KdenliveSettings::rendererpath().isEmpty()) {
1843         // Cannot find the MLT melt renderer, ask for location
1844         KUrlRequesterDialog *getUrl = new KUrlRequesterDialog(QString(), i18n("Cannot find the melt program required for rendering (part of MLT)"), this);
1845         if (getUrl->exec() == QDialog::Rejected) {
1846             ::exit(0);
1847         }
1848         KUrl rendererPath = getUrl->selectedUrl();
1849         delete getUrl;
1850         if (rendererPath.isEmpty()) ::exit(0);
1851         KdenliveSettings::setRendererpath(rendererPath.path());
1852     }
1853
1854     QStringList profilesFilter;
1855     profilesFilter << "*";
1856     QStringList profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
1857     if (profilesList.isEmpty()) {
1858         // Cannot find MLT path, try finding melt
1859         QString profilePath = KdenliveSettings::rendererpath();
1860         if (!profilePath.isEmpty()) {
1861             profilePath = profilePath.section('/', 0, -3);
1862             KdenliveSettings::setMltpath(profilePath + "/share/mlt/profiles/");
1863             profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
1864         }
1865         if (profilesList.isEmpty()) {
1866             // Cannot find the MLT profiles, ask for location
1867             KUrlRequesterDialog *getUrl = new KUrlRequesterDialog(KdenliveSettings::mltpath(), i18n("Cannot find your MLT profiles, please give the path"), this);
1868             getUrl->fileDialog()->setMode(KFile::Directory);
1869             if (getUrl->exec() == QDialog::Rejected) {
1870                 ::exit(0);
1871             }
1872             KUrl mltPath = getUrl->selectedUrl();
1873             delete getUrl;
1874             if (mltPath.isEmpty()) ::exit(0);
1875             KdenliveSettings::setMltpath(mltPath.path(KUrl::AddTrailingSlash));
1876             profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
1877         }
1878     }
1879
1880     kDebug() << "RESULTING MLT PATH: " << KdenliveSettings::mltpath();
1881
1882     // Parse again MLT profiles to build a list of available video formats
1883     if (profilesList.isEmpty()) parseProfiles();
1884 }
1885
1886
1887 void MainWindow::slotEditProfiles()
1888 {
1889     ProfilesDialog *w = new ProfilesDialog;
1890     if (w->exec() == QDialog::Accepted) {
1891         KdenliveSettingsDialog* d = static_cast <KdenliveSettingsDialog*>(KConfigDialog::exists("settings"));
1892         if (d) d->checkProfile();
1893     }
1894     delete w;
1895 }
1896
1897 void MainWindow::slotDetectAudioDriver()
1898 {
1899     /* WARNING: do not use this method because sometimes detects wrong driver (pulse instead of alsa),
1900     leading to no audio output, see bug #934 */
1901
1902     //decide which audio driver is really best, in some cases SDL is wrong
1903     if (KdenliveSettings::audiodrivername().isEmpty()) {
1904         QString driver;
1905         KProcess readProcess;
1906         //PulseAudio needs to be selected if it exists, the ALSA pulse pcm device is not fast enough.
1907         if (!KStandardDirs::findExe("pactl").isEmpty()) {
1908             readProcess.setOutputChannelMode(KProcess::OnlyStdoutChannel);
1909             readProcess.setProgram("pactl", QStringList() << "stat");
1910             readProcess.execute(2000); // Kill it after 2 seconds
1911
1912             QString result = QString(readProcess.readAllStandardOutput());
1913             kDebug() << "// / / / / / READING PACTL: ";
1914             kDebug() << result;
1915             if (!result.isEmpty()) {
1916                 driver = "pulse";
1917                 kDebug() << "// / / / / PULSEAUDIO DETECTED";
1918             }
1919         }
1920         //put others here
1921         KdenliveSettings::setAutoaudiodrivername(driver);
1922     }
1923 }
1924
1925 void MainWindow::slotEditProjectSettings()
1926 {
1927     QPoint p = m_activeDocument->getTracksCount();
1928     ProjectSettings *w = new ProjectSettings(m_projectList, m_activeTimeline->projectView()->extractTransitionsLumas(), p.x(), p.y(), m_activeDocument->projectFolder().path(), true, !m_activeDocument->isModified(), this);
1929
1930     if (w->exec() == QDialog::Accepted) {
1931         QString profile = w->selectedProfile();
1932         m_activeDocument->setProjectFolder(w->selectedFolder());
1933         if (m_renderWidget) m_renderWidget->setDocumentPath(w->selectedFolder().path(KUrl::AddTrailingSlash));
1934         if (KdenliveSettings::videothumbnails() != w->enableVideoThumbs()) slotSwitchVideoThumbs();
1935         if (KdenliveSettings::audiothumbnails() != w->enableAudioThumbs()) slotSwitchAudioThumbs();
1936         if (m_activeDocument->profilePath() != profile) {
1937             // Profile was changed
1938             double dar = m_activeDocument->dar();
1939
1940             // Deselect current effect / transition
1941             m_effectStack->slotClipItemSelected(NULL, 0);
1942             m_transitionConfig->slotTransitionItemSelected(NULL, 0, QPoint(), false);
1943             m_clipMonitor->slotSetXml(NULL);
1944             bool updateFps = m_activeDocument->setProfilePath(profile);
1945             KdenliveSettings::setCurrent_profile(profile);
1946             KdenliveSettings::setProject_fps(m_activeDocument->fps());
1947             setCaption(m_activeDocument->description(), m_activeDocument->isModified());
1948
1949             m_activeDocument->clipManager()->clearUnusedProducers();
1950             m_monitorManager->resetProfiles(m_activeDocument->timecode());
1951
1952             m_transitionConfig->updateProjectFormat(m_activeDocument->mltProfile(), m_activeDocument->timecode(), m_activeDocument->tracksList());
1953             m_effectStack->updateProjectFormat(m_activeDocument->mltProfile(), m_activeDocument->timecode());
1954             m_projectList->updateProjectFormat(m_activeDocument->timecode());
1955             if (m_renderWidget) m_renderWidget->setProfile(m_activeDocument->mltProfile());
1956             m_timelineArea->setTabText(m_timelineArea->currentIndex(), m_activeDocument->description());
1957             //m_activeDocument->clipManager()->resetProducersList(m_projectMonitor->render->producersList());
1958             if (dar != m_activeDocument->dar()) m_projectList->reloadClipThumbnails();
1959             if (updateFps) m_activeTimeline->updateProjectFps();
1960             m_activeDocument->setModified(true);
1961             m_commandStack->activeStack()->clear();
1962             //Update the mouse position display so it will display in DF/NDF format by default based on the project setting.
1963             slotUpdateMousePosition(0);
1964             // We need to desactivate & reactivate monitors to get a refresh
1965             //m_monitorManager->switchMonitors();
1966         }
1967     }
1968     delete w;
1969 }
1970
1971
1972 void MainWindow::slotRenderProject()
1973 {
1974     if (!m_renderWidget) {
1975         QString projectfolder = m_activeDocument ? m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash) : KdenliveSettings::defaultprojectfolder();
1976         m_renderWidget = new RenderWidget(projectfolder, this);
1977         connect(m_renderWidget, SIGNAL(shutdown()), this, SLOT(slotShutdown()));
1978         connect(m_renderWidget, SIGNAL(selectedRenderProfile(const QString &, const QString &, const QString &, const QString&)), this, SLOT(slotSetDocumentRenderProfile(const QString &, const QString &, const QString &, const QString&)));
1979         connect(m_renderWidget, SIGNAL(prepareRenderingData(bool, bool, const QString&)), this, SLOT(slotPrepareRendering(bool, bool, const QString&)));
1980         connect(m_renderWidget, SIGNAL(abortProcess(const QString &)), this, SIGNAL(abortRenderJob(const QString &)));
1981         connect(m_renderWidget, SIGNAL(openDvdWizard(const QString &, const QString &)), this, SLOT(slotDvdWizard(const QString &, const QString &)));
1982         if (m_activeDocument) {
1983             m_renderWidget->setProfile(m_activeDocument->mltProfile());
1984             m_renderWidget->setGuides(m_activeDocument->guidesXml(), m_activeDocument->projectDuration());
1985             m_renderWidget->setDocumentPath(m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash));
1986             m_renderWidget->setRenderProfile(m_activeDocument->getDocumentProperty("renderdestination"), m_activeDocument->getDocumentProperty("rendercategory"), m_activeDocument->getDocumentProperty("renderprofile"), m_activeDocument->getDocumentProperty("renderurl"));
1987         }
1988     }
1989     slotCheckRenderStatus();
1990     /*TrackView *currentTab = (TrackView *) m_timelineArea->currentWidget();
1991     if (currentTab) m_renderWidget->setTimeline(currentTab);
1992     m_renderWidget->setDocument(m_activeDocument);*/
1993     m_renderWidget->show();
1994     m_renderWidget->showNormal();
1995
1996     // What are the following lines supposed to do?
1997     //m_activeTimeline->tracksNumber();
1998     //m_renderWidget->enableAudio(false);
1999     //m_renderWidget->export_audio;
2000 }
2001
2002 void MainWindow::slotCheckRenderStatus()
2003 {
2004     // Make sure there are no missing clips
2005     if (m_renderWidget)
2006         m_renderWidget->missingClips(m_projectList->hasMissingClips());
2007 }
2008
2009 void MainWindow::setRenderingProgress(const QString &url, int progress)
2010 {
2011     if (m_renderWidget)
2012         m_renderWidget->setRenderJob(url, progress);
2013 }
2014
2015 void MainWindow::setRenderingFinished(const QString &url, int status, const QString &error)
2016 {
2017     if (m_renderWidget)
2018         m_renderWidget->setRenderStatus(url, status, error);
2019 }
2020
2021 void MainWindow::slotCleanProject()
2022 {
2023     if (KMessageBox::warningContinueCancel(this, i18n("This will remove all unused clips from your project."), i18n("Clean up project")) == KMessageBox::Cancel) return;
2024     m_projectList->cleanup();
2025 }
2026
2027 void MainWindow::slotUpdateMousePosition(int pos)
2028 {
2029     if (m_activeDocument)
2030         switch (m_timecodeFormat->currentIndex()) {
2031         case 0:
2032             statusBar()->changeItem(m_activeDocument->timecode().getTimecodeFromFrames(pos), ID_TIMELINE_POS);
2033             break;
2034         default:
2035             statusBar()->changeItem(QString::number(pos), ID_TIMELINE_POS);
2036         }
2037 }
2038
2039 void MainWindow::slotUpdateDocumentState(bool modified)
2040 {
2041     if (!m_activeDocument) return;
2042     setCaption(m_activeDocument->description(), modified);
2043     m_saveAction->setEnabled(modified);
2044     if (modified) {
2045         m_timelineArea->setTabTextColor(m_timelineArea->currentIndex(), palette().color(QPalette::Link));
2046         m_timelineArea->setTabIcon(m_timelineArea->currentIndex(), KIcon("document-save"));
2047     } else {
2048         m_timelineArea->setTabTextColor(m_timelineArea->currentIndex(), palette().color(QPalette::Text));
2049         m_timelineArea->setTabIcon(m_timelineArea->currentIndex(), KIcon("kdenlive"));
2050     }
2051 }
2052
2053 void MainWindow::connectDocumentInfo(KdenliveDoc *doc)
2054 {
2055     if (m_activeDocument) {
2056         if (m_activeDocument == doc) return;
2057         disconnect(m_activeDocument, SIGNAL(progressInfo(const QString &, int)), this, SLOT(slotGotProgressInfo(const QString &, int)));
2058     }
2059     connect(doc, SIGNAL(progressInfo(const QString &, int)), this, SLOT(slotGotProgressInfo(const QString &, int)));
2060 }
2061
2062 void MainWindow::connectDocument(TrackView *trackView, KdenliveDoc *doc)   //changed
2063 {
2064     //m_projectMonitor->stop();
2065     m_closeAction->setEnabled(m_timelineArea->count() > 1);
2066     kDebug() << "///////////////////   CONNECTING DOC TO PROJECT VIEW ////////////////";
2067     if (m_activeDocument) {
2068         if (m_activeDocument == doc) return;
2069         if (m_activeTimeline) {
2070             disconnect(m_projectMonitor, SIGNAL(renderPosition(int)), m_activeTimeline, SLOT(moveCursorPos(int)));
2071             disconnect(m_projectMonitor, SIGNAL(zoneUpdated(QPoint)), m_activeTimeline, SLOT(slotSetZone(QPoint)));
2072             disconnect(m_projectMonitor, SIGNAL(durationChanged(int)), m_activeTimeline, SLOT(setDuration(int)));
2073             disconnect(m_projectMonitor, SIGNAL(zoneUpdated(QPoint)), m_activeDocument, SLOT(setModified()));
2074             disconnect(m_clipMonitor, SIGNAL(zoneUpdated(QPoint)), m_activeDocument, SLOT(setModified()));
2075             disconnect(m_projectList, SIGNAL(projectModified()), m_activeDocument, SLOT(setModified()));
2076             disconnect(m_projectMonitor->render, SIGNAL(refreshDocumentProducers()), m_activeDocument, SLOT(checkProjectClips()));
2077
2078             disconnect(m_activeDocument, SIGNAL(guidesUpdated()), this, SLOT(slotGuidesUpdated()));
2079             disconnect(m_activeDocument, SIGNAL(addProjectClip(DocClipBase *, bool)), m_projectList, SLOT(slotAddClip(DocClipBase *, bool)));
2080             disconnect(m_activeDocument, SIGNAL(resetProjectList()), m_projectList, SLOT(slotResetProjectList()));
2081             disconnect(m_activeDocument, SIGNAL(signalDeleteProjectClip(const QString &)), m_projectList, SLOT(slotDeleteClip(const QString &)));
2082             disconnect(m_activeDocument, SIGNAL(updateClipDisplay(const QString &)), m_projectList, SLOT(slotUpdateClip(const QString &)));
2083             disconnect(m_activeDocument, SIGNAL(selectLastAddedClip(const QString &)), m_projectList, SLOT(slotSelectClip(const QString &)));
2084             disconnect(m_activeDocument, SIGNAL(deleteTimelineClip(const QString &)), m_activeTimeline, SLOT(slotDeleteClip(const QString &)));
2085             disconnect(m_activeTimeline->projectView(), SIGNAL(clipItemSelected(ClipItem*, int)), m_effectStack, SLOT(slotClipItemSelected(ClipItem*, int)));
2086             disconnect(m_activeTimeline->projectView(), SIGNAL(clipItemSelected(ClipItem*, int)), this, SLOT(slotActivateEffectStackView()));
2087             disconnect(m_activeTimeline->projectView(), SIGNAL(transitionItemSelected(Transition*, int, QPoint, bool)), m_transitionConfig, SLOT(slotTransitionItemSelected(Transition*, int, QPoint, bool)));
2088             disconnect(m_activeTimeline->projectView(), SIGNAL(transitionItemSelected(Transition*, int, QPoint, bool)), this, SLOT(slotActivateTransitionView(Transition *)));
2089             disconnect(m_activeTimeline->projectView(), SIGNAL(playMonitor()), m_projectMonitor, SLOT(slotPlay()));
2090             disconnect(m_activeTimeline->projectView(), SIGNAL(displayMessage(const QString&, MessageType)), m_messageLabel, SLOT(setMessage(const QString&, MessageType)));
2091             disconnect(m_activeTimeline->projectView(), SIGNAL(showClipFrame(DocClipBase *, QPoint, const int)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *, QPoint, const int)));
2092             disconnect(m_activeTimeline, SIGNAL(cursorMoved()), m_projectMonitor, SLOT(activateMonitor()));
2093             disconnect(m_activeTimeline, SIGNAL(insertTrack(int)), this, SLOT(slotInsertTrack(int)));
2094             disconnect(m_activeTimeline, SIGNAL(deleteTrack(int)), this, SLOT(slotDeleteTrack(int)));
2095             disconnect(m_activeTimeline, SIGNAL(configTrack(int)), this, SLOT(slotConfigTrack(int)));
2096             disconnect(m_activeDocument, SIGNAL(docModified(bool)), this, SLOT(slotUpdateDocumentState(bool)));
2097             disconnect(m_effectStack, SIGNAL(updateClipEffect(ClipItem*, QDomElement, QDomElement, int)), m_activeTimeline->projectView(), SLOT(slotUpdateClipEffect(ClipItem*, QDomElement, QDomElement, int)));
2098             disconnect(m_effectStack, SIGNAL(removeEffect(ClipItem*, QDomElement)), m_activeTimeline->projectView(), SLOT(slotDeleteEffect(ClipItem*, QDomElement)));
2099             disconnect(m_effectStack, SIGNAL(changeEffectState(ClipItem*, int, bool)), m_activeTimeline->projectView(), SLOT(slotChangeEffectState(ClipItem*, int, bool)));
2100             disconnect(m_effectStack, SIGNAL(changeEffectPosition(ClipItem*, int, int)), m_activeTimeline->projectView(), SLOT(slotChangeEffectPosition(ClipItem*, int, int)));
2101             disconnect(m_effectStack, SIGNAL(refreshEffectStack(ClipItem*)), m_activeTimeline->projectView(), SLOT(slotRefreshEffects(ClipItem*)));
2102             disconnect(m_effectStack, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
2103             disconnect(m_transitionConfig, SIGNAL(transitionUpdated(Transition *, QDomElement)), m_activeTimeline->projectView() , SLOT(slotTransitionUpdated(Transition *, QDomElement)));
2104             disconnect(m_transitionConfig, SIGNAL(seekTimeline(int)), m_activeTimeline->projectView() , SLOT(setCursorPos(int)));
2105             disconnect(m_activeTimeline->projectView(), SIGNAL(activateDocumentMonitor()), m_projectMonitor, SLOT(activateMonitor()));
2106             disconnect(m_activeTimeline, SIGNAL(zoneMoved(int, int)), this, SLOT(slotZoneMoved(int, int)));
2107             disconnect(m_projectList, SIGNAL(loadingIsOver()), m_activeTimeline->projectView(), SLOT(slotUpdateAllThumbs()));
2108             disconnect(m_projectList, SIGNAL(displayMessage(const QString&, int)), this, SLOT(slotGotProgressInfo(const QString&, int)));
2109             disconnect(m_projectList, SIGNAL(updateRenderStatus()), this, SLOT(slotCheckRenderStatus()));
2110             disconnect(m_projectList, SIGNAL(clipNeedsReload(const QString&, bool)), m_activeTimeline->projectView(), SLOT(slotUpdateClip(const QString &, bool)));
2111             m_effectStack->clear();
2112         }
2113         //m_activeDocument->setRenderer(NULL);
2114         disconnect(m_projectList, SIGNAL(clipSelected(DocClipBase *)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *)));
2115         disconnect(m_projectList, SIGNAL(refreshClip()), m_clipMonitor, SLOT(refreshMonitor()));
2116         m_clipMonitor->stop();
2117     }
2118     KdenliveSettings::setCurrent_profile(doc->profilePath());
2119     KdenliveSettings::setProject_fps(doc->fps());
2120     m_monitorManager->resetProfiles(doc->timecode());
2121     m_projectList->setDocument(doc);
2122     m_transitionConfig->updateProjectFormat(doc->mltProfile(), doc->timecode(), doc->tracksList());
2123     m_effectStack->updateProjectFormat(doc->mltProfile(), doc->timecode());
2124     connect(m_projectList, SIGNAL(clipSelected(DocClipBase *, QPoint)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *, QPoint)));
2125     connect(m_projectList, SIGNAL(refreshClip()), m_clipMonitor, SLOT(refreshMonitor()));
2126     connect(m_projectList, SIGNAL(clipNeedsReload(const QString&, bool)), trackView->projectView(), SLOT(slotUpdateClip(const QString &, bool)));
2127
2128     connect(m_projectList, SIGNAL(projectModified()), doc, SLOT(setModified()));
2129     connect(m_projectList, SIGNAL(clipNameChanged(const QString, const QString)), trackView->projectView(), SLOT(clipNameChanged(const QString, const QString)));
2130
2131     connect(m_projectList, SIGNAL(findInTimeline(const QString&)), this, SLOT(slotClipInTimeline(const QString&)));
2132
2133
2134     connect(trackView, SIGNAL(cursorMoved()), m_projectMonitor, SLOT(activateMonitor()));
2135     connect(trackView, SIGNAL(insertTrack(int)), this, SLOT(slotInsertTrack(int)));
2136     connect(trackView, SIGNAL(deleteTrack(int)), this, SLOT(slotDeleteTrack(int)));
2137     connect(trackView, SIGNAL(configTrack(int)), this, SLOT(slotConfigTrack(int)));
2138     connect(trackView, SIGNAL(updateTracksInfo()), this, SLOT(slotUpdateTrackInfo()));
2139     connect(trackView, SIGNAL(mousePosition(int)), this, SLOT(slotUpdateMousePosition(int)));
2140     connect(m_projectMonitor, SIGNAL(renderPosition(int)), trackView, SLOT(moveCursorPos(int)));
2141     connect(m_projectMonitor, SIGNAL(zoneUpdated(QPoint)), trackView, SLOT(slotSetZone(QPoint)));
2142     connect(m_clipMonitor, SIGNAL(zoneUpdated(QPoint)), m_projectList, SLOT(slotUpdateClipCut(QPoint)));
2143     connect(m_projectMonitor, SIGNAL(zoneUpdated(QPoint)), doc, SLOT(setModified()));
2144     connect(m_clipMonitor, SIGNAL(zoneUpdated(QPoint)), doc, SLOT(setModified()));
2145     connect(m_projectMonitor, SIGNAL(durationChanged(int)), trackView, SLOT(setDuration(int)));
2146     connect(m_projectMonitor->render, SIGNAL(refreshDocumentProducers()), doc, SLOT(checkProjectClips()));
2147
2148     connect(doc, SIGNAL(addProjectClip(DocClipBase *, bool)), m_projectList, SLOT(slotAddClip(DocClipBase *, bool)));
2149     connect(doc, SIGNAL(resetProjectList()), m_projectList, SLOT(slotResetProjectList()));
2150     connect(doc, SIGNAL(signalDeleteProjectClip(const QString &)), m_projectList, SLOT(slotDeleteClip(const QString &)));
2151     connect(doc, SIGNAL(updateClipDisplay(const QString &)), m_projectList, SLOT(slotUpdateClip(const QString &)));
2152     connect(doc, SIGNAL(selectLastAddedClip(const QString &)), m_projectList, SLOT(slotSelectClip(const QString &)));
2153
2154     connect(doc, SIGNAL(deleteTimelineClip(const QString &)), trackView, SLOT(slotDeleteClip(const QString &)));
2155     connect(doc, SIGNAL(docModified(bool)), this, SLOT(slotUpdateDocumentState(bool)));
2156     connect(doc, SIGNAL(guidesUpdated()), this, SLOT(slotGuidesUpdated()));
2157
2158
2159     connect(trackView->projectView(), SIGNAL(clipItemSelected(ClipItem*, int)), m_effectStack, SLOT(slotClipItemSelected(ClipItem*, int)));
2160     connect(trackView->projectView(), SIGNAL(updateClipMarkers(DocClipBase *)), this, SLOT(slotUpdateClipMarkers(DocClipBase*)));
2161
2162     connect(trackView->projectView(), SIGNAL(clipItemSelected(ClipItem*, int)), this, SLOT(slotActivateEffectStackView()));
2163     connect(trackView->projectView(), SIGNAL(transitionItemSelected(Transition*, int, QPoint, bool)), m_transitionConfig, SLOT(slotTransitionItemSelected(Transition*, int, QPoint, bool)));
2164     connect(trackView->projectView(), SIGNAL(transitionItemSelected(Transition*, int, QPoint, bool)), this, SLOT(slotActivateTransitionView(Transition *)));
2165     m_zoomSlider->setValue(doc->zoom().x());
2166     connect(trackView->projectView(), SIGNAL(zoomIn()), this, SLOT(slotZoomIn()));
2167     connect(trackView->projectView(), SIGNAL(zoomOut()), this, SLOT(slotZoomOut()));
2168     connect(trackView, SIGNAL(setZoom(int)), this, SLOT(slotSetZoom(int)));
2169     connect(trackView->projectView(), SIGNAL(displayMessage(const QString&, MessageType)), m_messageLabel, SLOT(setMessage(const QString&, MessageType)));
2170
2171     connect(trackView->projectView(), SIGNAL(showClipFrame(DocClipBase *, QPoint, const int)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *, QPoint, const int)));
2172     connect(trackView->projectView(), SIGNAL(playMonitor()), m_projectMonitor, SLOT(slotPlay()));
2173
2174
2175     connect(m_effectStack, SIGNAL(updateClipEffect(ClipItem*, QDomElement, QDomElement, int)), trackView->projectView(), SLOT(slotUpdateClipEffect(ClipItem*, QDomElement, QDomElement, int)));
2176     connect(m_effectStack, SIGNAL(updateClipRegion(ClipItem*, int, QString)), trackView->projectView(), SLOT(slotUpdateClipRegion(ClipItem*, int, QString)));
2177     connect(m_effectStack, SIGNAL(removeEffect(ClipItem*, QDomElement)), trackView->projectView(), SLOT(slotDeleteEffect(ClipItem*, QDomElement)));
2178     connect(m_effectStack, SIGNAL(changeEffectState(ClipItem*, int, bool)), trackView->projectView(), SLOT(slotChangeEffectState(ClipItem*, int, bool)));
2179     connect(m_effectStack, SIGNAL(changeEffectPosition(ClipItem*, int, int)), trackView->projectView(), SLOT(slotChangeEffectPosition(ClipItem*, int, int)));
2180     connect(m_effectStack, SIGNAL(refreshEffectStack(ClipItem*)), trackView->projectView(), SLOT(slotRefreshEffects(ClipItem*)));
2181     connect(m_transitionConfig, SIGNAL(transitionUpdated(Transition *, QDomElement)), trackView->projectView() , SLOT(slotTransitionUpdated(Transition *, QDomElement)));
2182     connect(m_transitionConfig, SIGNAL(seekTimeline(int)), trackView->projectView() , SLOT(setCursorPos(int)));
2183     connect(m_effectStack, SIGNAL(seekTimeline(int)), trackView->projectView() , SLOT(setCursorPos(int)));
2184     connect(m_effectStack, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
2185
2186     connect(trackView->projectView(), SIGNAL(activateDocumentMonitor()), m_projectMonitor, SLOT(activateMonitor()));
2187     connect(trackView, SIGNAL(zoneMoved(int, int)), this, SLOT(slotZoneMoved(int, int)));
2188     connect(m_projectList, SIGNAL(loadingIsOver()), trackView->projectView(), SLOT(slotUpdateAllThumbs()));
2189     connect(m_projectList, SIGNAL(displayMessage(const QString&, int)), this, SLOT(slotGotProgressInfo(const QString&, int)));
2190     connect(m_projectList, SIGNAL(updateRenderStatus()), this, SLOT(slotCheckRenderStatus()));
2191
2192
2193     trackView->projectView()->setContextMenu(m_timelineContextMenu, m_timelineContextClipMenu, m_timelineContextTransitionMenu, m_clipTypeGroup, (QMenu*)(factory()->container("marker_menu", this)));
2194     m_activeTimeline = trackView;
2195     if (m_renderWidget) {
2196         slotCheckRenderStatus();
2197         m_renderWidget->setProfile(doc->mltProfile());
2198         m_renderWidget->setGuides(doc->guidesXml(), doc->projectDuration());
2199         m_renderWidget->setDocumentPath(doc->projectFolder().path(KUrl::AddTrailingSlash));
2200         m_renderWidget->setRenderProfile(doc->getDocumentProperty("renderdestination"), doc->getDocumentProperty("rendercategory"), doc->getDocumentProperty("renderprofile"), doc->getDocumentProperty("renderurl"));
2201     }
2202     //doc->setRenderer(m_projectMonitor->render);
2203     m_commandStack->setActiveStack(doc->commandStack());
2204     KdenliveSettings::setProject_display_ratio(doc->dar());
2205     //doc->clipManager()->checkAudioThumbs();
2206
2207     //m_overView->setScene(trackView->projectScene());
2208     //m_overView->scale(m_overView->width() / trackView->duration(), m_overView->height() / (50 * trackView->tracksNumber()));
2209     //m_overView->fitInView(m_overView->itemAt(0, 50), Qt::KeepAspectRatio);
2210
2211     setCaption(doc->description(), doc->isModified());
2212     m_saveAction->setEnabled(doc->isModified());
2213     m_normalEditTool->setChecked(true);
2214     m_activeDocument = doc;
2215     m_activeTimeline->updateProjectFps();
2216     m_activeDocument->checkProjectClips();
2217     if (KdenliveSettings::dropbframes()) slotUpdatePreviewSettings();
2218     //Update the mouse position display so it will display in DF/NDF format by default based on the project setting.
2219     slotUpdateMousePosition(0);
2220     // set tool to select tool
2221     m_buttonSelectTool->setChecked(true);
2222 }
2223
2224 void MainWindow::slotZoneMoved(int start, int end)
2225 {
2226     m_activeDocument->setZone(start, end);
2227     m_projectMonitor->slotZoneMoved(start, end);
2228 }
2229
2230 void MainWindow::slotGuidesUpdated()
2231 {
2232     if (m_renderWidget)
2233         m_renderWidget->setGuides(m_activeDocument->guidesXml(), m_activeDocument->projectDuration());
2234 }
2235
2236 void MainWindow::slotEditKeys()
2237 {
2238     KShortcutsDialog dialog(KShortcutsEditor::AllActions, KShortcutsEditor::LetterShortcutsAllowed, this);
2239     dialog.addCollection(actionCollection(), i18nc("general keyboard shortcuts", "General"));
2240     dialog.addCollection(m_effectsActionCollection, i18nc("effects and transitions keyboard shortcuts", "Effects & Transitions"));
2241     dialog.configure();
2242 }
2243
2244 void MainWindow::slotPreferences(int page, int option)
2245 {
2246     //An instance of your dialog could be already created and could be
2247     // cached, in which case you want to display the cached dialog
2248     // instead of creating another one
2249     if (KConfigDialog::showDialog("settings")) {
2250         KdenliveSettingsDialog* d = static_cast <KdenliveSettingsDialog*>(KConfigDialog::exists("settings"));
2251         if (page != -1) d->showPage(page, option);
2252         return;
2253     }
2254
2255     // KConfigDialog didn't find an instance of this dialog, so lets
2256     // create it :
2257     KdenliveSettingsDialog* dialog = new KdenliveSettingsDialog(this);
2258     connect(dialog, SIGNAL(settingsChanged(const QString&)), this, SLOT(updateConfiguration()));
2259     //connect(dialog, SIGNAL(doResetProfile()), this, SLOT(slotDetectAudioDriver()));
2260     connect(dialog, SIGNAL(doResetProfile()), m_monitorManager, SLOT(slotResetProfiles()));
2261     connect(dialog, SIGNAL(updatePreviewSettings()), this, SLOT(slotUpdatePreviewSettings()));
2262 #ifndef Q_WS_MAC
2263     connect(dialog, SIGNAL(updateCaptureFolder()), m_recMonitor, SLOT(slotUpdateCaptureFolder()));
2264 #endif
2265     //connect(dialog, SIGNAL(updatePreviewSettings()), this, SLOT(slotUpdatePreviewSettings()));
2266     dialog->show();
2267     if (page != -1) dialog->showPage(page, option);
2268 }
2269
2270 void MainWindow::slotUpdatePreviewSettings()
2271 {
2272     if (m_activeDocument) {
2273         m_clipMonitor->slotSetXml(NULL);
2274         m_activeDocument->updatePreviewSettings();
2275     }
2276 }
2277
2278 void MainWindow::updateConfiguration()
2279 {
2280     //TODO: we should apply settings to all projects, not only the current one
2281     if (m_activeTimeline) {
2282         m_activeTimeline->refresh();
2283         m_activeTimeline->projectView()->checkAutoScroll();
2284         m_activeTimeline->projectView()->checkTrackHeight();
2285         if (m_activeDocument)
2286             m_activeDocument->clipManager()->checkAudioThumbs();
2287     }
2288     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
2289     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
2290     m_buttonAutomaticSplitAudio->setChecked(KdenliveSettings::splitaudio());
2291
2292     // Update list of transcoding profiles
2293     loadTranscoders();
2294 #ifndef NO_JOGSHUTTLE
2295     activateShuttleDevice();
2296 #endif /* NO_JOGSHUTTLE */
2297
2298 }
2299
2300 void MainWindow::slotSwitchSplitAudio()
2301 {
2302     KdenliveSettings::setSplitaudio(!KdenliveSettings::splitaudio());
2303     m_buttonAutomaticSplitAudio->setChecked(KdenliveSettings::splitaudio());
2304 }
2305
2306 void MainWindow::slotSwitchVideoThumbs()
2307 {
2308     KdenliveSettings::setVideothumbnails(!KdenliveSettings::videothumbnails());
2309     if (m_activeTimeline)
2310         m_activeTimeline->projectView()->slotUpdateAllThumbs();
2311     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
2312 }
2313
2314 void MainWindow::slotSwitchAudioThumbs()
2315 {
2316     KdenliveSettings::setAudiothumbnails(!KdenliveSettings::audiothumbnails());
2317     if (m_activeTimeline) {
2318         m_activeTimeline->refresh();
2319         m_activeTimeline->projectView()->checkAutoScroll();
2320         if (m_activeDocument)
2321             m_activeDocument->clipManager()->checkAudioThumbs();
2322     }
2323     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
2324 }
2325
2326 void MainWindow::slotSwitchMarkersComments()
2327 {
2328     KdenliveSettings::setShowmarkers(!KdenliveSettings::showmarkers());
2329     if (m_activeTimeline)
2330         m_activeTimeline->refresh();
2331     m_buttonShowMarkers->setChecked(KdenliveSettings::showmarkers());
2332 }
2333
2334 void MainWindow::slotSwitchSnap()
2335 {
2336     KdenliveSettings::setSnaptopoints(!KdenliveSettings::snaptopoints());
2337     m_buttonSnap->setChecked(KdenliveSettings::snaptopoints());
2338 }
2339
2340
2341 void MainWindow::slotDeleteItem()
2342 {
2343     if (QApplication::focusWidget() &&
2344         QApplication::focusWidget()->parentWidget() &&
2345         QApplication::focusWidget()->parentWidget()->parentWidget() &&
2346         QApplication::focusWidget()->parentWidget()->parentWidget() == m_projectListDock) {
2347         m_projectList->slotRemoveClip();
2348
2349     } else {
2350         QWidget *widget = QApplication::focusWidget();
2351         while (widget) {
2352             if (widget == m_effectStackDock) {
2353                 m_effectStack->slotItemDel();
2354                 return;
2355             }
2356             widget = widget->parentWidget();
2357         }
2358
2359         // effect stack has no focus
2360         if (m_activeTimeline)
2361             m_activeTimeline->projectView()->deleteSelectedClips();
2362     }
2363 }
2364
2365 void MainWindow::slotUpdateClipMarkers(DocClipBase *clip)
2366 {
2367     if (m_clipMonitor->isActive())
2368         m_clipMonitor->checkOverlay();
2369     m_clipMonitor->updateMarkers(clip);
2370 }
2371
2372 void MainWindow::slotAddClipMarker()
2373 {
2374     DocClipBase *clip = NULL;
2375     GenTime pos;
2376     if (m_projectMonitor->isActive()) {
2377         if (m_activeTimeline) {
2378             ClipItem *item = m_activeTimeline->projectView()->getActiveClipUnderCursor();
2379             if (item) {
2380                 pos = GenTime((int)((m_projectMonitor->position() - item->startPos() + item->cropStart()).frames(m_activeDocument->fps()) * item->speed() + 0.5), m_activeDocument->fps());
2381                 clip = item->baseClip();
2382             }
2383         }
2384     } else {
2385         clip = m_clipMonitor->activeClip();
2386         pos = m_clipMonitor->position();
2387     }
2388     if (!clip) {
2389         m_messageLabel->setMessage(i18n("Cannot find clip to add marker"), ErrorMessage);
2390         return;
2391     }
2392     QString id = clip->getId();
2393     CommentedTime marker(pos, i18n("Marker"));
2394     MarkerDialog d(clip, marker, m_activeDocument->timecode(), i18n("Add Marker"), this);
2395     if (d.exec() == QDialog::Accepted)
2396         m_activeTimeline->projectView()->slotAddClipMarker(id, d.newMarker().time(), d.newMarker().comment());
2397 }
2398
2399 void MainWindow::slotDeleteClipMarker()
2400 {
2401     DocClipBase *clip = NULL;
2402     GenTime pos;
2403     if (m_projectMonitor->isActive()) {
2404         if (m_activeTimeline) {
2405             ClipItem *item = m_activeTimeline->projectView()->getActiveClipUnderCursor();
2406             if (item) {
2407                 pos = (m_projectMonitor->position() - item->startPos() + item->cropStart()) / item->speed();
2408                 clip = item->baseClip();
2409             }
2410         }
2411     } else {
2412         clip = m_clipMonitor->activeClip();
2413         pos = m_clipMonitor->position();
2414     }
2415     if (!clip) {
2416         m_messageLabel->setMessage(i18n("Cannot find clip to remove marker"), ErrorMessage);
2417         return;
2418     }
2419
2420     QString id = clip->getId();
2421     QString comment = clip->markerComment(pos);
2422     if (comment.isEmpty()) {
2423         m_messageLabel->setMessage(i18n("No marker found at cursor time"), ErrorMessage);
2424         return;
2425     }
2426     m_activeTimeline->projectView()->slotDeleteClipMarker(comment, id, pos);
2427 }
2428
2429 void MainWindow::slotDeleteAllClipMarkers()
2430 {
2431     DocClipBase *clip = NULL;
2432     if (m_projectMonitor->isActive()) {
2433         if (m_activeTimeline) {
2434             ClipItem *item = m_activeTimeline->projectView()->getActiveClipUnderCursor();
2435             if (item) {
2436                 clip = item->baseClip();
2437             }
2438         }
2439     } else {
2440         clip = m_clipMonitor->activeClip();
2441     }
2442     if (!clip) {
2443         m_messageLabel->setMessage(i18n("Cannot find clip to remove marker"), ErrorMessage);
2444         return;
2445     }
2446     m_activeTimeline->projectView()->slotDeleteAllClipMarkers(clip->getId());
2447 }
2448
2449 void MainWindow::slotEditClipMarker()
2450 {
2451     DocClipBase *clip = NULL;
2452     GenTime pos;
2453     if (m_projectMonitor->isActive()) {
2454         if (m_activeTimeline) {
2455             ClipItem *item = m_activeTimeline->projectView()->getActiveClipUnderCursor();
2456             if (item) {
2457                 pos = (m_projectMonitor->position() - item->startPos() + item->cropStart()) / item->speed();
2458                 clip = item->baseClip();
2459             }
2460         }
2461     } else {
2462         clip = m_clipMonitor->activeClip();
2463         pos = m_clipMonitor->position();
2464     }
2465     if (!clip) {
2466         m_messageLabel->setMessage(i18n("Cannot find clip to remove marker"), ErrorMessage);
2467         return;
2468     }
2469
2470     QString id = clip->getId();
2471     QString oldcomment = clip->markerComment(pos);
2472     if (oldcomment.isEmpty()) {
2473         m_messageLabel->setMessage(i18n("No marker found at cursor time"), ErrorMessage);
2474         return;
2475     }
2476
2477     CommentedTime marker(pos, oldcomment);
2478     MarkerDialog d(clip, marker, m_activeDocument->timecode(), i18n("Edit Marker"), this);
2479     if (d.exec() == QDialog::Accepted) {
2480         m_activeTimeline->projectView()->slotAddClipMarker(id, d.newMarker().time(), d.newMarker().comment());
2481         if (d.newMarker().time() != pos) {
2482             // remove old marker
2483             m_activeTimeline->projectView()->slotAddClipMarker(id, pos, QString());
2484         }
2485     }
2486 }
2487
2488 void MainWindow::slotAddGuide()
2489 {
2490     if (m_activeTimeline)
2491         m_activeTimeline->projectView()->slotAddGuide();
2492 }
2493
2494 void MainWindow::slotInsertSpace()
2495 {
2496     if (m_activeTimeline)
2497         m_activeTimeline->projectView()->slotInsertSpace();
2498 }
2499
2500 void MainWindow::slotRemoveSpace()
2501 {
2502     if (m_activeTimeline)
2503         m_activeTimeline->projectView()->slotRemoveSpace();
2504 }
2505
2506 void MainWindow::slotInsertTrack(int ix)
2507 {
2508     m_projectMonitor->activateMonitor();
2509     if (m_activeTimeline)
2510         m_activeTimeline->projectView()->slotInsertTrack(ix);
2511     if (m_activeDocument)
2512         m_transitionConfig->updateProjectFormat(m_activeDocument->mltProfile(), m_activeDocument->timecode(), m_activeDocument->tracksList());
2513 }
2514
2515 void MainWindow::slotDeleteTrack(int ix)
2516 {
2517     m_projectMonitor->activateMonitor();
2518     if (m_activeTimeline)
2519         m_activeTimeline->projectView()->slotDeleteTrack(ix);
2520     if (m_activeDocument)
2521         m_transitionConfig->updateProjectFormat(m_activeDocument->mltProfile(), m_activeDocument->timecode(), m_activeDocument->tracksList());
2522 }
2523
2524 void MainWindow::slotConfigTrack(int ix)
2525 {
2526     m_projectMonitor->activateMonitor();
2527     if (m_activeTimeline)
2528         m_activeTimeline->projectView()->slotConfigTracks(ix);
2529     if (m_activeDocument)
2530         m_transitionConfig->updateProjectFormat(m_activeDocument->mltProfile(), m_activeDocument->timecode(), m_activeDocument->tracksList());
2531 }
2532
2533 void MainWindow::slotEditGuide()
2534 {
2535     if (m_activeTimeline)
2536         m_activeTimeline->projectView()->slotEditGuide();
2537 }
2538
2539 void MainWindow::slotDeleteGuide()
2540 {
2541     if (m_activeTimeline)
2542         m_activeTimeline->projectView()->slotDeleteGuide();
2543 }
2544
2545 void MainWindow::slotDeleteAllGuides()
2546 {
2547     if (m_activeTimeline)
2548         m_activeTimeline->projectView()->slotDeleteAllGuides();
2549 }
2550
2551 void MainWindow::slotCutTimelineClip()
2552 {
2553     if (m_activeTimeline)
2554         m_activeTimeline->projectView()->cutSelectedClips();
2555 }
2556
2557 void MainWindow::slotInsertClipOverwrite()
2558 {
2559     if (m_activeTimeline) {
2560         QStringList data = m_clipMonitor->getZoneInfo();
2561         m_activeTimeline->projectView()->insertZoneOverwrite(data, m_activeTimeline->inPoint());
2562     }
2563 }
2564
2565 void MainWindow::slotSelectTimelineClip()
2566 {
2567     if (m_activeTimeline)
2568         m_activeTimeline->projectView()->selectClip(true);
2569 }
2570
2571 void MainWindow::slotSelectTimelineTransition()
2572 {
2573     if (m_activeTimeline)
2574         m_activeTimeline->projectView()->selectTransition(true);
2575 }
2576
2577 void MainWindow::slotDeselectTimelineClip()
2578 {
2579     if (m_activeTimeline)
2580         m_activeTimeline->projectView()->selectClip(false, true);
2581 }
2582
2583 void MainWindow::slotDeselectTimelineTransition()
2584 {
2585     if (m_activeTimeline)
2586         m_activeTimeline->projectView()->selectTransition(false, true);
2587 }
2588
2589 void MainWindow::slotSelectAddTimelineClip()
2590 {
2591     if (m_activeTimeline)
2592         m_activeTimeline->projectView()->selectClip(true, true);
2593 }
2594
2595 void MainWindow::slotSelectAddTimelineTransition()
2596 {
2597     if (m_activeTimeline)
2598         m_activeTimeline->projectView()->selectTransition(true, true);
2599 }
2600
2601 void MainWindow::slotGroupClips()
2602 {
2603     if (m_activeTimeline)
2604         m_activeTimeline->projectView()->groupClips();
2605 }
2606
2607 void MainWindow::slotUnGroupClips()
2608 {
2609     if (m_activeTimeline)
2610         m_activeTimeline->projectView()->groupClips(false);
2611 }
2612
2613 void MainWindow::slotEditItemDuration()
2614 {
2615     if (m_activeTimeline)
2616         m_activeTimeline->projectView()->editItemDuration();
2617 }
2618
2619 void MainWindow::slotAddProjectClip(KUrl url)
2620 {
2621     if (m_activeDocument)
2622         m_activeDocument->slotAddClipFile(url, QString());
2623 }
2624
2625 void MainWindow::slotAddTransition(QAction *result)
2626 {
2627     if (!result) return;
2628     QStringList info = result->data().toStringList();
2629     if (info.isEmpty()) return;
2630     QDomElement transition = transitions.getEffectByTag(info.at(1), info.at(2));
2631     if (m_activeTimeline && !transition.isNull()) {
2632         m_activeTimeline->projectView()->slotAddTransitionToSelectedClips(transition.cloneNode().toElement());
2633     }
2634 }
2635
2636 void MainWindow::slotAddVideoEffect(QAction *result)
2637 {
2638     if (!result) return;
2639     QStringList info = result->data().toStringList();
2640     if (info.isEmpty()) return;
2641     QDomElement effect = videoEffects.getEffectByTag(info.at(1), info.at(2));
2642     slotAddEffect(effect);
2643 }
2644
2645 void MainWindow::slotAddAudioEffect(QAction *result)
2646 {
2647     if (!result) return;
2648     QStringList info = result->data().toStringList();
2649     if (info.isEmpty()) return;
2650     QDomElement effect = audioEffects.getEffectByTag(info.at(1), info.at(2));
2651     slotAddEffect(effect);
2652 }
2653
2654 void MainWindow::slotAddCustomEffect(QAction *result)
2655 {
2656     if (!result) return;
2657     QStringList info = result->data().toStringList();
2658     if (info.isEmpty()) return;
2659     QDomElement effect = customEffects.getEffectByTag(info.at(1), info.at(2));
2660     slotAddEffect(effect);
2661 }
2662
2663 void MainWindow::slotZoomIn()
2664 {
2665     m_zoomSlider->setValue(m_zoomSlider->value() - 1);
2666     slotShowZoomSliderToolTip();
2667 }
2668
2669 void MainWindow::slotZoomOut()
2670 {
2671     m_zoomSlider->setValue(m_zoomSlider->value() + 1);
2672     slotShowZoomSliderToolTip();
2673 }
2674
2675 void MainWindow::slotFitZoom()
2676 {
2677     if (m_activeTimeline)
2678         m_zoomSlider->setValue(m_activeTimeline->fitZoom());
2679 }
2680
2681 void MainWindow::slotSetZoom(int value)
2682 {
2683     if (m_activeTimeline)
2684         m_activeTimeline->slotChangeZoom(value);
2685
2686     m_zoomOut->setEnabled(value < m_zoomSlider->maximum());
2687     m_zoomIn->setEnabled(value > m_zoomSlider->minimum());
2688     slotUpdateZoomSliderToolTip(value);
2689
2690     m_zoomSlider->blockSignals(true);
2691     m_zoomSlider->setValue(value);
2692     m_zoomSlider->blockSignals(false);
2693 }
2694
2695 void MainWindow::slotShowZoomSliderToolTip(int zoomlevel)
2696 {
2697     if (zoomlevel != -1)
2698         slotUpdateZoomSliderToolTip(zoomlevel);
2699
2700     QPoint global = m_zoomSlider->rect().topLeft();
2701     global.ry() += m_zoomSlider->height() / 2;
2702     QHelpEvent toolTipEvent(QEvent::ToolTip, QPoint(0, 0), m_zoomSlider->mapToGlobal(global));
2703     QApplication::sendEvent(m_zoomSlider, &toolTipEvent);
2704 }
2705
2706 void MainWindow::slotUpdateZoomSliderToolTip(int zoomlevel)
2707 {
2708     m_zoomSlider->setToolTip(i18n("Zoom Level: %1/13", (13 - zoomlevel)));
2709 }
2710
2711 void MainWindow::slotGotProgressInfo(const QString &message, int progress)
2712 {
2713     m_statusProgressBar->setValue(progress);
2714     if (progress >= 0) {
2715         if (!message.isEmpty())
2716             m_messageLabel->setMessage(message, InformationMessage);//statusLabel->setText(message);
2717         m_statusProgressBar->setVisible(true);
2718     } else if (progress == -2) {
2719         if (!message.isEmpty())
2720             m_messageLabel->setMessage(message, ErrorMessage);
2721         m_statusProgressBar->setVisible(false);
2722     } else {
2723         m_messageLabel->setMessage(QString(), DefaultMessage);
2724         m_statusProgressBar->setVisible(false);
2725     }
2726 }
2727
2728 void MainWindow::slotShowClipProperties(DocClipBase *clip)
2729 {
2730     if (clip->clipType() == TEXT) {
2731         QString titlepath = m_activeDocument->projectFolder().path(KUrl::AddTrailingSlash) + "titles/";
2732         if (!clip->getProperty("resource").isEmpty() && clip->getProperty("xmldata").isEmpty()) {
2733             // template text clip
2734
2735             // Get the list of existing templates
2736             QStringList filter;
2737             filter << "*.kdenlivetitle";
2738             QStringList templateFiles = QDir(titlepath).entryList(filter, QDir::Files);
2739
2740             QDialog *dia = new QDialog(this);
2741             Ui::TemplateClip_UI dia_ui;
2742             dia_ui.setupUi(dia);
2743             int ix = -1;
2744             const QString templatePath = clip->getProperty("resource");
2745             for (int i = 0; i < templateFiles.size(); ++i) {
2746                 dia_ui.template_list->comboBox()->addItem(templateFiles.at(i), titlepath + templateFiles.at(i));
2747                 if (templatePath == KUrl(titlepath + templateFiles.at(i)).path()) ix = i;
2748             }
2749             if (ix != -1) dia_ui.template_list->comboBox()->setCurrentIndex(ix);
2750             else dia_ui.template_list->comboBox()->insertItem(0, templatePath);
2751             dia_ui.template_list->fileDialog()->setFilter("*.kdenlivetitle");
2752             //warning: setting base directory doesn't work??
2753             KUrl startDir(titlepath);
2754             dia_ui.template_list->fileDialog()->setUrl(startDir);
2755             dia_ui.description->setText(clip->getProperty("description"));
2756             if (dia->exec() == QDialog::Accepted) {
2757                 QString textTemplate = dia_ui.template_list->comboBox()->itemData(dia_ui.template_list->comboBox()->currentIndex()).toString();
2758                 if (textTemplate.isEmpty()) textTemplate = dia_ui.template_list->comboBox()->currentText();
2759
2760                 QMap <QString, QString> newprops;
2761
2762                 if (KUrl(textTemplate).path() != templatePath) {
2763                     // The template was changed
2764                     newprops.insert("resource", textTemplate);
2765                 }
2766
2767                 if (dia_ui.description->toPlainText() != clip->getProperty("description")) {
2768                     newprops.insert("description", dia_ui.description->toPlainText());
2769                 }
2770
2771                 QString newtemplate = newprops.value("xmltemplate");
2772                 if (newtemplate.isEmpty()) newtemplate = templatePath;
2773
2774                 // template modified we need to update xmldata
2775                 QString description = newprops.value("description");
2776                 if (description.isEmpty()) description = clip->getProperty("description");
2777                 else newprops.insert("templatetext", description);
2778                 //newprops.insert("xmldata", m_projectList->generateTemplateXml(newtemplate, description).toString());
2779                 if (!newprops.isEmpty()) {
2780                     EditClipCommand *command = new EditClipCommand(m_projectList, clip->getId(), clip->properties(), newprops, true);
2781                     m_activeDocument->commandStack()->push(command);
2782                 }
2783             }
2784             delete dia;
2785             return;
2786         }
2787         QString path = clip->getProperty("resource");
2788         TitleWidget *dia_ui = new TitleWidget(KUrl(), m_activeDocument->timecode(), titlepath, m_projectMonitor->render, this);
2789         QDomDocument doc;
2790         doc.setContent(clip->getProperty("xmldata"));
2791         dia_ui->setXml(doc);
2792         if (dia_ui->exec() == QDialog::Accepted) {
2793             QMap <QString, QString> newprops;
2794             newprops.insert("xmldata", dia_ui->xml().toString());
2795             if (dia_ui->outPoint() != clip->duration().frames(m_activeDocument->fps()) - 1) {
2796                 // duration changed, we need to update duration
2797                 newprops.insert("out", QString::number(dia_ui->outPoint()));
2798             }
2799             EditClipCommand *command = new EditClipCommand(m_projectList, clip->getId(), clip->properties(), newprops, true);
2800             m_activeDocument->commandStack()->push(command);
2801             //m_activeTimeline->projectView()->slotUpdateClip(clip->getId());
2802             m_activeDocument->setModified(true);
2803         }
2804         delete dia_ui;
2805
2806         //m_activeDocument->editTextClip(clip->getProperty("xml"), clip->getId());
2807         return;
2808     }
2809     ClipProperties dia(clip, m_activeDocument->timecode(), m_activeDocument->fps(), this);
2810     connect(&dia, SIGNAL(addMarker(const QString &, GenTime, QString)), m_activeTimeline->projectView(), SLOT(slotAddClipMarker(const QString &, GenTime, QString)));
2811     if (dia.exec() == QDialog::Accepted) {
2812         QMap <QString, QString> newprops = dia.properties();
2813         if (newprops.isEmpty()) return;
2814         EditClipCommand *command = new EditClipCommand(m_projectList, clip->getId(), clip->properties(), newprops, true);
2815         m_activeDocument->commandStack()->push(command);
2816
2817         if (dia.needsTimelineRefresh()) {
2818             // update clip occurences in timeline
2819             m_activeTimeline->projectView()->slotUpdateClip(clip->getId(), dia.needsTimelineReload());
2820         }
2821     }
2822 }
2823
2824
2825 void MainWindow::slotShowClipProperties(QList <DocClipBase *> cliplist, QMap<QString, QString> commonproperties)
2826 {
2827     ClipProperties dia(cliplist, m_activeDocument->timecode(), commonproperties, this);
2828     if (dia.exec() == QDialog::Accepted) {
2829         QUndoCommand *command = new QUndoCommand();
2830         command->setText(i18n("Edit clips"));
2831         for (int i = 0; i < cliplist.count(); i++) {
2832             DocClipBase *clip = cliplist.at(i);
2833             new EditClipCommand(m_projectList, clip->getId(), clip->properties(), dia.properties(), true, command);
2834         }
2835         m_activeDocument->commandStack()->push(command);
2836         for (int i = 0; i < cliplist.count(); i++)
2837             m_activeTimeline->projectView()->slotUpdateClip(cliplist.at(i)->getId(), dia.needsTimelineReload());
2838     }
2839 }
2840
2841 void MainWindow::customEvent(QEvent* e)
2842 {
2843     if (e->type() == QEvent::User)
2844         m_messageLabel->setMessage(static_cast <MltErrorEvent *>(e)->message(), MltError);
2845 }
2846 void MainWindow::slotActivateEffectStackView()
2847 {
2848     m_effectStack->raiseWindow(m_effectStackDock);
2849 }
2850
2851 void MainWindow::slotActivateTransitionView(Transition *t)
2852 {
2853     if (t)
2854         m_transitionConfig->raiseWindow(m_transitionConfigDock);
2855 }
2856
2857 void MainWindow::slotSnapRewind()
2858 {
2859     if (m_projectMonitor->isActive()) {
2860         if (m_activeTimeline)
2861             m_activeTimeline->projectView()->slotSeekToPreviousSnap();
2862     } else  {
2863         m_clipMonitor->slotSeekToPreviousSnap();
2864     }
2865 }
2866
2867 void MainWindow::slotSnapForward()
2868 {
2869     if (m_projectMonitor->isActive()) {
2870         if (m_activeTimeline)
2871             m_activeTimeline->projectView()->slotSeekToNextSnap();
2872     } else {
2873         m_clipMonitor->slotSeekToNextSnap();
2874     }
2875 }
2876
2877 void MainWindow::slotClipStart()
2878 {
2879     if (m_projectMonitor->isActive()) {
2880         if (m_activeTimeline)
2881             m_activeTimeline->projectView()->clipStart();
2882     }
2883 }
2884
2885 void MainWindow::slotClipEnd()
2886 {
2887     if (m_projectMonitor->isActive()) {
2888         if (m_activeTimeline)
2889             m_activeTimeline->projectView()->clipEnd();
2890     }
2891 }
2892
2893 void MainWindow::slotZoneStart()
2894 {
2895     if (m_projectMonitor->isActive())
2896         m_projectMonitor->slotZoneStart();
2897     else
2898         m_clipMonitor->slotZoneStart();
2899 }
2900
2901 void MainWindow::slotZoneEnd()
2902 {
2903     if (m_projectMonitor->isActive())
2904         m_projectMonitor->slotZoneEnd();
2905     else
2906         m_clipMonitor->slotZoneEnd();
2907 }
2908
2909 void MainWindow::slotChangeTool(QAction * action)
2910 {
2911     if (action == m_buttonSelectTool)
2912         slotSetTool(SELECTTOOL);
2913     else if (action == m_buttonRazorTool)
2914         slotSetTool(RAZORTOOL);
2915     else if (action == m_buttonSpacerTool)
2916         slotSetTool(SPACERTOOL);
2917 }
2918
2919 void MainWindow::slotChangeEdit(QAction * action)
2920 {
2921     if (!m_activeTimeline)
2922         return;
2923
2924     if (action == m_overwriteEditTool)
2925         m_activeTimeline->projectView()->setEditMode(OVERWRITEEDIT);
2926     else if (action == m_insertEditTool)
2927         m_activeTimeline->projectView()->setEditMode(INSERTEDIT);
2928     else
2929         m_activeTimeline->projectView()->setEditMode(NORMALEDIT);
2930 }
2931
2932 void MainWindow::slotSetTool(PROJECTTOOL tool)
2933 {
2934     if (m_activeDocument && m_activeTimeline) {
2935         //m_activeDocument->setTool(tool);
2936         QString message;
2937         switch (tool)  {
2938         case SPACERTOOL:
2939             message = i18n("Ctrl + click to use spacer on current track only");
2940             break;
2941         case RAZORTOOL:
2942             message = i18n("Click on a clip to cut it");
2943             break;
2944         default:
2945             message = i18n("Shift + click to create a selection rectangle, Ctrl + click to add an item to selection");
2946             break;
2947         }
2948         m_messageLabel->setMessage(message, InformationMessage);
2949         m_activeTimeline->projectView()->setTool(tool);
2950     }
2951 }
2952
2953 void MainWindow::slotCopy()
2954 {
2955     if (m_activeDocument && m_activeTimeline)
2956         m_activeTimeline->projectView()->copyClip();
2957 }
2958
2959 void MainWindow::slotPaste()
2960 {
2961     if (m_activeDocument && m_activeTimeline)
2962         m_activeTimeline->projectView()->pasteClip();
2963 }
2964
2965 void MainWindow::slotPasteEffects()
2966 {
2967     if (m_activeDocument && m_activeTimeline)
2968         m_activeTimeline->projectView()->pasteClipEffects();
2969 }
2970
2971 void MainWindow::slotFind()
2972 {
2973     if (!m_activeDocument || !m_activeTimeline) return;
2974     m_projectSearch->setEnabled(false);
2975     m_findActivated = true;
2976     m_findString.clear();
2977     m_activeTimeline->projectView()->initSearchStrings();
2978     statusBar()->showMessage(i18n("Starting -- find text as you type"));
2979     m_findTimer.start(5000);
2980     qApp->installEventFilter(this);
2981 }
2982
2983 void MainWindow::slotFindNext()
2984 {
2985     if (m_activeTimeline && m_activeTimeline->projectView()->findNextString(m_findString))
2986         statusBar()->showMessage(i18n("Found: %1", m_findString));
2987     else
2988         statusBar()->showMessage(i18n("Reached end of project"));
2989     m_findTimer.start(4000);
2990 }
2991
2992 void MainWindow::findAhead()
2993 {
2994     if (m_activeTimeline && m_activeTimeline->projectView()->findString(m_findString)) {
2995         m_projectSearchNext->setEnabled(true);
2996         statusBar()->showMessage(i18n("Found: %1", m_findString));
2997     } else {
2998         m_projectSearchNext->setEnabled(false);
2999         statusBar()->showMessage(i18n("Not found: %1", m_findString));
3000     }
3001 }
3002
3003 void MainWindow::findTimeout()
3004 {
3005     m_projectSearchNext->setEnabled(false);
3006     m_findActivated = false;
3007     m_findString.clear();
3008     statusBar()->showMessage(i18n("Find stopped"), 3000);
3009     if (m_activeTimeline) m_activeTimeline->projectView()->clearSearchStrings();
3010     m_projectSearch->setEnabled(true);
3011     removeEventFilter(this);
3012 }
3013
3014 void MainWindow::slotClipInTimeline(const QString &clipId)
3015 {
3016     if (m_activeTimeline && m_activeDocument) {
3017         QList<ItemInfo> matching = m_activeTimeline->projectView()->findId(clipId);
3018
3019         QMenu *inTimelineMenu = static_cast<QMenu*>(factory()->container("clip_in_timeline", this));
3020         inTimelineMenu->clear();
3021
3022         QList <QAction *> actionList;
3023
3024         for (int i = 0; i < matching.count(); ++i) {
3025             QString track = QString::number(matching.at(i).track);
3026             QString start = m_activeDocument->timecode().getTimecode(matching.at(i).startPos);
3027             int j = 0;
3028             QAction *a = new QAction(track + ": " + start, this);
3029             a->setData(QStringList() << track << start);
3030             connect(a, SIGNAL(triggered()), this, SLOT(slotSelectClipInTimeline()));
3031             while (j < actionList.count()) {
3032                 if (actionList.at(j)->text() > a->text()) break;
3033                 j++;
3034             }
3035             actionList.insert(j, a);
3036         }
3037         inTimelineMenu->addActions(actionList);
3038
3039         if (matching.empty())
3040             inTimelineMenu->setEnabled(false);
3041         else
3042             inTimelineMenu->setEnabled(true);
3043     }
3044 }
3045
3046 void MainWindow::slotClipInProjectTree()
3047 {
3048     if (m_activeTimeline) {
3049         const QStringList &clipIds = m_activeTimeline->projectView()->selectedClips();
3050         if (clipIds.isEmpty())
3051             return;
3052         m_projectListDock->raise();
3053         for (int i = 0; i < clipIds.count(); i++)
3054             m_projectList->selectItemById(clipIds.at(i));
3055         if (m_projectMonitor->isActive())
3056             slotSwitchMonitors();
3057     }
3058 }
3059
3060 /*void MainWindow::slotClipToProjectTree()
3061 {
3062     if (m_activeTimeline) {
3063     const QList<ClipItem *> clips =  m_activeTimeline->projectView()->selectedClipItems();
3064         if (clips.isEmpty()) return;
3065         for (int i = 0; i < clips.count(); i++) {
3066         m_projectList->slotAddXmlClip(clips.at(i)->itemXml());
3067         }
3068         //m_projectList->selectItemById(clipIds.at(i));
3069     }
3070 }*/
3071
3072 void MainWindow::slotSelectClipInTimeline()
3073 {
3074     if (m_activeTimeline) {
3075         QAction *action = qobject_cast<QAction *>(sender());
3076         QStringList data = action->data().toStringList();
3077         m_activeTimeline->projectView()->selectFound(data.at(0), data.at(1));
3078     }
3079 }
3080
3081 void MainWindow::keyPressEvent(QKeyEvent *ke)
3082 {
3083     if (m_findActivated) {
3084         if (ke->key() == Qt::Key_Backspace) {
3085             m_findString = m_findString.left(m_findString.length() - 1);
3086
3087             if (!m_findString.isEmpty())
3088                 findAhead();
3089             else
3090                 findTimeout();
3091
3092             m_findTimer.start(4000);
3093             ke->accept();
3094             return;
3095         } else if (ke->key() == Qt::Key_Escape) {
3096             findTimeout();
3097             ke->accept();
3098             return;
3099         } else if (ke->key() == Qt::Key_Space || !ke->text().trimmed().isEmpty()) {
3100             m_findString += ke->text();
3101
3102             findAhead();
3103
3104             m_findTimer.start(4000);
3105             ke->accept();
3106             return;
3107         }
3108     } else {
3109         KXmlGuiWindow::keyPressEvent(ke);
3110     }
3111 }
3112
3113
3114 /** Gets called when the window gets hidden */
3115 void MainWindow::hideEvent(QHideEvent */*event*/)
3116 {
3117     if (isMinimized())
3118         if (m_monitorManager)
3119             m_monitorManager->stopActiveMonitor();
3120 }
3121
3122 bool MainWindow::eventFilter(QObject *obj, QEvent *event)
3123 {
3124     if (m_findActivated) {
3125         if (event->type() == QEvent::ShortcutOverride) {
3126             QKeyEvent* ke = (QKeyEvent*) event;
3127             if (ke->text().trimmed().isEmpty()) return false;
3128             ke->accept();
3129             return true;
3130         } else {
3131             return false;
3132         }
3133     } else {
3134         // pass the event on to the parent class
3135         return QMainWindow::eventFilter(obj, event);
3136     }
3137 }
3138
3139
3140 void MainWindow::slotSaveZone(Render *render, QPoint zone)
3141 {
3142     KDialog *dialog = new KDialog(this);
3143     dialog->setCaption("Save clip zone");
3144     dialog->setButtons(KDialog::Ok | KDialog::Cancel);
3145
3146     QWidget *widget = new QWidget(dialog);
3147     dialog->setMainWidget(widget);
3148
3149     QVBoxLayout *vbox = new QVBoxLayout(widget);
3150     QLabel *label1 = new QLabel(i18n("Save clip zone as:"), this);
3151     QString path = m_activeDocument->projectFolder().path();
3152     path.append("/");
3153     path.append("untitled.mlt");
3154     KUrlRequester *url = new KUrlRequester(KUrl(path), this);
3155     url->setFilter("video/mlt-playlist");
3156     QLabel *label2 = new QLabel(i18n("Description:"), this);
3157     KLineEdit *edit = new KLineEdit(this);
3158     vbox->addWidget(label1);
3159     vbox->addWidget(url);
3160     vbox->addWidget(label2);
3161     vbox->addWidget(edit);
3162     if (dialog->exec() == QDialog::Accepted)
3163         render->saveZone(url->url(), edit->text(), zone);
3164
3165 }
3166
3167 void MainWindow::slotSetInPoint()
3168 {
3169     if (m_clipMonitor->isActive())
3170         m_clipMonitor->slotSetZoneStart();
3171     else
3172         m_projectMonitor->slotSetZoneStart();
3173     //else m_activeTimeline->projectView()->setInPoint();
3174 }
3175
3176 void MainWindow::slotSetOutPoint()
3177 {
3178     if (m_clipMonitor->isActive())
3179         m_clipMonitor->slotSetZoneEnd();
3180     else
3181         m_projectMonitor->slotSetZoneEnd();
3182     // else m_activeTimeline->projectView()->setOutPoint();
3183 }
3184
3185 void MainWindow::slotResizeItemStart()
3186 {
3187     if (m_activeTimeline)
3188         m_activeTimeline->projectView()->setInPoint();
3189 }
3190
3191 void MainWindow::slotResizeItemEnd()
3192 {
3193     if (m_activeTimeline)
3194         m_activeTimeline->projectView()->setOutPoint();
3195 }
3196
3197 int MainWindow::getNewStuff(const QString &configFile)
3198 {
3199     KNS3::Entry::List entries;
3200 #if KDE_IS_VERSION(4,3,80)
3201     KNS3::DownloadDialog dialog(configFile);
3202     dialog.exec();
3203     entries = dialog.changedEntries();
3204     foreach(const KNS3::Entry &entry, entries) {
3205         if (entry.status() == KNS3::Entry::Installed)
3206             kDebug() << "// Installed files: " << entry.installedFiles();
3207     }
3208 #else
3209     KNS::Engine engine(0);
3210     if (engine.init(configFile))
3211         entries = engine.downloadDialogModal(this);
3212     foreach(KNS::Entry *entry, entries) {
3213         if (entry->status() == KNS::Entry::Installed)
3214             kDebug() << "// Installed files: " << entry->installedFiles();
3215     }
3216 #endif /* KDE_IS_VERSION(4,3,80) */
3217     return entries.size();
3218 }
3219
3220 void MainWindow::slotGetNewTitleStuff()
3221 {
3222     if (getNewStuff("kdenlive_titles.knsrc") > 0)
3223         TitleWidget::refreshTitleTemplates();
3224 }
3225
3226 void MainWindow::slotGetNewLumaStuff()
3227 {
3228     if (getNewStuff("kdenlive_wipes.knsrc") > 0) {
3229         initEffects::refreshLumas();
3230         m_activeTimeline->projectView()->reloadTransitionLumas();
3231     }
3232 }
3233
3234 void MainWindow::slotGetNewRenderStuff()
3235 {
3236     if (getNewStuff("kdenlive_renderprofiles.knsrc") > 0)
3237         if (m_renderWidget)
3238             m_renderWidget->reloadProfiles();
3239 }
3240
3241 void MainWindow::slotGetNewMltProfileStuff()
3242 {
3243     if (getNewStuff("kdenlive_projectprofiles.knsrc") > 0) {
3244         // update the list of profiles in settings dialog
3245         KdenliveSettingsDialog* d = static_cast <KdenliveSettingsDialog*>(KConfigDialog::exists("settings"));
3246         if (d)
3247             d->checkProfile();
3248     }
3249 }
3250
3251 void MainWindow::slotAutoTransition()
3252 {
3253     if (m_activeTimeline)
3254         m_activeTimeline->projectView()->autoTransition();
3255 }
3256
3257 void MainWindow::slotSplitAudio()
3258 {
3259     if (m_activeTimeline)
3260         m_activeTimeline->projectView()->splitAudio();
3261 }
3262
3263 void MainWindow::slotUpdateClipType(QAction *action)
3264 {
3265     if (m_activeTimeline) {
3266         if (action->data().toString() == "clip_audio_only") m_activeTimeline->projectView()->setAudioOnly();
3267         else if (action->data().toString() == "clip_video_only") m_activeTimeline->projectView()->setVideoOnly();
3268         else m_activeTimeline->projectView()->setAudioAndVideo();
3269     }
3270 }
3271
3272 void MainWindow::slotDvdWizard(const QString &url, const QString &profile)
3273 {
3274     // We must stop the monitors since we create a new on in the dvd wizard
3275     m_clipMonitor->stop();
3276     m_projectMonitor->stop();
3277     DvdWizard w(url, profile, this);
3278     w.exec();
3279     m_projectMonitor->start();
3280 }
3281
3282 void MainWindow::slotShowTimeline(bool show)
3283 {
3284     if (show == false) {
3285         m_timelineState = saveState();
3286         centralWidget()->setHidden(true);
3287     } else {
3288         centralWidget()->setHidden(false);
3289         restoreState(m_timelineState);
3290     }
3291 }
3292
3293 void MainWindow::slotMaximizeCurrent(bool /*show*/)
3294 {
3295     //TODO: is there a way to maximize current widget?
3296     //if (show == true)
3297     {
3298         m_timelineState = saveState();
3299         QWidget *par = focusWidget()->parentWidget();
3300         while (par->parentWidget() && par->parentWidget() != this)
3301             par = par->parentWidget();
3302         kDebug() << "CURRENT WIDGET: " << par->objectName();
3303     }
3304     /*else {
3305     //centralWidget()->setHidden(false);
3306     //restoreState(m_timelineState);
3307     }*/
3308 }
3309
3310 void MainWindow::loadTranscoders()
3311 {
3312     QMenu *transMenu = static_cast<QMenu*>(factory()->container("transcoders", this));
3313     transMenu->clear();
3314
3315     KSharedConfigPtr config = KSharedConfig::openConfig("kdenlivetranscodingrc");
3316     KConfigGroup transConfig(config, "Transcoding");
3317     // read the entries
3318     QMap< QString, QString > profiles = transConfig.entryMap();
3319     QMapIterator<QString, QString> i(profiles);
3320     while (i.hasNext()) {
3321         i.next();
3322         QStringList data = i.value().split(";", QString::SkipEmptyParts);
3323         QAction *a = transMenu->addAction(i.key());
3324         a->setData(data);
3325         if (data.count() > 1)
3326             a->setToolTip(data.at(1));
3327         connect(a, SIGNAL(triggered()), this, SLOT(slotTranscode()));
3328     }
3329 }
3330
3331 void MainWindow::slotTranscode(KUrl::List urls)
3332 {
3333     QString params;
3334     QString desc;
3335     QString condition;
3336     if (urls.isEmpty()) {
3337         QAction *action = qobject_cast<QAction *>(sender());
3338         QStringList data = action->data().toStringList();
3339         params = data.at(0);
3340         if (data.count() > 1) desc = data.at(1);
3341         if (data.count() > 2) condition = data.at(2);
3342         urls << m_projectList->getConditionalUrls(condition);
3343         urls.removeAll(KUrl());
3344     }
3345     if (urls.isEmpty()) {
3346         m_messageLabel->setMessage(i18n("No clip to transcode"), ErrorMessage);
3347         return;
3348     }
3349     ClipTranscode *d = new ClipTranscode(urls, params, desc);
3350     connect(d, SIGNAL(addClip(KUrl)), this, SLOT(slotAddProjectClip(KUrl)));
3351     d->show();
3352     //QProcess::startDetached("ffmpeg", parameters);
3353 }
3354
3355 void MainWindow::slotTranscodeClip()
3356 {
3357     KUrl::List urls = KFileDialog::getOpenUrls(KUrl("kfiledialog:///projectfolder"));
3358     if (urls.isEmpty()) return;
3359     slotTranscode(urls);
3360 }
3361
3362 void MainWindow::slotSetDocumentRenderProfile(const QString &dest, const QString &group, const QString &name, const QString &file)
3363 {
3364     if (m_activeDocument == NULL) return;
3365     m_activeDocument->setDocumentProperty("renderdestination", dest);
3366     m_activeDocument->setDocumentProperty("rendercategory", group);
3367     m_activeDocument->setDocumentProperty("renderprofile", name);
3368     m_activeDocument->setDocumentProperty("renderurl", file);
3369     m_activeDocument->setModified(true);
3370 }
3371
3372
3373 void MainWindow::slotPrepareRendering(bool scriptExport, bool zoneOnly, const QString &chapterFile)
3374 {
3375     if (m_activeDocument == NULL || m_renderWidget == NULL) return;
3376     QString scriptPath;
3377     QString playlistPath;
3378     if (scriptExport) {
3379         bool ok;
3380         QString scriptsFolder = m_activeDocument->projectFolder().path() + "/scripts/";
3381         QString path = m_renderWidget->getFreeScriptName();
3382         scriptPath = QInputDialog::getText(this, i18n("Create Render Script"), i18n("Script name (will be saved in: %1)", scriptsFolder), QLineEdit::Normal, KUrl(path).fileName(), &ok);
3383         if (!ok || scriptPath.isEmpty()) return;
3384         scriptPath.prepend(scriptsFolder);
3385         QFile f(scriptPath);
3386         if (f.exists()) {
3387             if (KMessageBox::warningYesNo(this, i18n("Script file already exists. Do you want to overwrite it?")) != KMessageBox::Yes)
3388                 return;
3389         }
3390         playlistPath = scriptPath + ".mlt";
3391         m_projectMonitor->saveSceneList(playlistPath);
3392     } else {
3393         KTemporaryFile temp;
3394         temp.setAutoRemove(false);
3395         temp.setSuffix(".mlt");
3396         temp.open();
3397         playlistPath = temp.fileName();
3398         m_projectMonitor->saveSceneList(playlistPath);
3399     }
3400
3401     if (!chapterFile.isEmpty()) {
3402         int in = 0;
3403         int out;
3404         if (!zoneOnly) out = (int) GenTime(m_activeDocument->projectDuration()).frames(m_activeDocument->fps());
3405         else {
3406             in = m_activeTimeline->inPoint();
3407             out = m_activeTimeline->outPoint();
3408         }
3409         QDomDocument doc;
3410         QDomElement chapters = doc.createElement("chapters");
3411         chapters.setAttribute("fps", m_activeDocument->fps());
3412         doc.appendChild(chapters);
3413
3414         QDomElement guidesxml = m_activeDocument->guidesXml();
3415         QDomNodeList nodes = guidesxml.elementsByTagName("guide");
3416         for (int i = 0; i < nodes.count(); i++) {
3417             QDomElement e = nodes.item(i).toElement();
3418             if (!e.isNull()) {
3419                 QString comment = e.attribute("comment");
3420                 int time = (int) GenTime(e.attribute("time").toDouble()).frames(m_activeDocument->fps());
3421                 if (time >= in && time < out) {
3422                     if (zoneOnly) time = time - in;
3423                     QDomElement chapter = doc.createElement("chapter");
3424                     chapters.appendChild(chapter);
3425                     chapter.setAttribute("title", comment);
3426                     chapter.setAttribute("time", time);
3427                 }
3428             }
3429         }
3430         if (chapters.childNodes().count() > 0) {
3431             if (m_activeTimeline->projectView()->hasGuide(out, 0) == -1) {
3432                 // Always insert a guide in pos 0
3433                 QDomElement chapter = doc.createElement("chapter");
3434                 chapters.insertBefore(chapter, QDomNode());
3435                 chapter.setAttribute("title", i18n("Start"));
3436                 chapter.setAttribute("time", "0");
3437             }
3438             // save chapters file
3439             QFile file(chapterFile);
3440             if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) {
3441                 kWarning() << "//////  ERROR writing DVD CHAPTER file: " << chapterFile;
3442             } else {
3443                 file.write(doc.toString().toUtf8());
3444                 if (file.error() != QFile::NoError) {
3445                     kWarning() << "//////  ERROR writing DVD CHAPTER file: " << chapterFile;
3446                 }
3447                 file.close();
3448             }
3449         }
3450     }
3451
3452     m_renderWidget->slotExport(scriptExport, m_activeTimeline->inPoint(), m_activeTimeline->outPoint(), playlistPath, scriptPath);
3453 }
3454
3455 void MainWindow::slotUpdateTimecodeFormat(int ix)
3456 {
3457     KdenliveSettings::setFrametimecode(ix == 1);
3458     m_clipMonitor->updateTimecodeFormat();
3459     m_projectMonitor->updateTimecodeFormat();
3460     m_transitionConfig->updateTimecodeFormat();
3461     m_effectStack->updateTimecodeFormat();
3462     //m_activeTimeline->projectView()->clearSelection();
3463     m_activeTimeline->updateRuler();
3464 }
3465
3466 void MainWindow::slotRemoveFocus()
3467 {
3468     statusBar()->setFocus();
3469     statusBar()->clearFocus();
3470 }
3471
3472 void MainWindow::slotRevert()
3473 {
3474     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;
3475     KUrl url = m_activeDocument->url();
3476     closeCurrentDocument(false);
3477     doOpenFile(url, NULL);
3478 }
3479
3480
3481 void MainWindow::slotShutdown()
3482 {
3483     if (m_activeDocument) m_activeDocument->setModified(false);
3484     // Call shutdown
3485     QDBusConnectionInterface* interface = QDBusConnection::sessionBus().interface();
3486     if (interface && interface->isServiceRegistered("org.kde.ksmserver")) {
3487         QDBusInterface smserver("org.kde.ksmserver", "/KSMServer", "org.kde.KSMServerInterface");
3488         smserver.call("logout", 1, 2, 2);
3489     } else if (interface && interface->isServiceRegistered("org.gnome.SessionManager")) {
3490         QDBusInterface smserver("org.gnome.SessionManager", "/org/gnome/SessionManager", "org.gnome.SessionManager");
3491         smserver.call("Shutdown");
3492     }
3493 }
3494
3495 void MainWindow::slotUpdateTrackInfo()
3496 {
3497     if (m_activeDocument)
3498         m_transitionConfig->updateProjectFormat(m_activeDocument->mltProfile(), m_activeDocument->timecode(), m_activeDocument->tracksList());
3499 }
3500
3501 void MainWindow::slotChangePalette(QAction *action, const QString &themename)
3502 {
3503     // Load the theme file
3504     QString theme;
3505     if (action == NULL) theme = themename;
3506     else theme = action->data().toString();
3507     KdenliveSettings::setColortheme(theme);
3508     // Make palette for all widgets.
3509     QPalette plt;
3510     if (theme.isEmpty())
3511         plt = QApplication::desktop()->palette();
3512     else {
3513         KSharedConfigPtr config = KSharedConfig::openConfig(theme);
3514         plt = KGlobalSettings::createApplicationPalette(config);
3515     }
3516
3517     kapp->setPalette(plt);
3518     const QObjectList children = statusBar()->children();
3519
3520     foreach(QObject *child, children) {
3521         if (child->isWidgetType())
3522             ((QWidget*)child)->setPalette(plt);
3523         const QObjectList subchildren = child->children();
3524         foreach(QObject *subchild, subchildren) {
3525             if (subchild->isWidgetType())
3526                 ((QWidget*)subchild)->setPalette(plt);
3527         }
3528     }
3529     if (m_activeTimeline)
3530         m_activeTimeline->projectView()->updatePalette();
3531 }
3532
3533
3534 QPixmap MainWindow::createSchemePreviewIcon(const KSharedConfigPtr &config)
3535 {
3536     // code taken from kdebase/workspace/kcontrol/colors/colorscm.cpp
3537     const uchar bits1[] = { 0xff, 0xff, 0xff, 0x2c, 0x16, 0x0b };
3538     const uchar bits2[] = { 0x68, 0x34, 0x1a, 0xff, 0xff, 0xff };
3539     const QSize bitsSize(24, 2);
3540     const QBitmap b1 = QBitmap::fromData(bitsSize, bits1);
3541     const QBitmap b2 = QBitmap::fromData(bitsSize, bits2);
3542
3543     QPixmap pixmap(23, 16);
3544     pixmap.fill(Qt::black); // ### use some color other than black for borders?
3545
3546     KConfigGroup group(config, "WM");
3547     QPainter p(&pixmap);
3548     KColorScheme windowScheme(QPalette::Active, KColorScheme::Window, config);
3549     p.fillRect(1,  1, 7, 7, windowScheme.background());
3550     p.fillRect(2,  2, 5, 2, QBrush(windowScheme.foreground().color(), b1));
3551
3552     KColorScheme buttonScheme(QPalette::Active, KColorScheme::Button, config);
3553     p.fillRect(8,  1, 7, 7, buttonScheme.background());
3554     p.fillRect(9,  2, 5, 2, QBrush(buttonScheme.foreground().color(), b1));
3555
3556     p.fillRect(15,  1, 7, 7, group.readEntry("activeBackground", QColor(96, 148, 207)));
3557     p.fillRect(16,  2, 5, 2, QBrush(group.readEntry("activeForeground", QColor(255, 255, 255)), b1));
3558
3559     KColorScheme viewScheme(QPalette::Active, KColorScheme::View, config);
3560     p.fillRect(1,  8, 7, 7, viewScheme.background());
3561     p.fillRect(2, 12, 5, 2, QBrush(viewScheme.foreground().color(), b2));
3562
3563     KColorScheme selectionScheme(QPalette::Active, KColorScheme::Selection, config);
3564     p.fillRect(8,  8, 7, 7, selectionScheme.background());
3565     p.fillRect(9, 12, 5, 2, QBrush(selectionScheme.foreground().color(), b2));
3566
3567     p.fillRect(15,  8, 7, 7, group.readEntry("inactiveBackground", QColor(224, 223, 222)));
3568     p.fillRect(16, 12, 5, 2, QBrush(group.readEntry("inactiveForeground", QColor(20, 19, 18)), b2));
3569
3570     p.end();
3571     return pixmap;
3572 }
3573
3574 void MainWindow::slotSwitchMonitors()
3575 {
3576     m_monitorManager->slotSwitchMonitors(!m_clipMonitor->isActive());
3577     if (m_projectMonitor->isActive()) m_activeTimeline->projectView()->setFocus();
3578     else m_projectList->focusTree();
3579 }
3580
3581 void MainWindow::slotInsertZoneToTree()
3582 {
3583     if (!m_clipMonitor->isActive() || m_clipMonitor->activeClip() == NULL) return;
3584     QStringList info = m_clipMonitor->getZoneInfo();
3585     m_projectList->slotAddClipCut(info.at(0), info.at(1).toInt(), info.at(2).toInt());
3586 }
3587
3588 void MainWindow::slotInsertZoneToTimeline()
3589 {
3590     if (m_activeTimeline == NULL || m_clipMonitor->activeClip() == NULL) return;
3591     QStringList info = m_clipMonitor->getZoneInfo();
3592     m_activeTimeline->projectView()->insertClipCut(m_clipMonitor->activeClip(), info.at(1).toInt(), info.at(2).toInt());
3593 }
3594
3595
3596 void MainWindow::slotDeleteProjectClips(QStringList ids, QMap<QString, QString> folderids)
3597 {
3598     if (m_activeDocument && m_activeTimeline) {
3599         if (!ids.isEmpty()) {
3600             for (int i = 0; i < ids.size(); ++i) {
3601                 m_activeTimeline->slotDeleteClip(ids.at(i));
3602             }
3603             m_activeDocument->clipManager()->slotDeleteClips(ids);
3604         }
3605         if (!folderids.isEmpty()) m_projectList->deleteProjectFolder(folderids);
3606         m_activeDocument->setModified(true);
3607     }
3608 }
3609
3610 void MainWindow::slotShowTitleBars(bool show)
3611 {
3612     if (show) {
3613         m_effectStackDock->setTitleBarWidget(0);
3614         m_clipMonitorDock->setTitleBarWidget(0);
3615         m_projectMonitorDock->setTitleBarWidget(0);
3616 #ifndef Q_WS_MAC
3617         m_recMonitorDock->setTitleBarWidget(0);
3618 #endif
3619         m_effectListDock->setTitleBarWidget(0);
3620         m_transitionConfigDock->setTitleBarWidget(0);
3621         m_projectListDock->setTitleBarWidget(0);
3622         m_undoViewDock->setTitleBarWidget(0);
3623         m_vectorscopeDock->setTitleBarWidget(0);
3624         m_waveformDock->setTitleBarWidget(0);
3625         m_RGBParadeDock->setTitleBarWidget(0);
3626         m_histogramDock->setTitleBarWidget(0);
3627     } else {
3628         if (!m_effectStackDock->isFloating()) { m_effectStackDock->setTitleBarWidget(new QWidget(this)); }
3629         if (!m_clipMonitorDock->isFloating()) { m_clipMonitorDock->setTitleBarWidget(new QWidget(this)); }
3630         if (!m_projectMonitorDock->isFloating()) { m_projectMonitorDock->setTitleBarWidget(new QWidget(this)); }
3631 #ifndef Q_WS_MAC
3632         if (!m_recMonitorDock->isFloating()) { m_recMonitorDock->setTitleBarWidget(new QWidget(this)); }
3633 #endif
3634         if (!m_effectListDock->isFloating()) { m_effectListDock->setTitleBarWidget(new QWidget(this)); }
3635         if (!m_transitionConfigDock->isFloating()) { m_transitionConfigDock->setTitleBarWidget(new QWidget(this)); }
3636         if (!m_projectListDock->isFloating()) { m_projectListDock->setTitleBarWidget(new QWidget(this)); }
3637         if (!m_undoViewDock->isFloating()) { m_undoViewDock->setTitleBarWidget(new QWidget(this)); }
3638         if (!m_vectorscopeDock->isFloating()) { m_vectorscopeDock->setTitleBarWidget(new QWidget(this)); }
3639         if (!m_waveformDock->isFloating()) { m_waveformDock->setTitleBarWidget(new QWidget(this)); }
3640         if (!m_RGBParadeDock->isFloating()) { m_RGBParadeDock->setTitleBarWidget(new QWidget(this)); }
3641         if (!m_histogramDock->isFloating()) { m_histogramDock->setTitleBarWidget(new QWidget(this)); }
3642     }
3643     KdenliveSettings::setShowtitlebars(show);
3644 }
3645
3646 void MainWindow::slotSwitchTitles()
3647 {
3648     slotShowTitleBars(!KdenliveSettings::showtitlebars());
3649 }
3650
3651 QString MainWindow::getMimeType()
3652 {
3653     QString mimetype = "application/x-kdenlive";
3654     KMimeType::Ptr mime = KMimeType::mimeType(mimetype);
3655     if (!mime) mimetype = "*.kdenlive";
3656     return mimetype;
3657 }
3658
3659 #include "mainwindow.moc"
3660