]> git.sesse.net Git - kdenlive/blob - src/mainwindow.cpp
Add standard close action to fix:
[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 #include <stdlib.h>
21
22 #include <QTextStream>
23 #include <QTimer>
24 #include <QAction>
25 #include <QtTest>
26 #include <QtCore>
27 #include <QKeyEvent>
28
29 #include <KApplication>
30 #include <KAction>
31 #include <KLocale>
32 #include <KGlobal>
33 #include <KActionCollection>
34 #include <KStandardAction>
35 #include <KFileDialog>
36 #include <KMessageBox>
37 #include <KDebug>
38 #include <KIO/NetAccess>
39 #include <KSaveFile>
40 #include <KRuler>
41 #include <KConfigDialog>
42 #include <KXMLGUIFactory>
43 #include <KStatusBar>
44 #include <kstandarddirs.h>
45 #include <KUrlRequesterDialog>
46 #include <KTemporaryFile>
47 #include <KActionMenu>
48 #include <KMenu>
49 #include <locale.h>
50 #include <ktogglefullscreenaction.h>
51 #include <KFileItem>
52 #include <KNotification>
53 #include <KNotifyConfigWidget>
54
55 #include <mlt++/Mlt.h>
56
57 #include "mainwindow.h"
58 #include "kdenlivesettings.h"
59 #include "kdenlivesettingsdialog.h"
60 #include "initeffects.h"
61 #include "profilesdialog.h"
62 #include "projectsettings.h"
63 #include "events.h"
64 #include "clipmanager.h"
65 #include "projectlist.h"
66 #include "monitor.h"
67 #include "recmonitor.h"
68 #include "monitormanager.h"
69 #include "kdenlivedoc.h"
70 #include "trackview.h"
71 #include "customtrackview.h"
72 #include "effectslistview.h"
73 #include "effectstackview.h"
74 #include "transitionsettings.h"
75 #include "renderwidget.h"
76 #include "renderer.h"
77 #include "jogshuttle.h"
78 #include "clipproperties.h"
79 #include "wizard.h"
80 #include "editclipcommand.h"
81 #include "titlewidget.h"
82
83 static const int ID_STATUS_MSG = 1;
84 static const int ID_EDITMODE_MSG = 2;
85 static const int ID_TIMELINE_MSG = 3;
86 static const int ID_TIMELINE_BUTTONS = 5;
87 static const int ID_TIMELINE_POS = 6;
88 static const int ID_TIMELINE_FORMAT = 7;
89
90 namespace Mlt {
91 class Producer;
92 };
93
94 EffectsList MainWindow::videoEffects;
95 EffectsList MainWindow::audioEffects;
96 EffectsList MainWindow::customEffects;
97 EffectsList MainWindow::transitions;
98
99 MainWindow::MainWindow(const QString &MltPath, QWidget *parent)
100         : KXmlGuiWindow(parent),
101         m_activeDocument(NULL), m_activeTimeline(NULL), m_renderWidget(NULL), m_jogProcess(NULL), m_findActivated(false), m_initialized(false) {
102     setlocale(LC_NUMERIC, "POSIX");
103     setFont(KGlobalSettings::toolBarFont());
104     parseProfiles(MltPath);
105     m_commandStack = new QUndoGroup;
106     m_timelineArea = new KTabWidget(this);
107     m_timelineArea->setTabReorderingEnabled(true);
108     m_timelineArea->setTabBarHidden(true);
109
110     QToolButton *closeTabButton = new QToolButton;
111     connect(closeTabButton, SIGNAL(clicked()), this, SLOT(closeCurrentDocument()));
112     closeTabButton->setIcon(KIcon("tab-close"));
113     closeTabButton->adjustSize();
114     closeTabButton->setToolTip(i18n("Close the current tab"));
115     m_timelineArea->setCornerWidget(closeTabButton);
116     connect(m_timelineArea, SIGNAL(currentChanged(int)), this, SLOT(activateDocument()));
117
118     connect(&m_findTimer, SIGNAL(timeout()), this, SLOT(findTimeout()));
119     m_findTimer.setSingleShot(true);
120
121     initEffects::parseEffectFiles();
122     //initEffects::parseCustomEffectsFile();
123
124     m_monitorManager = new MonitorManager();
125
126     projectListDock = new QDockWidget(i18n("Project Tree"), this);
127     projectListDock->setObjectName("project_tree");
128     m_projectList = new ProjectList(this);
129     projectListDock->setWidget(m_projectList);
130     addDockWidget(Qt::TopDockWidgetArea, projectListDock);
131
132     effectListDock = new QDockWidget(i18n("Effect List"), this);
133     effectListDock->setObjectName("effect_list");
134     m_effectList = new EffectsListView();
135
136     //m_effectList = new KListWidget(this);
137     effectListDock->setWidget(m_effectList);
138     addDockWidget(Qt::TopDockWidgetArea, effectListDock);
139
140     effectStackDock = new QDockWidget(i18n("Effect Stack"), this);
141     effectStackDock->setObjectName("effect_stack");
142     effectStack = new EffectStackView(this);
143     effectStackDock->setWidget(effectStack);
144     addDockWidget(Qt::TopDockWidgetArea, effectStackDock);
145
146     transitionConfigDock = new QDockWidget(i18n("Transition"), this);
147     transitionConfigDock->setObjectName("transition");
148     transitionConfig = new TransitionSettings(this);
149     transitionConfigDock->setWidget(transitionConfig);
150     addDockWidget(Qt::TopDockWidgetArea, transitionConfigDock);
151
152     KdenliveSettings::setCurrent_profile(KdenliveSettings::default_profile());
153     m_fileOpenRecent = KStandardAction::openRecent(this, SLOT(openFile(const KUrl &)),
154                        actionCollection());
155     readOptions();
156
157     clipMonitorDock = new QDockWidget(i18n("Clip Monitor"), this);
158     clipMonitorDock->setObjectName("clip_monitor");
159     m_clipMonitor = new Monitor("clip", m_monitorManager, this);
160     clipMonitorDock->setWidget(m_clipMonitor);
161     addDockWidget(Qt::TopDockWidgetArea, clipMonitorDock);
162     //m_clipMonitor->stop();
163
164     projectMonitorDock = new QDockWidget(i18n("Project Monitor"), this);
165     projectMonitorDock->setObjectName("project_monitor");
166     m_projectMonitor = new Monitor("project", m_monitorManager, this);
167     projectMonitorDock->setWidget(m_projectMonitor);
168     addDockWidget(Qt::TopDockWidgetArea, projectMonitorDock);
169
170     recMonitorDock = new QDockWidget(i18n("Record Monitor"), this);
171     recMonitorDock->setObjectName("record_monitor");
172     m_recMonitor = new RecMonitor("record", this);
173     recMonitorDock->setWidget(m_recMonitor);
174     addDockWidget(Qt::TopDockWidgetArea, recMonitorDock);
175
176     connect(m_recMonitor, SIGNAL(addProjectClip(KUrl)), this, SLOT(slotAddProjectClip(KUrl)));
177     connect(m_recMonitor, SIGNAL(showConfigDialog(int, int)), this, SLOT(slotPreferences(int, int)));
178
179     undoViewDock = new QDockWidget(i18n("Undo History"), this);
180     undoViewDock->setObjectName("undo_history");
181     m_undoView = new QUndoView(this);
182     m_undoView->setCleanIcon(KIcon("edit-clear"));
183     m_undoView->setEmptyLabel(i18n("Clean"));
184     undoViewDock->setWidget(m_undoView);
185     m_undoView->setGroup(m_commandStack);
186     addDockWidget(Qt::TopDockWidgetArea, undoViewDock);
187
188     //overviewDock = new QDockWidget(i18n("Project Overview"), this);
189     //overviewDock->setObjectName("project_overview");
190     //m_overView = new CustomTrackView(NULL, NULL, this);
191     //overviewDock->setWidget(m_overView);
192     //addDockWidget(Qt::TopDockWidgetArea, overviewDock);
193
194     setupActions();
195     //tabifyDockWidget(projectListDock, effectListDock);
196     tabifyDockWidget(projectListDock, effectStackDock);
197     tabifyDockWidget(projectListDock, transitionConfigDock);
198     //tabifyDockWidget(projectListDock, undoViewDock);
199
200
201     tabifyDockWidget(clipMonitorDock, projectMonitorDock);
202     tabifyDockWidget(clipMonitorDock, recMonitorDock);
203     setCentralWidget(m_timelineArea);
204
205     setupGUI();
206     //kDebug() << factory() << " " << factory()->container("video_effects_menu", this);
207
208     m_projectMonitor->setupMenu(static_cast<QMenu*>(factory()->container("monitor_go", this)));
209     m_clipMonitor->setupMenu(static_cast<QMenu*>(factory()->container("monitor_go", this)));
210
211     // build effects menus
212     QAction *action;
213     QMenu *videoEffectsMenu = static_cast<QMenu*>(factory()->container("video_effects_menu", this));
214
215     QStringList effectInfo;
216     QMap<QString, QStringList> effectsList;
217     for (int ix = 0; ix < videoEffects.count(); ix++) {
218         effectInfo = videoEffects.effectIdInfo(ix);
219         effectsList.insert(effectInfo.at(0).toLower(), effectInfo);
220     }
221
222     foreach(QStringList value, effectsList) {
223         action = new QAction(value.at(0), this);
224         action->setData(value);
225         videoEffectsMenu->addAction(action);
226     }
227
228     QMenu *audioEffectsMenu = static_cast<QMenu*>(factory()->container("audio_effects_menu", this));
229
230
231     effectsList.clear();
232     for (int ix = 0; ix < audioEffects.count(); ix++) {
233         effectInfo = audioEffects.effectIdInfo(ix);
234         effectsList.insert(effectInfo.at(0).toLower(), effectInfo);
235     }
236
237     foreach(QStringList value, effectsList) {
238         action = new QAction(value.at(0), this);
239         action->setData(value);
240         audioEffectsMenu->addAction(action);
241     }
242
243     m_customEffectsMenu = static_cast<QMenu*>(factory()->container("custom_effects_menu", this));
244
245     if (customEffects.isEmpty()) m_customEffectsMenu->setEnabled(false);
246     else m_customEffectsMenu->setEnabled(true);
247
248     effectsList.clear();
249     for (int ix = 0; ix < customEffects.count(); ix++) {
250         effectInfo = customEffects.effectIdInfo(ix);
251         effectsList.insert(effectInfo.at(0).toLower(), effectInfo);
252     }
253
254     foreach(QStringList value, effectsList) {
255         action = new QAction(value.at(0), this);
256         action->setData(value);
257         m_customEffectsMenu->addAction(action);
258     }
259
260     QMenu *newEffect = new QMenu(this);
261     newEffect->addMenu(videoEffectsMenu);
262     newEffect->addMenu(audioEffectsMenu);
263     newEffect->addMenu(m_customEffectsMenu);
264     effectStack->setMenu(newEffect);
265
266
267     QMenu *viewMenu = static_cast<QMenu*>(factory()->container("dockwindows", this));
268     const QList<QAction *> viewActions = createPopupMenu()->actions();
269     viewMenu->insertActions(NULL, viewActions);
270
271     connect(videoEffectsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddVideoEffect(QAction *)));
272     connect(audioEffectsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddAudioEffect(QAction *)));
273     connect(m_customEffectsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddCustomEffect(QAction *)));
274
275     m_timelineContextMenu = new QMenu(this);
276     m_timelineContextClipMenu = new QMenu(this);
277     m_timelineContextTransitionMenu = new QMenu(this);
278
279
280     QMenu *transitionsMenu = new QMenu(i18n("Add Transition"), this);
281     QStringList effects = transitions.effectNames();
282     foreach(const QString &name, effects) {
283         action = new QAction(name, this);
284         action->setData(name);
285         transitionsMenu->addAction(action);
286     }
287     connect(transitionsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddTransition(QAction *)));
288
289     m_timelineContextMenu->addAction(actionCollection()->action(KStandardAction::name(KStandardAction::Paste)));
290
291     m_timelineContextClipMenu->addAction(actionCollection()->action("delete_timeline_clip"));
292     m_timelineContextClipMenu->addAction(actionCollection()->action("change_clip_speed"));
293     m_timelineContextClipMenu->addAction(actionCollection()->action("cut_timeline_clip"));
294     m_timelineContextClipMenu->addAction(actionCollection()->action(KStandardAction::name(KStandardAction::Copy)));
295     m_timelineContextClipMenu->addAction(actionCollection()->action("paste_effects"));
296
297     QMenu *markersMenu = (QMenu*)(factory()->container("marker_menu", this));
298     m_timelineContextClipMenu->addMenu(markersMenu);
299     m_timelineContextClipMenu->addMenu(transitionsMenu);
300     m_timelineContextClipMenu->addMenu(videoEffectsMenu);
301     m_timelineContextClipMenu->addMenu(audioEffectsMenu);
302     //TODO: re-enable custom effects menu when it is implemented
303     m_timelineContextClipMenu->addMenu(m_customEffectsMenu);
304
305     m_timelineContextTransitionMenu->addAction(actionCollection()->action("delete_timeline_clip"));
306     m_timelineContextTransitionMenu->addAction(actionCollection()->action(KStandardAction::name(KStandardAction::Copy)));
307
308     connect(projectMonitorDock, SIGNAL(visibilityChanged(bool)), m_projectMonitor, SLOT(refreshMonitor(bool)));
309     connect(clipMonitorDock, SIGNAL(visibilityChanged(bool)), m_clipMonitor, SLOT(refreshMonitor(bool)));
310     //connect(m_monitorManager, SIGNAL(connectMonitors()), this, SLOT(slotConnectMonitors()));
311     connect(m_monitorManager, SIGNAL(raiseClipMonitor(bool)), this, SLOT(slotRaiseMonitor(bool)));
312     connect(m_effectList, SIGNAL(addEffect(QDomElement)), this, SLOT(slotAddEffect(QDomElement)));
313     connect(m_effectList, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
314
315     m_monitorManager->initMonitors(m_clipMonitor, m_projectMonitor);
316     slotConnectMonitors();
317
318     if (KdenliveSettings::openlastproject()) {
319         openLastFile();
320     } else {
321         /*QList<KAutoSaveFile *> staleFiles = KAutoSaveFile::allStaleFiles();
322         if (!staleFiles.isEmpty()) {
323             if (KMessageBox::questionYesNo(this, i18n("Auto-saved files exist. Do you want to recover them now?"), i18n("File Recovery"), KGuiItem(i18n("Recover")), KGuiItem(i18n("Don't recover"))) == KMessageBox::Yes) {
324          recoverFiles(staleFiles);
325             }
326             else newFile();
327         }
328         else*/
329         newFile(false);
330     }
331
332     activateShuttleDevice();
333     projectListDock->raise();
334 }
335
336 void MainWindow::queryQuit() {
337     kDebug() << "----- SAVING CONFUIG";
338     if (queryClose()) kapp->quit();
339 }
340
341 //virtual
342 bool MainWindow::queryClose() {
343     saveOptions();
344     if (m_monitorManager) m_monitorManager->stopActiveMonitor();
345     if (m_activeDocument && m_activeDocument->isModified()) {
346         switch (KMessageBox::warningYesNoCancel(this, i18n("Save changes to document ?"))) {
347         case KMessageBox::Yes :
348             // save document here. If saving fails, return false;
349             saveFile();
350             return true;
351         case KMessageBox::No :
352             return true;
353         default: // cancel
354             return false;
355         }
356     }
357     return true;
358 }
359
360 void MainWindow::saveProperties(KConfig*) {
361     // save properties here,used by session management
362     saveFile();
363 }
364
365
366 void MainWindow::readProperties(KConfig *config) {
367     // read properties here,used by session management
368     QString Lastproject = config->group("Recent Files").readPathEntry("File1", QString());
369     openFile(KUrl(Lastproject));
370 }
371
372 void MainWindow::slotReloadEffects() {
373     initEffects::parseCustomEffectsFile();
374     m_customEffectsMenu->clear();
375     const QStringList effects = customEffects.effectNames();
376     QAction *action;
377     if (effects.isEmpty()) m_customEffectsMenu->setEnabled(false);
378     else m_customEffectsMenu->setEnabled(true);
379
380     foreach(const QString &name, effects) {
381         action = new QAction(name, this);
382         action->setData(name);
383         m_customEffectsMenu->addAction(action);
384     }
385     m_effectList->reloadEffectList();
386 }
387
388 void MainWindow::activateShuttleDevice() {
389     if (m_jogProcess) delete m_jogProcess;
390     m_jogProcess = NULL;
391     if (KdenliveSettings::enableshuttle() == false) return;
392     m_jogProcess = new JogShuttle(KdenliveSettings::shuttledevice());
393     connect(m_jogProcess, SIGNAL(rewind1()), m_monitorManager, SLOT(slotRewindOneFrame()));
394     connect(m_jogProcess, SIGNAL(forward1()), m_monitorManager, SLOT(slotForwardOneFrame()));
395     connect(m_jogProcess, SIGNAL(rewind(double)), m_monitorManager, SLOT(slotRewind(double)));
396     connect(m_jogProcess, SIGNAL(forward(double)), m_monitorManager, SLOT(slotForward(double)));
397     connect(m_jogProcess, SIGNAL(stop()), m_monitorManager, SLOT(slotPlay()));
398     connect(m_jogProcess, SIGNAL(button(int)), this, SLOT(slotShuttleButton(int)));
399 }
400
401 void MainWindow::slotShuttleButton(int code) {
402     switch (code) {
403     case 5:
404         slotShuttleAction(KdenliveSettings::shuttle1());
405         break;
406     case 6:
407         slotShuttleAction(KdenliveSettings::shuttle2());
408         break;
409     case 7:
410         slotShuttleAction(KdenliveSettings::shuttle3());
411         break;
412     case 8:
413         slotShuttleAction(KdenliveSettings::shuttle4());
414         break;
415     case 9:
416         slotShuttleAction(KdenliveSettings::shuttle5());
417         break;
418     }
419 }
420
421 void MainWindow::slotShuttleAction(int code) {
422     switch (code) {
423     case 0:
424         return;
425     case 1:
426         m_monitorManager->slotPlay();
427         break;
428     default:
429         m_monitorManager->slotPlay();
430         break;
431     }
432 }
433
434 void MainWindow::configureNotifications() {
435     KNotifyConfigWidget::configure(this);
436 }
437
438 void MainWindow::slotFullScreen() {
439     //KToggleFullScreenAction::setFullScreen(this, actionCollection()->action("fullscreen")->isChecked());
440 }
441
442 void MainWindow::slotAddEffect(QDomElement effect, GenTime pos, int track) {
443     if (!m_activeDocument) return;
444     if (effect.isNull()) {
445         kDebug() << "--- ERROR, TRYING TO APPEND NULL EFFECT";
446         return;
447     }
448     TrackView *currentTimeLine = (TrackView *) m_timelineArea->currentWidget();
449     currentTimeLine->projectView()->slotAddEffect(effect.cloneNode().toElement(), pos, track);
450 }
451
452 void MainWindow::slotRaiseMonitor(bool clipMonitor) {
453     if (clipMonitor) clipMonitorDock->raise();
454     else projectMonitorDock->raise();
455 }
456
457 void MainWindow::slotSetClipDuration(const QString &id, int duration) {
458     if (!m_activeDocument) return;
459     m_activeDocument->setProducerDuration(id, duration);
460 }
461
462 void MainWindow::slotConnectMonitors() {
463
464     m_projectList->setRenderer(m_clipMonitor->render);
465     connect(m_projectList, SIGNAL(receivedClipDuration(const QString &, int)), this, SLOT(slotSetClipDuration(const QString &, int)));
466     connect(m_projectList, SIGNAL(showClipProperties(DocClipBase *)), this, SLOT(slotShowClipProperties(DocClipBase *)));
467     connect(m_projectList, SIGNAL(getFileProperties(const QDomElement &, const QString &)), m_clipMonitor->render, SLOT(getFileProperties(const QDomElement &, const QString &)));
468     connect(m_clipMonitor->render, SIGNAL(replyGetImage(const QString &, int, const QPixmap &, int, int)), m_projectList, SLOT(slotReplyGetImage(const QString &, int, const QPixmap &, int, int)));
469     connect(m_clipMonitor->render, SIGNAL(replyGetFileProperties(const QString &, Mlt::Producer*, const QMap < QString, QString > &, const QMap < QString, QString > &)), m_projectList, SLOT(slotReplyGetFileProperties(const QString &, Mlt::Producer*, const QMap < QString, QString > &, const QMap < QString, QString > &)));
470
471     connect(m_clipMonitor->render, SIGNAL(removeInvalidClip(const QString &)), m_projectList, SLOT(slotRemoveInvalidClip(const QString &)));
472
473     connect(m_clipMonitor, SIGNAL(refreshClipThumbnail(const QString &)), m_projectList, SLOT(slotRefreshClipThumbnail(const QString &)));
474
475     connect(m_clipMonitor, SIGNAL(adjustMonitorSize()), this, SLOT(slotAdjustClipMonitor()));
476     connect(m_projectMonitor, SIGNAL(adjustMonitorSize()), this, SLOT(slotAdjustProjectMonitor()));
477
478     connect(m_clipMonitor, SIGNAL(saveZone(Render *, QPoint)), this, SLOT(slotSaveZone(Render *, QPoint)));
479     connect(m_projectMonitor, SIGNAL(saveZone(Render *, QPoint)), this, SLOT(slotSaveZone(Render *, QPoint)));
480 }
481
482 void MainWindow::slotAdjustClipMonitor() {
483     clipMonitorDock->updateGeometry();
484     clipMonitorDock->adjustSize();
485     m_clipMonitor->resetSize();
486 }
487
488 void MainWindow::slotAdjustProjectMonitor() {
489     projectMonitorDock->updateGeometry();
490     projectMonitorDock->adjustSize();
491     m_projectMonitor->resetSize();
492 }
493
494 void MainWindow::setupActions() {
495
496     KActionCollection* collection = actionCollection();
497     m_timecodeFormat = new KComboBox(this);
498     m_timecodeFormat->addItem(i18n("hh:mm:ss::ff"));
499     m_timecodeFormat->addItem(i18n("Frames"));
500
501     statusProgressBar = new QProgressBar(this);
502     statusProgressBar->setMinimum(0);
503     statusProgressBar->setMaximum(100);
504     statusProgressBar->setMaximumWidth(150);
505     statusProgressBar->setVisible(false);
506
507     QWidget *w = new QWidget;
508
509     QHBoxLayout *layout = new QHBoxLayout;
510     w->setLayout(layout);
511     layout->setContentsMargins(5, 0, 5, 0);
512     QToolBar *toolbar = new QToolBar("statusToolBar", this);
513
514
515     m_toolGroup = new QActionGroup(this);
516
517     QString style1 = "QToolButton {background-color: rgba(230, 230, 230, 220); 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;}";
518
519     m_buttonSelectTool = new KAction(KIcon("kdenlive-select-tool"), i18n("Selection tool"), this);
520     toolbar->addAction(m_buttonSelectTool);
521     m_buttonSelectTool->setCheckable(true);
522     m_buttonSelectTool->setChecked(true);
523
524     m_buttonRazorTool = new KAction(KIcon("edit-cut"), i18n("Razor tool"), this);
525     toolbar->addAction(m_buttonRazorTool);
526     m_buttonRazorTool->setCheckable(true);
527     m_buttonRazorTool->setChecked(false);
528
529     m_toolGroup->addAction(m_buttonSelectTool);
530     m_toolGroup->addAction(m_buttonRazorTool);
531     m_toolGroup->setExclusive(true);
532     toolbar->setToolButtonStyle(Qt::ToolButtonIconOnly);
533
534     QWidget * actionWidget;
535     actionWidget = toolbar->widgetForAction(m_buttonSelectTool);
536     actionWidget->setMaximumWidth(24);
537     actionWidget->setMinimumHeight(17);
538
539     actionWidget = toolbar->widgetForAction(m_buttonRazorTool);
540     actionWidget->setMaximumWidth(24);
541     actionWidget->setMinimumHeight(17);
542
543     toolbar->setStyleSheet(style1);
544     connect(m_toolGroup, SIGNAL(triggered(QAction *)), this, SLOT(slotChangeTool(QAction *)));
545
546     toolbar->addSeparator();
547     m_buttonFitZoom = new KAction(KIcon("zoom-fit-best"), i18n("Fit zoom to project"), this);
548     toolbar->addAction(m_buttonFitZoom);
549     m_buttonFitZoom->setCheckable(false);
550     connect(m_buttonFitZoom, SIGNAL(triggered()), this, SLOT(slotFitZoom()));
551
552     actionWidget = toolbar->widgetForAction(m_buttonFitZoom);
553     actionWidget->setMaximumWidth(24);
554     actionWidget->setMinimumHeight(17);
555
556     m_zoomSlider = new QSlider(Qt::Horizontal, this);
557     m_zoomSlider->setMaximum(13);
558     m_zoomSlider->setPageStep(1);
559
560     m_zoomSlider->setMaximumWidth(150);
561     m_zoomSlider->setMinimumWidth(100);
562
563     const int contentHeight = QFontMetrics(w->font()).height() + 8;
564
565     QString style = "QSlider::groove:horizontal { background-color: rgba(230, 230, 230, 220);border: 1px solid #999999;height: 8px;border-radius: 3px;margin-top:3px }";
566     style.append("QSlider::handle:horizontal {  background-color: white; border: 1px solid #999999;width: 9px;margin: -2px 0;border-radius: 3px; }");
567
568     m_zoomSlider->setStyleSheet(style);
569
570     //m_zoomSlider->height() + 5;
571     statusBar()->setMinimumHeight(contentHeight);
572
573
574     toolbar->addWidget(m_zoomSlider);
575
576     m_buttonVideoThumbs = new KAction(KIcon("kdenlive-show-videothumb"), i18n("Show video thumbnails"), this);
577     toolbar->addAction(m_buttonVideoThumbs);
578     m_buttonVideoThumbs->setCheckable(true);
579     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
580     connect(m_buttonVideoThumbs, SIGNAL(triggered()), this, SLOT(slotSwitchVideoThumbs()));
581
582     m_buttonAudioThumbs = new KAction(KIcon("kdenlive-show-audiothumb"), i18n("Show audio thumbnails"), this);
583     toolbar->addAction(m_buttonAudioThumbs);
584     m_buttonAudioThumbs->setCheckable(true);
585     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
586     connect(m_buttonAudioThumbs, SIGNAL(triggered()), this, SLOT(slotSwitchAudioThumbs()));
587
588     m_buttonShowMarkers = new KAction(KIcon("kdenlive-show-markers"), i18n("Show markers comments"), this);
589     toolbar->addAction(m_buttonShowMarkers);
590     m_buttonShowMarkers->setCheckable(true);
591     m_buttonShowMarkers->setChecked(KdenliveSettings::showmarkers());
592     connect(m_buttonShowMarkers, SIGNAL(triggered()), this, SLOT(slotSwitchMarkersComments()));
593
594     m_buttonSnap = new KAction(KIcon("kdenlive-snap"), i18n("Snap"), this);
595     toolbar->addAction(m_buttonSnap);
596     m_buttonSnap->setCheckable(true);
597     m_buttonSnap->setChecked(KdenliveSettings::snaptopoints());
598     connect(m_buttonSnap, SIGNAL(triggered()), this, SLOT(slotSwitchSnap()));
599     layout->addWidget(toolbar);
600
601
602     actionWidget = toolbar->widgetForAction(m_buttonVideoThumbs);
603     actionWidget->setMaximumWidth(24);
604     actionWidget->setMinimumHeight(17);
605
606     actionWidget = toolbar->widgetForAction(m_buttonAudioThumbs);
607     actionWidget->setMaximumWidth(24);
608     actionWidget->setMinimumHeight(17);
609
610     actionWidget = toolbar->widgetForAction(m_buttonShowMarkers);
611     actionWidget->setMaximumWidth(24);
612     actionWidget->setMinimumHeight(17);
613
614     actionWidget = toolbar->widgetForAction(m_buttonSnap);
615     actionWidget->setMaximumWidth(24);
616     actionWidget->setMinimumHeight(17);
617
618     m_messageLabel = new StatusBarMessageLabel(this);
619     m_messageLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::MinimumExpanding);
620
621     statusBar()->addWidget(m_messageLabel, 10);
622     statusBar()->addWidget(statusProgressBar, 0);
623     statusBar()->insertPermanentWidget(ID_TIMELINE_BUTTONS, w);
624     statusBar()->insertPermanentFixedItem("00:00:00:00", ID_TIMELINE_POS);
625     statusBar()->insertPermanentWidget(ID_TIMELINE_FORMAT, m_timecodeFormat);
626     statusBar()->setMaximumHeight(statusBar()->font().pointSize() * 4);
627     m_messageLabel->hide();
628
629     collection->addAction("select_tool", m_buttonSelectTool);
630     collection->addAction("razor_tool", m_buttonRazorTool);
631
632     collection->addAction("show_video_thumbs", m_buttonVideoThumbs);
633     collection->addAction("show_audio_thumbs", m_buttonAudioThumbs);
634     collection->addAction("show_markers", m_buttonShowMarkers);
635     collection->addAction("snap", m_buttonSnap);
636     collection->addAction("zoom_fit", m_buttonFitZoom);
637
638     m_projectSearch = new KAction(KIcon("edit-find"), i18n("Find"), this);
639     collection->addAction("project_find", m_projectSearch);
640     connect(m_projectSearch, SIGNAL(triggered(bool)), this, SLOT(slotFind()));
641     m_projectSearch->setShortcut(Qt::Key_Slash);
642
643     m_projectSearchNext = new KAction(KIcon("go-down-search"), i18n("Find Next"), this);
644     collection->addAction("project_find_next", m_projectSearchNext);
645     connect(m_projectSearchNext, SIGNAL(triggered(bool)), this, SLOT(slotFindNext()));
646     m_projectSearchNext->setShortcut(Qt::Key_F3);
647     m_projectSearchNext->setEnabled(false);
648
649     KAction* profilesAction = new KAction(KIcon("document-new"), i18n("Manage Profiles"), this);
650     collection->addAction("manage_profiles", profilesAction);
651     connect(profilesAction, SIGNAL(triggered(bool)), this, SLOT(slotEditProfiles()));
652
653     KAction* projectAction = new KAction(KIcon("configure"), i18n("Project Settings"), this);
654     collection->addAction("project_settings", projectAction);
655     connect(projectAction, SIGNAL(triggered(bool)), this, SLOT(slotEditProjectSettings()));
656
657     KAction* projectRender = new KAction(KIcon("media-record"), i18n("Render"), this);
658     collection->addAction("project_render", projectRender);
659     connect(projectRender, SIGNAL(triggered(bool)), this, SLOT(slotRenderProject()));
660
661     KAction* monitorPlay = new KAction(KIcon("media-playback-start"), i18n("Play"), this);
662     KShortcut playShortcut;
663     playShortcut.setPrimary(Qt::Key_Space);
664     playShortcut.setAlternate(Qt::Key_K);
665     monitorPlay->setShortcut(playShortcut);
666     collection->addAction("monitor_play", monitorPlay);
667     connect(monitorPlay, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotPlay()));
668
669     KAction *markIn = collection->addAction("mark_in");
670     markIn->setText(i18n("Set In Point"));
671     markIn->setShortcut(Qt::Key_I);
672     connect(markIn, SIGNAL(triggered(bool)), this, SLOT(slotSetInPoint()));
673
674     KAction *markOut = collection->addAction("mark_out");
675     markOut->setText(i18n("Set Out Point"));
676     markOut->setShortcut(Qt::Key_O);
677     connect(markOut, SIGNAL(triggered(bool)), this, SLOT(slotSetOutPoint()));
678
679     KAction* monitorSeekBackward = new KAction(KIcon("media-seek-backward"), i18n("Rewind"), this);
680     monitorSeekBackward->setShortcut(Qt::Key_J);
681     collection->addAction("monitor_seek_backward", monitorSeekBackward);
682     connect(monitorSeekBackward, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotRewind()));
683
684     KAction* monitorSeekBackwardOneFrame = new KAction(KIcon("media-skip-backward"), i18n("Rewind 1 Frame"), this);
685     monitorSeekBackwardOneFrame->setShortcut(Qt::Key_Left);
686     collection->addAction("monitor_seek_backward-one-frame", monitorSeekBackwardOneFrame);
687     connect(monitorSeekBackwardOneFrame, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotRewindOneFrame()));
688
689     KAction* monitorSeekSnapBackward = new KAction(KIcon("media-seek-backward"), i18n("Go to Previous Snap Point"), this);
690     monitorSeekSnapBackward->setShortcut(Qt::ALT + Qt::Key_Left);
691     collection->addAction("monitor_seek_snap_backward", monitorSeekSnapBackward);
692     connect(monitorSeekSnapBackward, SIGNAL(triggered(bool)), this, SLOT(slotSnapRewind()));
693
694     KAction* monitorSeekForward = new KAction(KIcon("media-seek-forward"), i18n("Forward"), this);
695     monitorSeekForward->setShortcut(Qt::Key_L);
696     collection->addAction("monitor_seek_forward", monitorSeekForward);
697     connect(monitorSeekForward, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotForward()));
698
699     KAction* clipStart = new KAction(KIcon("media-seek-backward"), i18n("Go to Clip Start"), this);
700     clipStart->setShortcut(Qt::Key_Home);
701     collection->addAction("seek_clip_start", clipStart);
702     connect(clipStart, SIGNAL(triggered(bool)), this, SLOT(slotClipStart()));
703
704     KAction* clipEnd = new KAction(KIcon("media-seek-forward"), i18n("Go to Clip End"), this);
705     clipEnd->setShortcut(Qt::Key_End);
706     collection->addAction("seek_clip_end", clipEnd);
707     connect(clipEnd, SIGNAL(triggered(bool)), this, SLOT(slotClipEnd()));
708
709     KAction* projectStart = new KAction(KIcon("go-first"), i18n("Go to Project Start"), this);
710     projectStart->setShortcut(Qt::CTRL + Qt::Key_Home);
711     collection->addAction("seek_start", projectStart);
712     connect(projectStart, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotStart()));
713
714     KAction* projectEnd = new KAction(KIcon("go-last"), i18n("Go to Project End"), this);
715     projectEnd->setShortcut(Qt::CTRL + Qt::Key_End);
716     collection->addAction("seek_end", projectEnd);
717     connect(projectEnd, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotEnd()));
718
719     KAction* monitorSeekForwardOneFrame = new KAction(KIcon("media-skip-forward"), i18n("Forward 1 Frame"), this);
720     monitorSeekForwardOneFrame->setShortcut(Qt::Key_Right);
721     collection->addAction("monitor_seek_forward-one-frame", monitorSeekForwardOneFrame);
722     connect(monitorSeekForwardOneFrame, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotForwardOneFrame()));
723
724     KAction* monitorSeekSnapForward = new KAction(KIcon("media-seek-forward"), i18n("Go to Next Snap Point"), this);
725     monitorSeekSnapForward->setShortcut(Qt::ALT + Qt::Key_Right);
726     collection->addAction("monitor_seek_snap_forward", monitorSeekSnapForward);
727     connect(monitorSeekSnapForward, SIGNAL(triggered(bool)), this, SLOT(slotSnapForward()));
728
729     KAction* deleteTimelineClip = new KAction(KIcon("edit-delete"), i18n("Delete Selected Item"), this);
730     deleteTimelineClip->setShortcut(Qt::Key_Delete);
731     collection->addAction("delete_timeline_clip", deleteTimelineClip);
732     connect(deleteTimelineClip, SIGNAL(triggered(bool)), this, SLOT(slotDeleteTimelineClip()));
733
734     KAction* editTimelineClipSpeed = new KAction(i18n("Change Clip Speed"), this);
735     collection->addAction("change_clip_speed", editTimelineClipSpeed);
736     connect(editTimelineClipSpeed, SIGNAL(triggered(bool)), this, SLOT(slotChangeClipSpeed()));
737
738     KAction* cutTimelineClip = new KAction(KIcon("edit-cut"), i18n("Cut Clip"), this);
739     cutTimelineClip->setShortcut(Qt::SHIFT + Qt::Key_R);
740     collection->addAction("cut_timeline_clip", cutTimelineClip);
741     connect(cutTimelineClip, SIGNAL(triggered(bool)), this, SLOT(slotCutTimelineClip()));
742
743     KAction* addClipMarker = new KAction(KIcon("bookmark-new"), i18n("Add Marker"), this);
744     collection->addAction("add_clip_marker", addClipMarker);
745     connect(addClipMarker, SIGNAL(triggered(bool)), this, SLOT(slotAddClipMarker()));
746
747     KAction* deleteClipMarker = new KAction(KIcon("edit-delete"), i18n("Delete Marker"), this);
748     collection->addAction("delete_clip_marker", deleteClipMarker);
749     connect(deleteClipMarker, SIGNAL(triggered(bool)), this, SLOT(slotDeleteClipMarker()));
750
751     KAction* deleteAllClipMarkers = new KAction(KIcon("edit-delete"), i18n("Delete All Markers"), this);
752     collection->addAction("delete_all_clip_markers", deleteAllClipMarkers);
753     connect(deleteAllClipMarkers, SIGNAL(triggered(bool)), this, SLOT(slotDeleteAllClipMarkers()));
754
755     KAction* editClipMarker = new KAction(KIcon("document-properties"), i18n("Edit Marker"), this);
756     collection->addAction("edit_clip_marker", editClipMarker);
757     connect(editClipMarker, SIGNAL(triggered(bool)), this, SLOT(slotEditClipMarker()));
758
759     KAction *addGuide = new KAction(KIcon("document-new"), i18n("Add Guide"), this);
760     collection->addAction("add_guide", addGuide);
761     connect(addGuide, SIGNAL(triggered()), this, SLOT(slotAddGuide()));
762
763     QAction *delGuide = new KAction(KIcon("edit-delete"), i18n("Delete Guide"), this);
764     collection->addAction("delete_guide", delGuide);
765     connect(delGuide, SIGNAL(triggered()), this, SLOT(slotDeleteGuide()));
766
767     QAction *editGuide = new KAction(KIcon("document-properties"), i18n("Edit Guide"), this);
768     collection->addAction("edit_guide", editGuide);
769     connect(editGuide, SIGNAL(triggered()), this, SLOT(slotEditGuide()));
770
771     QAction *delAllGuides = new KAction(KIcon("edit-delete"), i18n("Delete All Guides"), this);
772     collection->addAction("delete_all_guides", delAllGuides);
773     connect(delAllGuides, SIGNAL(triggered()), this, SLOT(slotDeleteAllGuides()));
774
775     QAction *pasteEffects = new KAction(KIcon("edit-paste"), i18n("Paste Effects"), this);
776     collection->addAction("paste_effects", pasteEffects);
777     connect(pasteEffects , SIGNAL(triggered()), this, SLOT(slotPasteEffects()));
778
779     KStandardAction::close(this, SLOT(closeCurrentDocument()), collection);
780
781     KStandardAction::quit(this, SLOT(queryQuit()), collection);
782
783     KStandardAction::open(this, SLOT(openFile()), collection);
784
785     m_saveAction = KStandardAction::save(this, SLOT(saveFile()), collection);
786
787     KStandardAction::saveAs(this, SLOT(saveFileAs()), collection);
788
789     KStandardAction::openNew(this, SLOT(newFile()), collection);
790
791     KStandardAction::preferences(this, SLOT(slotPreferences()), collection);
792
793     KStandardAction::configureNotifications(this , SLOT(configureNotifications()), collection);
794
795     KStandardAction::copy(this, SLOT(slotCopy()), collection);
796
797     KStandardAction::paste(this, SLOT(slotPaste()), collection);
798
799     KAction *undo = KStandardAction::undo(m_commandStack, SLOT(undo()), collection);
800     undo->setEnabled(false);
801     connect(m_commandStack, SIGNAL(canUndoChanged(bool)), undo, SLOT(setEnabled(bool)));
802
803     KAction *redo = KStandardAction::redo(m_commandStack, SLOT(redo()), collection);
804     redo->setEnabled(false);
805     connect(m_commandStack, SIGNAL(canRedoChanged(bool)), redo, SLOT(setEnabled(bool)));
806
807     KStandardAction::fullScreen(this, SLOT(slotFullScreen()), this, collection);
808
809     connect(collection, SIGNAL(actionHovered(QAction*)),
810             this, SLOT(slotDisplayActionMessage(QAction*)));
811     //connect(collection, SIGNAL( clearStatusText() ),
812     //statusBar(), SLOT( clear() ) );
813 }
814
815 void MainWindow::slotDisplayActionMessage(QAction *a) {
816     statusBar()->showMessage(a->data().toString(), 3000);
817 }
818
819 void MainWindow::saveOptions() {
820     KdenliveSettings::self()->writeConfig();
821     KSharedConfigPtr config = KGlobal::config();
822     m_fileOpenRecent->saveEntries(KConfigGroup(config, "Recent Files"));
823     config->sync();
824 }
825
826 void MainWindow::readOptions() {
827     KSharedConfigPtr config = KGlobal::config();
828     m_fileOpenRecent->loadEntries(KConfigGroup(config, "Recent Files"));
829     KConfigGroup initialGroup(config, "version");
830     if (!initialGroup.exists()) {
831         // this is our first run, show Wizard
832         Wizard *w = new Wizard(this);
833         if (w->exec() == QDialog::Accepted && w->isOk()) {
834             w->adjustSettings();
835             initialGroup.writeEntry("version", "0.7");
836             delete w;
837         } else {
838             ::exit(1);
839         }
840     }
841 }
842
843 void MainWindow::newFile(bool showProjectSettings) {
844     QString profileName;
845     KUrl projectFolder;
846     QPoint projectTracks(3, 2);
847     if (!showProjectSettings && m_timelineArea->count() == 0) {
848         if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
849         profileName = KdenliveSettings::default_profile();
850     } else {
851         ProjectSettings *w = new ProjectSettings;
852         if (w->exec() != QDialog::Accepted) return;
853         if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
854         profileName = w->selectedProfile();
855         projectFolder = w->selectedFolder();
856         projectTracks = w->tracks();
857         delete w;
858     }
859     KdenliveDoc *doc = new KdenliveDoc(KUrl(), projectFolder, m_commandStack, profileName, projectTracks,  this);
860     doc->m_autosave = new KAutoSaveFile(KUrl(), doc);
861     TrackView *trackView = new TrackView(doc, this);
862     m_timelineArea->addTab(trackView, KIcon("kdenlive"), doc->description());
863     if (m_timelineArea->count() == 1) {
864         connectDocumentInfo(doc);
865         connectDocument(trackView, doc);
866     } else m_timelineArea->setTabBarHidden(false);
867 }
868
869 void MainWindow::activateDocument() {
870     if (m_timelineArea->currentWidget() == NULL) return;
871     TrackView *currentTab = (TrackView *) m_timelineArea->currentWidget();
872     KdenliveDoc *currentDoc = currentTab->document();
873     connectDocumentInfo(currentDoc);
874     connectDocument(currentTab, currentDoc);
875 }
876
877 void MainWindow::closeCurrentDocument() {
878     QWidget *w = m_timelineArea->currentWidget();
879     if (!w) return;
880     // closing current document
881     int ix = m_timelineArea->currentIndex() + 1;
882     if (ix == m_timelineArea->count()) ix = 0;
883     m_timelineArea->setCurrentIndex(ix);
884     TrackView *tabToClose = (TrackView *) w;
885     KdenliveDoc *docToClose = tabToClose->document();
886     if (docToClose && docToClose->isModified()) {
887         switch (KMessageBox::warningYesNoCancel(this, i18n("Save changes to document ?"))) {
888         case KMessageBox::Yes :
889             // save document here. If saving fails, return false;
890             saveFile();
891             break;
892         case KMessageBox::Cancel :
893             return;
894         default:
895             break;
896         }
897     }
898     m_timelineArea->removeTab(m_timelineArea->indexOf(w));
899     if (m_timelineArea->count() == 1) m_timelineArea->setTabBarHidden(true);
900     delete docToClose;
901     delete w;
902     if (m_timelineArea->count() == 0) {
903         m_activeDocument = NULL;
904         effectStack->clear();
905         transitionConfig->slotTransitionItemSelected(NULL);
906     }
907 }
908
909 void MainWindow::saveFileAs(const QString &outputFileName) {
910     m_projectMonitor->saveSceneList(outputFileName, m_activeDocument->documentInfoXml());
911     m_activeDocument->setUrl(KUrl(outputFileName));
912     if (m_activeDocument->m_autosave == NULL) {
913         m_activeDocument->m_autosave = new KAutoSaveFile(KUrl(outputFileName), this);
914     } else m_activeDocument->m_autosave->setManagedFile(KUrl(outputFileName));
915     setCaption(m_activeDocument->description());
916     m_timelineArea->setTabText(m_timelineArea->currentIndex(), m_activeDocument->description());
917     m_timelineArea->setTabToolTip(m_timelineArea->currentIndex(), m_activeDocument->url().path());
918     m_activeDocument->setModified(false);
919     m_fileOpenRecent->addUrl(KUrl(outputFileName));
920 }
921
922 void MainWindow::saveFileAs() {
923     QString outputFile = KFileDialog::getSaveFileName(KUrl(), "*.kdenlive|Kdenlive project files (*.kdenlive)");
924     if (QFile::exists(outputFile)) {
925         if (KMessageBox::questionYesNo(this, i18n("File already exists.\nDo you want to overwrite it ?")) == KMessageBox::No) return;
926     }
927     saveFileAs(outputFile);
928 }
929
930 void MainWindow::saveFile() {
931     if (!m_activeDocument) return;
932     if (m_activeDocument->url().isEmpty()) {
933         saveFileAs();
934     } else {
935         saveFileAs(m_activeDocument->url().path());
936         m_activeDocument->m_autosave->resize(0);
937     }
938 }
939
940 void MainWindow::openFile() {
941     KUrl url = KFileDialog::getOpenUrl(KUrl(), "*.kdenlive|Kdenlive project files (*.kdenlive)\n*.westley|MLT project files (*.westley)");
942     if (url.isEmpty()) return;
943     m_fileOpenRecent->addUrl(url);
944     openFile(url);
945 }
946
947 void MainWindow::openLastFile() {
948     KSharedConfigPtr config = KGlobal::config();
949     KUrl::List urls = m_fileOpenRecent->urls();
950     if (urls.isEmpty()) newFile(false);
951     else openFile(urls.last());
952 }
953
954 void MainWindow::openFile(const KUrl &url) {
955     // Check if the document is already opened
956     const int ct = m_timelineArea->count();
957     bool isOpened = false;
958     int i;
959     for (i = 0; i < ct; i++) {
960         TrackView *tab = (TrackView *) m_timelineArea->widget(i);
961         KdenliveDoc *doc = tab->document();
962         if (doc->url() == url) {
963             isOpened = true;
964             break;
965         }
966     }
967     if (isOpened) {
968         m_timelineArea->setCurrentIndex(i);
969         return;
970     }
971
972     // Check for backup file
973     QList<KAutoSaveFile *> staleFiles = KAutoSaveFile::staleFiles(url);
974     if (!staleFiles.isEmpty()) {
975         if (KMessageBox::questionYesNo(this,
976                                        i18n("Auto-saved files exist. Do you want to recover them now?"),
977                                        i18n("File Recovery"),
978                                        KGuiItem(i18n("Recover")), KGuiItem(i18n("Don't recover"))) == KMessageBox::Yes) {
979             recoverFiles(staleFiles);
980             return;
981         } else {
982             // remove the stale files
983             foreach(KAutoSaveFile *stale, staleFiles) {
984                 stale->open(QIODevice::ReadWrite);
985                 delete stale;
986             }
987         }
988     }
989     if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
990     doOpenFile(url, NULL);
991 }
992
993 void MainWindow::doOpenFile(const KUrl &url, KAutoSaveFile *stale) {
994     KdenliveDoc *doc;
995     doc = new KdenliveDoc(url, KUrl(), m_commandStack, QString(), QPoint(3, 2), this);
996     if (stale == NULL) {
997         stale = new KAutoSaveFile(url, doc);
998         doc->m_autosave = stale;
999     } else {
1000         doc->m_autosave = stale;
1001         doc->setUrl(stale->managedFile());
1002         doc->setModified(true);
1003         stale->setParent(doc);
1004     }
1005     connectDocumentInfo(doc);
1006     TrackView *trackView = new TrackView(doc, this);
1007     m_timelineArea->setCurrentIndex(m_timelineArea->addTab(trackView, KIcon("kdenlive"), doc->description()));
1008     m_timelineArea->setTabToolTip(m_timelineArea->currentIndex(), doc->url().path());
1009     if (m_timelineArea->count() > 1) m_timelineArea->setTabBarHidden(false);
1010     slotGotProgressInfo(QString(), -1);
1011     m_clipMonitor->refreshMonitor(true);
1012 }
1013
1014 void MainWindow::recoverFiles(QList<KAutoSaveFile *> staleFiles) {
1015     if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
1016     foreach(KAutoSaveFile *stale, staleFiles) {
1017         /*if (!stale->open(QIODevice::QIODevice::ReadOnly)) {
1018                   // show an error message; we could not steal the lockfile
1019                   // maybe another application got to the file before us?
1020                   delete stale;
1021                   continue;
1022         }*/
1023         kDebug() << "// OPENING RECOVERY: " << stale->fileName() << "\nMANAGED: " << stale->managedFile().path();
1024         // the stalefiles also contain ".lock" files so we must ignore them... bug in KAutoSaveFile ?
1025         if (!stale->fileName().endsWith(".lock")) doOpenFile(KUrl(stale->fileName()), stale);
1026         else KIO::NetAccess::del(KUrl(stale->fileName()), this);
1027     }
1028 }
1029
1030
1031 void MainWindow::parseProfiles(const QString &mltPath) {
1032     //kdDebug()<<" + + YOUR MLT INSTALL WAS FOUND IN: "<< MLT_PREFIX <<endl;
1033
1034     //KdenliveSettings::setDefaulttmpfolder();
1035     if (!mltPath.isEmpty()) {
1036         KdenliveSettings::setMltpath(mltPath + "/share/mlt/profiles/");
1037         KdenliveSettings::setRendererpath(mltPath + "/bin/inigo");
1038     }
1039
1040     if (KdenliveSettings::mltpath().isEmpty()) {
1041         KdenliveSettings::setMltpath(QString(MLT_PREFIX) + QString("/share/mlt/profiles/"));
1042     }
1043     if (KdenliveSettings::rendererpath().isEmpty()) {
1044         QString inigoPath = QString(MLT_PREFIX) + QString("/bin/inigo");
1045         if (!QFile::exists(inigoPath))
1046             inigoPath = KStandardDirs::findExe("inigo");
1047         else KdenliveSettings::setRendererpath(inigoPath);
1048     }
1049     QStringList profilesFilter;
1050     profilesFilter << "*";
1051     QStringList profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
1052
1053     if (profilesList.isEmpty()) {
1054         // Cannot find MLT path, try finding inigo
1055         QString profilePath = KdenliveSettings::rendererpath();
1056         if (!profilePath.isEmpty()) {
1057             profilePath = profilePath.section('/', 0, -3);
1058             KdenliveSettings::setMltpath(profilePath + "/share/mlt/profiles/");
1059             QStringList profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
1060         }
1061
1062         if (profilesList.isEmpty()) {
1063             // Cannot find the MLT profiles, ask for location
1064             KUrlRequesterDialog *getUrl = new KUrlRequesterDialog(KdenliveSettings::mltpath(), i18n("Cannot find your Mlt profiles, please give the path"), this);
1065             getUrl->fileDialog()->setMode(KFile::Directory);
1066             if (getUrl->exec() == QDialog::Rejected) {
1067                 ::exit(0);
1068             }
1069             KUrl mltPath = getUrl->selectedUrl();
1070             delete getUrl;
1071             if (mltPath.isEmpty()) ::exit(0);
1072             KdenliveSettings::setMltpath(mltPath.path());
1073             QStringList profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
1074         }
1075     }
1076
1077     if (KdenliveSettings::rendererpath().isEmpty()) {
1078         // Cannot find the MLT inigo renderer, ask for location
1079         KUrlRequesterDialog *getUrl = new KUrlRequesterDialog(QString(), i18n("Cannot find the inigo program required for rendering (part of Mlt)"), this);
1080         if (getUrl->exec() == QDialog::Rejected) {
1081             ::exit(0);
1082         }
1083         KUrl rendererPath = getUrl->selectedUrl();
1084         delete getUrl;
1085         if (rendererPath.isEmpty()) ::exit(0);
1086         KdenliveSettings::setRendererpath(rendererPath.path());
1087     }
1088
1089     kDebug() << "RESULTING MLT PATH: " << KdenliveSettings::mltpath();
1090
1091     // Parse MLT profiles to build a list of available video formats
1092     if (profilesList.isEmpty()) parseProfiles();
1093 }
1094
1095
1096 void MainWindow::slotEditProfiles() {
1097     ProfilesDialog *w = new ProfilesDialog;
1098     w->exec();
1099     delete w;
1100 }
1101
1102 void MainWindow::slotEditProjectSettings() {
1103     ProjectSettings *w = new ProjectSettings;
1104     if (w->exec() == QDialog::Accepted) {
1105         QString profile = w->selectedProfile();
1106         m_activeDocument->setProfilePath(profile);
1107         KdenliveSettings::setCurrent_profile(profile);
1108         KdenliveSettings::setProject_fps(m_activeDocument->fps());
1109         setCaption(m_activeDocument->description(), m_activeDocument->isModified());
1110         m_monitorManager->resetProfiles(m_activeDocument->timecode());
1111         if (m_renderWidget) m_renderWidget->setDocumentStandard(m_activeDocument->getDocumentStandard());
1112         m_timelineArea->setTabText(m_timelineArea->currentIndex(), m_activeDocument->description());
1113
1114         // We need to desactivate & reactivate monitors to get a refresh
1115         m_monitorManager->switchMonitors();
1116     }
1117     delete w;
1118 }
1119
1120 void MainWindow::slotRenderProject() {
1121     if (!m_renderWidget) {
1122         m_renderWidget = new RenderWidget(this);
1123         connect(m_renderWidget, SIGNAL(doRender(const QString&, const QString&, const QStringList &, const QStringList &, bool, bool, double, double)), this, SLOT(slotDoRender(const QString&, const QString&, const QStringList &, const QStringList &, bool, bool, double, double)));
1124         if (m_activeDocument) m_renderWidget->setGuides(m_activeDocument->guidesXml(), m_activeDocument->projectDuration());
1125     }
1126     /*TrackView *currentTab = (TrackView *) m_timelineArea->currentWidget();
1127     if (currentTab) m_renderWidget->setTimeline(currentTab);
1128     m_renderWidget->setDocument(m_activeDocument);*/
1129     m_renderWidget->show();
1130 }
1131
1132 void MainWindow::slotDoRender(const QString &dest, const QString &render, const QStringList &overlay_args, const QStringList &avformat_args, bool zoneOnly, bool playAfter, double guideStart, double guideEnd) {
1133     if (dest.isEmpty()) return;
1134     int in;
1135     int out;
1136     TrackView *currentTab = (TrackView *) m_timelineArea->currentWidget();
1137     if (currentTab && zoneOnly) {
1138         in = currentTab->inPoint();
1139         out = currentTab->outPoint();
1140     }
1141     KTemporaryFile temp;
1142     temp.setAutoRemove(false);
1143     temp.setSuffix(".westley");
1144     if (temp.open()) {
1145         m_projectMonitor->saveSceneList(temp.fileName());
1146         QStringList args;
1147         args << "-erase";
1148         if (zoneOnly) args << "in=" + QString::number(in) << "out=" + QString::number(out);
1149         else if (guideStart != -1) {
1150             args << "in=" + QString::number(GenTime(guideStart).frames(m_activeDocument->fps())) << "out=" + QString::number(GenTime(guideEnd).frames(m_activeDocument->fps()));
1151         }
1152         if (!overlay_args.isEmpty()) args << "preargs=" + overlay_args.join(" ");
1153         QString videoPlayer = "-";
1154         if (playAfter) {
1155             videoPlayer = KdenliveSettings::defaultplayerapp();
1156             if (videoPlayer.isEmpty()) KMessageBox::sorry(this, i18n("Cannot play video after rendering because the default video player application is not set.\nPlease define it in Kdenlive settings dialog."));
1157         }
1158         if (!QFile::exists(KdenliveSettings::rendererpath())) {
1159             KMessageBox::sorry(this, i18n("Cannot find the inigo program required for rendering (part of Mlt)"));
1160             return;
1161         }
1162         args << KdenliveSettings::rendererpath() << m_activeDocument->profilePath() << render << videoPlayer << temp.fileName() << dest << avformat_args;
1163         QString renderer = QCoreApplication::applicationDirPath() + QString("/kdenlive_render");
1164         if (!QFile::exists(renderer)) renderer = "kdenlive_render";
1165         QProcess::startDetached(renderer, args);
1166
1167         KNotification::event("RenderStarted", i18n("Rendering <i>%1</i> started", dest), QPixmap(), this);
1168     }
1169 }
1170
1171 void MainWindow::slotUpdateMousePosition(int pos) {
1172     if (m_activeDocument)
1173         switch (m_timecodeFormat->currentIndex()) {
1174         case 0:
1175             statusBar()->changeItem(m_activeDocument->timecode().getTimecodeFromFrames(pos), ID_TIMELINE_POS);
1176             break;
1177         default:
1178             statusBar()->changeItem(QString::number(pos), ID_TIMELINE_POS);
1179         }
1180 }
1181
1182 void MainWindow::slotUpdateDocumentState(bool modified) {
1183     setCaption(m_activeDocument->description(), modified);
1184     m_saveAction->setEnabled(modified);
1185     if (modified) {
1186         m_timelineArea->setTabTextColor(m_timelineArea->currentIndex(), palette().color(QPalette::Link));
1187         m_timelineArea->setTabIcon(m_timelineArea->currentIndex(), KIcon("document-save"));
1188     } else {
1189         m_timelineArea->setTabTextColor(m_timelineArea->currentIndex(), palette().color(QPalette::Text));
1190         m_timelineArea->setTabIcon(m_timelineArea->currentIndex(), KIcon("kdenlive"));
1191     }
1192 }
1193
1194 void MainWindow::connectDocumentInfo(KdenliveDoc *doc) {
1195     if (m_activeDocument) {
1196         if (m_activeDocument == doc) return;
1197         disconnect(m_activeDocument, SIGNAL(progressInfo(const QString &, int)), this, SLOT(slotGotProgressInfo(const QString &, int)));
1198     }
1199     connect(doc, SIGNAL(progressInfo(const QString &, int)), this, SLOT(slotGotProgressInfo(const QString &, int)));
1200 }
1201
1202 void MainWindow::connectDocument(TrackView *trackView, KdenliveDoc *doc) { //changed
1203     //m_projectMonitor->stop();
1204     kDebug() << "///////////////////   CONNECTING DOC TO PROJECT VIEW ////////////////";
1205     if (m_activeDocument) {
1206         if (m_activeDocument == doc) return;
1207         m_activeDocument->backupMltPlaylist();
1208         if (m_activeTimeline) {
1209             disconnect(m_projectMonitor, SIGNAL(renderPosition(int)), m_activeTimeline, SLOT(moveCursorPos(int)));
1210             disconnect(m_projectMonitor, SIGNAL(zoneUpdated(QPoint)), m_activeTimeline, SLOT(slotSetZone(QPoint)));
1211             disconnect(m_projectMonitor, SIGNAL(durationChanged(int)), m_activeTimeline, SLOT(setDuration(int)));
1212             disconnect(m_projectList, SIGNAL(projectModified()), m_activeDocument, SLOT(setModified()));
1213             disconnect(m_activeDocument, SIGNAL(guidesUpdated()), this, SLOT(slotGuidesUpdated()));
1214             disconnect(m_activeDocument, SIGNAL(addProjectClip(DocClipBase *)), m_projectList, SLOT(slotAddClip(DocClipBase *)));
1215             disconnect(m_activeDocument, SIGNAL(addProjectFolder(const QString, const QString &, bool, bool)), m_projectList, SLOT(slotAddFolder(const QString, const QString &, bool, bool)));
1216             disconnect(m_activeDocument, SIGNAL(signalDeleteProjectClip(const QString &)), m_projectList, SLOT(slotDeleteClip(const QString &)));
1217             disconnect(m_activeDocument, SIGNAL(updateClipDisplay(const QString &)), m_projectList, SLOT(slotUpdateClip(const QString &)));
1218             disconnect(m_activeDocument, SIGNAL(selectLastAddedClip(const QString &)), m_projectList, SLOT(slotSelectClip(const QString &)));
1219             disconnect(m_activeDocument, SIGNAL(deleteTimelineClip(const QString &)), m_activeTimeline, SLOT(slotDeleteClip(const QString &)));
1220             disconnect(m_activeTimeline, SIGNAL(clipItemSelected(ClipItem*)), effectStack, SLOT(slotClipItemSelected(ClipItem*)));
1221             disconnect(m_activeTimeline, SIGNAL(clipItemSelected(ClipItem*)), this, SLOT(slotActivateEffectStackView()));
1222             disconnect(m_activeTimeline, SIGNAL(transitionItemSelected(Transition*)), transitionConfig, SLOT(slotTransitionItemSelected(Transition*)));
1223             disconnect(m_activeTimeline, SIGNAL(transitionItemSelected(Transition*)), this, SLOT(slotActivateTransitionView()));
1224             disconnect(m_zoomSlider, SIGNAL(valueChanged(int)), m_activeTimeline, SLOT(slotChangeZoom(int)));
1225             disconnect(m_activeTimeline->projectView(), SIGNAL(displayMessage(const QString&, MessageType)), m_messageLabel, SLOT(setMessage(const QString&, MessageType)));
1226             disconnect(m_activeTimeline->projectView(), SIGNAL(showClipFrame(DocClipBase *, const int)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *, const int)));
1227
1228             disconnect(m_activeDocument, SIGNAL(docModified(bool)), this, SLOT(slotUpdateDocumentState(bool)));
1229             disconnect(effectStack, SIGNAL(updateClipEffect(ClipItem*, QDomElement, QDomElement, int)), m_activeTimeline->projectView(), SLOT(slotUpdateClipEffect(ClipItem*, QDomElement, QDomElement, int)));
1230             disconnect(effectStack, SIGNAL(removeEffect(ClipItem*, QDomElement)), m_activeTimeline->projectView(), SLOT(slotDeleteEffect(ClipItem*, QDomElement)));
1231             disconnect(effectStack, SIGNAL(changeEffectState(ClipItem*, int, bool)), m_activeTimeline->projectView(), SLOT(slotChangeEffectState(ClipItem*, int, bool)));
1232             disconnect(effectStack, SIGNAL(changeEffectPosition(ClipItem*, int, int)), m_activeTimeline->projectView(), SLOT(slotChangeEffectPosition(ClipItem*, int, int)));
1233             disconnect(effectStack, SIGNAL(refreshEffectStack(ClipItem*)), m_activeTimeline->projectView(), SLOT(slotRefreshEffects(ClipItem*)));
1234             disconnect(effectStack, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
1235             disconnect(transitionConfig, SIGNAL(transitionUpdated(Transition *, QDomElement)), m_activeTimeline->projectView() , SLOT(slotTransitionUpdated(Transition *, QDomElement)));
1236             disconnect(transitionConfig, SIGNAL(seekTimeline(int)), m_activeTimeline->projectView() , SLOT(setCursorPos(int)));
1237             disconnect(m_activeTimeline->projectView(), SIGNAL(activateDocumentMonitor()), m_projectMonitor, SLOT(activateMonitor()));
1238             disconnect(m_activeTimeline, SIGNAL(zoneMoved(int, int)), m_projectMonitor, SLOT(slotZoneMoved(int, int)));
1239             disconnect(m_projectList, SIGNAL(loadingIsOver()), m_activeTimeline->projectView(), SLOT(slotUpdateAllThumbs()));
1240             effectStack->clear();
1241         }
1242         m_activeDocument->setRenderer(NULL);
1243         disconnect(m_projectList, SIGNAL(clipSelected(DocClipBase *)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *)));
1244         m_clipMonitor->stop();
1245     }
1246     KdenliveSettings::setCurrent_profile(doc->profilePath());
1247     KdenliveSettings::setProject_fps(doc->fps());
1248     m_monitorManager->resetProfiles(doc->timecode());
1249     m_projectList->setDocument(doc);
1250     transitionConfig->updateProjectFormat(doc->mltProfile());
1251     effectStack->updateProjectFormat(doc->mltProfile());
1252     connect(m_projectList, SIGNAL(clipSelected(DocClipBase *)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *)));
1253     connect(m_projectList, SIGNAL(projectModified()), doc, SLOT(setModified()));
1254     connect(trackView, SIGNAL(cursorMoved()), m_projectMonitor, SLOT(activateMonitor()));
1255     connect(trackView, SIGNAL(mousePosition(int)), this, SLOT(slotUpdateMousePosition(int)));
1256     connect(m_projectMonitor, SIGNAL(renderPosition(int)), trackView, SLOT(moveCursorPos(int)));
1257     connect(m_projectMonitor, SIGNAL(zoneUpdated(QPoint)), trackView, SLOT(slotSetZone(QPoint)));
1258     connect(m_projectMonitor, SIGNAL(durationChanged(int)), trackView, SLOT(setDuration(int)));
1259     connect(doc, SIGNAL(addProjectClip(DocClipBase *)), m_projectList, SLOT(slotAddClip(DocClipBase *)));
1260     connect(doc, SIGNAL(addProjectFolder(const QString, const QString &, bool, bool)), m_projectList, SLOT(slotAddFolder(const QString, const QString &, bool, bool)));
1261     connect(doc, SIGNAL(signalDeleteProjectClip(const QString &)), m_projectList, SLOT(slotDeleteClip(const QString &)));
1262     connect(doc, SIGNAL(updateClipDisplay(const QString &)), m_projectList, SLOT(slotUpdateClip(const QString &)));
1263     connect(doc, SIGNAL(selectLastAddedClip(const QString &)), m_projectList, SLOT(slotSelectClip(const QString &)));
1264
1265     connect(doc, SIGNAL(deleteTimelineClip(const QString &)), trackView, SLOT(slotDeleteClip(const QString &)));
1266     connect(doc, SIGNAL(docModified(bool)), this, SLOT(slotUpdateDocumentState(bool)));
1267     connect(doc, SIGNAL(guidesUpdated()), this, SLOT(slotGuidesUpdated()));
1268
1269
1270     connect(trackView, SIGNAL(clipItemSelected(ClipItem*)), effectStack, SLOT(slotClipItemSelected(ClipItem*)));
1271     connect(trackView, SIGNAL(clipItemSelected(ClipItem*)), this, SLOT(slotActivateEffectStackView()));
1272     connect(trackView, SIGNAL(transitionItemSelected(Transition*)), transitionConfig, SLOT(slotTransitionItemSelected(Transition*)));
1273     connect(trackView, SIGNAL(transitionItemSelected(Transition*)), this, SLOT(slotActivateTransitionView()));
1274     m_zoomSlider->setValue(doc->zoom());
1275     connect(m_zoomSlider, SIGNAL(valueChanged(int)), trackView, SLOT(slotChangeZoom(int)));
1276     connect(trackView->projectView(), SIGNAL(zoomIn()), this, SLOT(slotZoomIn()));
1277     connect(trackView->projectView(), SIGNAL(zoomOut()), this, SLOT(slotZoomOut()));
1278     connect(trackView->projectView(), SIGNAL(displayMessage(const QString&, MessageType)), m_messageLabel, SLOT(setMessage(const QString&, MessageType)));
1279
1280     connect(trackView->projectView(), SIGNAL(showClipFrame(DocClipBase *, const int)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *, const int)));
1281
1282
1283     connect(effectStack, SIGNAL(updateClipEffect(ClipItem*, QDomElement, QDomElement, int)), trackView->projectView(), SLOT(slotUpdateClipEffect(ClipItem*, QDomElement, QDomElement, int)));
1284     connect(effectStack, SIGNAL(removeEffect(ClipItem*, QDomElement)), trackView->projectView(), SLOT(slotDeleteEffect(ClipItem*, QDomElement)));
1285     connect(effectStack, SIGNAL(changeEffectState(ClipItem*, int, bool)), trackView->projectView(), SLOT(slotChangeEffectState(ClipItem*, int, bool)));
1286     connect(effectStack, SIGNAL(changeEffectPosition(ClipItem*, int, int)), trackView->projectView(), SLOT(slotChangeEffectPosition(ClipItem*, int, int)));
1287     connect(effectStack, SIGNAL(refreshEffectStack(ClipItem*)), trackView->projectView(), SLOT(slotRefreshEffects(ClipItem*)));
1288     connect(transitionConfig, SIGNAL(transitionUpdated(Transition *, QDomElement)), trackView->projectView() , SLOT(slotTransitionUpdated(Transition *, QDomElement)));
1289     connect(transitionConfig, SIGNAL(seekTimeline(int)), trackView->projectView() , SLOT(setCursorPos(int)));
1290     connect(effectStack, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
1291
1292     connect(trackView->projectView(), SIGNAL(activateDocumentMonitor()), m_projectMonitor, SLOT(activateMonitor()));
1293     connect(trackView, SIGNAL(zoneMoved(int, int)), m_projectMonitor, SLOT(slotZoneMoved(int, int)));
1294     connect(m_projectList, SIGNAL(loadingIsOver()), trackView->projectView(), SLOT(slotUpdateAllThumbs()));
1295
1296     trackView->projectView()->setContextMenu(m_timelineContextMenu, m_timelineContextClipMenu, m_timelineContextTransitionMenu);
1297     m_activeTimeline = trackView;
1298     if (m_renderWidget) m_renderWidget->setDocumentStandard(doc->getDocumentStandard());
1299     doc->setRenderer(m_projectMonitor->render);
1300     m_commandStack->setActiveStack(doc->commandStack());
1301     KdenliveSettings::setProject_display_ratio(doc->dar());
1302     m_projectList->updateAllClips();
1303     //doc->clipManager()->checkAudioThumbs();
1304
1305     //m_overView->setScene(trackView->projectScene());
1306     //m_overView->scale(m_overView->width() / trackView->duration(), m_overView->height() / (50 * trackView->tracksNumber()));
1307     //m_overView->fitInView(m_overView->itemAt(0, 50), Qt::KeepAspectRatio);
1308
1309     setCaption(doc->description(), doc->isModified());
1310     m_saveAction->setEnabled(doc->isModified());
1311     m_activeDocument = doc;
1312 }
1313
1314 void MainWindow::slotGuidesUpdated() {
1315     if (m_renderWidget) m_renderWidget->setGuides(m_activeDocument->guidesXml(), m_activeDocument->projectDuration());
1316 }
1317
1318 void MainWindow::slotPreferences(int page, int option) {
1319     //An instance of your dialog could be already created and could be
1320     // cached, in which case you want to display the cached dialog
1321     // instead of creating another one
1322     if (KConfigDialog::showDialog("settings")) {
1323         if (page != -1) static_cast <KdenliveSettingsDialog*>(KConfigDialog::exists("settings"))->showPage(page, option);
1324         return;
1325     }
1326
1327     // KConfigDialog didn't find an instance of this dialog, so lets
1328     // create it :
1329     KdenliveSettingsDialog* dialog = new KdenliveSettingsDialog(this);
1330     connect(dialog, SIGNAL(settingsChanged(const QString&)), this, SLOT(updateConfiguration()));
1331     connect(dialog, SIGNAL(doResetProfile()), m_monitorManager, SLOT(slotResetProfiles()));
1332     dialog->show();
1333     if (page != -1) dialog->showPage(page, option);
1334 }
1335
1336 void MainWindow::updateConfiguration() {
1337     //TODO: we should apply settings to all projects, not only the current one
1338     if (m_activeTimeline) {
1339         m_activeTimeline->refresh();
1340         m_activeTimeline->projectView()->checkAutoScroll();
1341         m_activeTimeline->projectView()->checkTrackHeight();
1342         if (m_activeDocument) m_activeDocument->clipManager()->checkAudioThumbs();
1343     }
1344     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
1345     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
1346     activateShuttleDevice();
1347
1348 }
1349
1350 void MainWindow::slotSwitchVideoThumbs() {
1351     KdenliveSettings::setVideothumbnails(!KdenliveSettings::videothumbnails());
1352     if (m_activeTimeline) {
1353         m_activeTimeline->refresh();
1354     }
1355     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
1356 }
1357
1358 void MainWindow::slotSwitchAudioThumbs() {
1359     KdenliveSettings::setAudiothumbnails(!KdenliveSettings::audiothumbnails());
1360     if (m_activeTimeline) {
1361         m_activeTimeline->refresh();
1362         m_activeTimeline->projectView()->checkAutoScroll();
1363         if (m_activeDocument) m_activeDocument->clipManager()->checkAudioThumbs();
1364     }
1365     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
1366 }
1367
1368 void MainWindow::slotSwitchMarkersComments() {
1369     KdenliveSettings::setShowmarkers(!KdenliveSettings::showmarkers());
1370     if (m_activeTimeline) {
1371         m_activeTimeline->refresh();
1372     }
1373     m_buttonShowMarkers->setChecked(KdenliveSettings::showmarkers());
1374 }
1375
1376 void MainWindow::slotSwitchSnap() {
1377     KdenliveSettings::setSnaptopoints(!KdenliveSettings::snaptopoints());
1378     m_buttonShowMarkers->setChecked(KdenliveSettings::snaptopoints());
1379 }
1380
1381
1382 void MainWindow::slotDeleteTimelineClip() {
1383     if (QApplication::focusWidget()->parentWidget()->parentWidget() == projectListDock) m_projectList->slotRemoveClip();
1384     else if (m_activeTimeline) {
1385         m_activeTimeline->projectView()->deleteSelectedClips();
1386     }
1387 }
1388
1389 void MainWindow::slotChangeClipSpeed() {
1390     if (m_activeTimeline) {
1391         m_activeTimeline->projectView()->changeClipSpeed();
1392     }
1393 }
1394
1395 void MainWindow::slotAddClipMarker() {
1396     if (m_activeTimeline) {
1397         m_activeTimeline->projectView()->slotAddClipMarker();
1398     }
1399 }
1400
1401 void MainWindow::slotDeleteClipMarker() {
1402     if (m_activeTimeline) {
1403         m_activeTimeline->projectView()->slotDeleteClipMarker();
1404     }
1405 }
1406
1407 void MainWindow::slotDeleteAllClipMarkers() {
1408     if (m_activeTimeline) {
1409         m_activeTimeline->projectView()->slotDeleteAllClipMarkers();
1410     }
1411 }
1412
1413 void MainWindow::slotEditClipMarker() {
1414     if (m_activeTimeline) {
1415         m_activeTimeline->projectView()->slotEditClipMarker();
1416     }
1417 }
1418
1419 void MainWindow::slotAddGuide() {
1420     if (m_activeTimeline)
1421         m_activeTimeline->projectView()->slotAddGuide();
1422 }
1423
1424 void MainWindow::slotEditGuide() {
1425     if (m_activeTimeline)
1426         m_activeTimeline->projectView()->slotEditGuide();
1427 }
1428
1429 void MainWindow::slotDeleteGuide() {
1430     if (m_activeTimeline)
1431         m_activeTimeline->projectView()->slotDeleteGuide();
1432 }
1433
1434 void MainWindow::slotDeleteAllGuides() {
1435     if (m_activeTimeline)
1436         m_activeTimeline->projectView()->slotDeleteAllGuides();
1437 }
1438
1439 void MainWindow::slotCutTimelineClip() {
1440     if (m_activeTimeline) {
1441         m_activeTimeline->projectView()->cutSelectedClips();
1442     }
1443 }
1444
1445 void MainWindow::slotAddProjectClip(KUrl url) {
1446     if (m_activeDocument)
1447         m_activeDocument->slotAddClipFile(url, QString());
1448 }
1449
1450 void MainWindow::slotAddTransition(QAction *result) {
1451     if (!result) return;
1452     QDomElement effect = transitions.getEffectByName(result->data().toString());
1453     if (m_activeTimeline) {
1454         m_activeTimeline->projectView()->slotAddTransitionToSelectedClips(effect);
1455     }
1456 }
1457
1458 void MainWindow::slotAddVideoEffect(QAction *result) {
1459     if (!result) return;
1460     QStringList info = result->data().toStringList();
1461     if (info.isEmpty()) return;
1462     QDomElement effect = videoEffects.getEffectByTag(info.at(1), info.at(2));
1463     slotAddEffect(effect);
1464 }
1465
1466 void MainWindow::slotAddAudioEffect(QAction *result) {
1467     if (!result) return;
1468     QStringList info = result->data().toStringList();
1469     if (info.isEmpty()) return;
1470     QDomElement effect = audioEffects.getEffectByTag(info.at(1), info.at(2));
1471     slotAddEffect(effect);
1472 }
1473
1474 void MainWindow::slotAddCustomEffect(QAction *result) {
1475     if (!result) return;
1476     QStringList info = result->data().toStringList();
1477     if (info.isEmpty()) return;
1478     QDomElement effect = customEffects.getEffectByTag(info.at(1), info.at(2));
1479     slotAddEffect(effect);
1480 }
1481
1482 void MainWindow::slotZoomIn() {
1483     m_zoomSlider->setValue(m_zoomSlider->value() - 1);
1484 }
1485
1486 void MainWindow::slotZoomOut() {
1487     m_zoomSlider->setValue(m_zoomSlider->value() + 1);
1488 }
1489
1490 void MainWindow::slotFitZoom() {
1491     if (m_activeTimeline) {
1492         m_zoomSlider->setValue(m_activeTimeline->fitZoom());
1493     }
1494 }
1495
1496 void MainWindow::slotGotProgressInfo(const QString &message, int progress) {
1497     statusProgressBar->setValue(progress);
1498     if (progress >= 0) {
1499         if (!message.isEmpty()) m_messageLabel->setMessage(message, InformationMessage);//statusLabel->setText(message);
1500         statusProgressBar->setVisible(true);
1501     } else {
1502         m_messageLabel->setMessage(QString(), DefaultMessage);
1503         statusProgressBar->setVisible(false);
1504     }
1505 }
1506
1507 void MainWindow::slotShowClipProperties(DocClipBase *clip) {
1508     if (clip->clipType() == TEXT) {
1509         QString titlepath = m_activeDocument->projectFolder().path() + "/titles/";
1510         QString path = clip->getProperty("resource");
1511         TitleWidget *dia_ui = new TitleWidget(KUrl(), titlepath, m_projectMonitor->render, this);
1512         QDomDocument doc;
1513         doc.setContent(clip->getProperty("xmldata"));
1514         dia_ui->setXml(doc);
1515         if (dia_ui->exec() == QDialog::Accepted) {
1516             QPixmap pix = dia_ui->renderedPixmap();
1517             pix.save(path);
1518             //slotAddClipFile(KUrl("/tmp/kdenlivetitle.png"), QString(), -1);
1519             //m_clipManager->slotEditTextClipFile(id, dia_ui->xml().toString());
1520             QMap <QString, QString> newprops;
1521             newprops.insert("xmldata", dia_ui->xml().toString());
1522             EditClipCommand *command = new EditClipCommand(m_projectList, clip->getId(), clip->properties(), newprops, true);
1523             m_activeDocument->commandStack()->push(command);
1524             m_clipMonitor->refreshMonitor(true);
1525             m_activeDocument->setModified(true);
1526         }
1527         delete dia_ui;
1528
1529         //m_activeDocument->editTextClip(clip->getProperty("xml"), clip->getId());
1530         return;
1531     }
1532     ClipProperties dia(clip, m_activeDocument->timecode(), m_activeDocument->fps(), this);
1533     connect(&dia, SIGNAL(addMarker(const QString &, GenTime, QString)), m_activeTimeline->projectView(), SLOT(slotAddClipMarker(const QString &, GenTime, QString)));
1534     if (dia.exec() == QDialog::Accepted) {
1535         EditClipCommand *command = new EditClipCommand(m_projectList, dia.clipId(), clip->properties(), dia.properties(), true);
1536         m_activeDocument->commandStack()->push(command);
1537
1538         //m_projectList->slotUpdateClipProperties(dia.clipId(), dia.properties());
1539         if (dia.needsTimelineRefresh()) {
1540             // update clip occurences in timeline
1541             m_activeTimeline->projectView()->slotUpdateClip(dia.clipId());
1542         }
1543     }
1544 }
1545
1546 void MainWindow::customEvent(QEvent* e) {
1547     if (e->type() == QEvent::User) {
1548         // The timeline playing position changed...
1549         kDebug() << "RECIEVED JOG EVEMNT!!!";
1550     }
1551 }
1552 void MainWindow::slotActivateEffectStackView() {
1553     effectStack->raiseWindow(effectStackDock);
1554 }
1555
1556 void MainWindow::slotActivateTransitionView() {
1557     transitionConfig->raiseWindow(transitionConfigDock);
1558 }
1559
1560 void MainWindow::slotSnapRewind() {
1561     if (m_projectMonitor->isActive()) {
1562         if (m_activeTimeline)
1563             m_activeTimeline->projectView()->slotSeekToPreviousSnap();
1564     }
1565 }
1566
1567 void MainWindow::slotSnapForward() {
1568     if (m_projectMonitor->isActive()) {
1569         if (m_activeTimeline)
1570             m_activeTimeline->projectView()->slotSeekToNextSnap();
1571     }
1572 }
1573
1574 void MainWindow::slotClipStart() {
1575     if (m_projectMonitor->isActive()) {
1576         if (m_activeTimeline)
1577             m_activeTimeline->projectView()->clipStart();
1578     }
1579 }
1580
1581 void MainWindow::slotClipEnd() {
1582     if (m_projectMonitor->isActive()) {
1583         if (m_activeTimeline)
1584             m_activeTimeline->projectView()->clipEnd();
1585     }
1586 }
1587
1588 void MainWindow::slotChangeTool(QAction * action) {
1589     if (action == m_buttonSelectTool) slotSetTool(SELECTTOOL);
1590     else if (action == m_buttonRazorTool) slotSetTool(RAZORTOOL);
1591 }
1592
1593 void MainWindow::slotSetTool(PROJECTTOOL tool) {
1594     if (m_activeDocument && m_activeTimeline) {
1595         //m_activeDocument->setTool(tool);
1596         m_activeTimeline->projectView()->setTool(tool);
1597     }
1598 }
1599
1600 void MainWindow::slotCopy() {
1601     if (!m_activeDocument || !m_activeTimeline) return;
1602     m_activeTimeline->projectView()->copyClip();
1603 }
1604
1605 void MainWindow::slotPaste() {
1606     if (!m_activeDocument || !m_activeTimeline) return;
1607     m_activeTimeline->projectView()->pasteClip();
1608 }
1609
1610 void MainWindow::slotPasteEffects() {
1611     if (!m_activeDocument || !m_activeTimeline) return;
1612     m_activeTimeline->projectView()->pasteClipEffects();
1613 }
1614
1615 void MainWindow::slotFind() {
1616     if (!m_activeDocument || !m_activeTimeline) return;
1617     m_projectSearch->setEnabled(false);
1618     m_findActivated = true;
1619     m_findString = QString();
1620     m_activeTimeline->projectView()->initSearchStrings();
1621     statusBar()->showMessage(i18n("Starting -- find text as you type"));
1622     m_findTimer.start(5000);
1623     qApp->installEventFilter(this);
1624 }
1625
1626 void MainWindow::slotFindNext() {
1627     if (m_activeTimeline && m_activeTimeline->projectView()->findNextString(m_findString)) {
1628         statusBar()->showMessage(i18n("Found : %1", m_findString));
1629     } else {
1630         statusBar()->showMessage(i18n("Reached end of project"));
1631     }
1632     m_findTimer.start(4000);
1633 }
1634
1635 void MainWindow::findAhead() {
1636     if (m_activeTimeline && m_activeTimeline->projectView()->findString(m_findString)) {
1637         m_projectSearchNext->setEnabled(true);
1638         statusBar()->showMessage(i18n("Found : %1", m_findString));
1639     } else {
1640         m_projectSearchNext->setEnabled(false);
1641         statusBar()->showMessage(i18n("Not found : %1", m_findString));
1642     }
1643 }
1644
1645 void MainWindow::findTimeout() {
1646     m_projectSearchNext->setEnabled(false);
1647     m_findActivated = false;
1648     m_findString = QString();
1649     statusBar()->showMessage(i18n("Find stopped"), 3000);
1650     if (m_activeTimeline) m_activeTimeline->projectView()->clearSearchStrings();
1651     m_projectSearch->setEnabled(true);
1652     removeEventFilter(this);
1653 }
1654
1655 void MainWindow::keyPressEvent(QKeyEvent *ke) {
1656     if (m_findActivated) {
1657         if (ke->key() == Qt::Key_Backspace) {
1658             m_findString = m_findString.left(m_findString.length() - 1);
1659
1660             if (!m_findString.isEmpty()) {
1661                 findAhead();
1662             } else {
1663                 findTimeout();
1664             }
1665
1666             m_findTimer.start(4000);
1667             ke->accept();
1668             return;
1669         } else if (ke->key() == Qt::Key_Escape) {
1670             findTimeout();
1671             ke->accept();
1672             return;
1673         } else if (ke->key() == Qt::Key_Space || !ke->text().trimmed().isEmpty()) {
1674             m_findString += ke->text();
1675
1676             findAhead();
1677
1678             m_findTimer.start(4000);
1679             ke->accept();
1680             return;
1681         }
1682     } else KXmlGuiWindow::keyPressEvent(ke);
1683 }
1684
1685 bool MainWindow::eventFilter(QObject *obj, QEvent *event) {
1686     if (m_findActivated) {
1687         if (event->type() == QEvent::ShortcutOverride) {
1688             QKeyEvent* ke = (QKeyEvent*) event;
1689             if (ke->text().trimmed().isEmpty()) return false;
1690             ke->accept();
1691             return true;
1692         } else return false;
1693     } else {
1694         // pass the event on to the parent class
1695         return QMainWindow::eventFilter(obj, event);
1696     }
1697 }
1698
1699 void MainWindow::slotSaveZone(Render *render, QPoint zone) {
1700     KDialog *dialog = new KDialog(this);
1701     dialog->setCaption("Save clip zone");
1702     dialog->setButtons(KDialog::Ok | KDialog::Cancel);
1703
1704     QWidget *widget = new QWidget(dialog);
1705     dialog->setMainWidget(widget);
1706
1707     QVBoxLayout *vbox = new QVBoxLayout(widget);
1708     QLabel *label1 = new QLabel(i18n("Save clip zone as:"), this);
1709     QString path = m_activeDocument->projectFolder().path();
1710     path.append("/");
1711     path.append("untitled.westley");
1712     KUrlRequester *url = new KUrlRequester(KUrl(path), this);
1713     url->setFilter("video/mlt-playlist");
1714     QLabel *label2 = new QLabel(i18n("Description:"), this);
1715     KLineEdit *edit = new KLineEdit(this);
1716     vbox->addWidget(label1);
1717     vbox->addWidget(url);
1718     vbox->addWidget(label2);
1719     vbox->addWidget(edit);
1720     if (dialog->exec() == QDialog::Accepted) render->saveZone(url->url(), edit->text(), zone);
1721
1722 }
1723
1724 void MainWindow::slotSetInPoint() {
1725     if (m_clipMonitor->isActive()) {
1726         m_clipMonitor->slotSetZoneStart();
1727     } else m_activeTimeline->projectView()->setInPoint();
1728 }
1729
1730 void MainWindow::slotSetOutPoint() {
1731     if (m_clipMonitor->isActive()) {
1732         m_clipMonitor->slotSetZoneEnd();
1733     } else m_activeTimeline->projectView()->setOutPoint();
1734 }
1735
1736 #include "mainwindow.moc"