]> git.sesse.net Git - kdenlive/blob - src/mainwindow.cpp
Show project properties when creating new project, should 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::quit(this, SLOT(queryQuit()),
780                           collection);
781
782     KStandardAction::open(this, SLOT(openFile()),
783                           collection);
784
785     m_saveAction = KStandardAction::save(this, SLOT(saveFile()),
786                                          collection);
787
788     KStandardAction::saveAs(this, SLOT(saveFileAs()),
789                             collection);
790
791     KStandardAction::openNew(this, SLOT(newFile()),
792                              collection);
793
794     KStandardAction::preferences(this, SLOT(slotPreferences()),
795                                  collection);
796
797     KStandardAction::configureNotifications(this , SLOT(configureNotifications()) , collection);
798
799     KStandardAction::copy(this, SLOT(slotCopy()),
800                           collection);
801
802     KStandardAction::paste(this, SLOT(slotPaste()),
803                            collection);
804
805     KAction *undo = KStandardAction::undo(m_commandStack, SLOT(undo()),
806                                           collection);
807     undo->setEnabled(false);
808     connect(m_commandStack, SIGNAL(canUndoChanged(bool)), undo, SLOT(setEnabled(bool)));
809
810     KAction *redo = KStandardAction::redo(m_commandStack, SLOT(redo()),
811                                           collection);
812     redo->setEnabled(false);
813     connect(m_commandStack, SIGNAL(canRedoChanged(bool)), redo, SLOT(setEnabled(bool)));
814
815     KStandardAction::fullScreen(this, SLOT(slotFullScreen()), this, collection);
816
817     connect(collection, SIGNAL(actionHovered(QAction*)),
818             this, SLOT(slotDisplayActionMessage(QAction*)));
819     //connect(collection, SIGNAL( clearStatusText() ),
820     //statusBar(), SLOT( clear() ) );
821 }
822
823 void MainWindow::slotDisplayActionMessage(QAction *a) {
824     statusBar()->showMessage(a->data().toString(), 3000);
825 }
826
827 void MainWindow::saveOptions() {
828     KdenliveSettings::self()->writeConfig();
829     KSharedConfigPtr config = KGlobal::config();
830     m_fileOpenRecent->saveEntries(KConfigGroup(config, "Recent Files"));
831     config->sync();
832 }
833
834 void MainWindow::readOptions() {
835     KSharedConfigPtr config = KGlobal::config();
836     m_fileOpenRecent->loadEntries(KConfigGroup(config, "Recent Files"));
837     KConfigGroup initialGroup(config, "version");
838     if (!initialGroup.exists()) {
839         // this is our first run, show Wizard
840         Wizard *w = new Wizard(this);
841         if (w->exec() == QDialog::Accepted && w->isOk()) {
842             w->adjustSettings();
843             initialGroup.writeEntry("version", "0.7");
844             delete w;
845         } else {
846             ::exit(1);
847         }
848     }
849 }
850
851 void MainWindow::newFile(bool showProjectSettings) {
852     QString profileName;
853     KUrl projectFolder;
854     QPoint projectTracks(3, 2);
855     if (!showProjectSettings && m_timelineArea->count() == 0) {
856         if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
857         profileName = KdenliveSettings::default_profile();
858     }
859     else {
860         ProjectSettings *w = new ProjectSettings;
861         if (w->exec() != QDialog::Accepted) return;
862         if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
863         profileName = w->selectedProfile();
864         projectFolder = w->selectedFolder();
865         projectTracks = w->tracks();
866         delete w;
867     }
868     KdenliveDoc *doc = new KdenliveDoc(KUrl(), projectFolder, m_commandStack, profileName, projectTracks,  this);
869     doc->m_autosave = new KAutoSaveFile(KUrl(), doc);
870     TrackView *trackView = new TrackView(doc, this);
871     m_timelineArea->addTab(trackView, KIcon("kdenlive"), doc->description());
872     if (m_timelineArea->count() == 1) {
873         connectDocumentInfo(doc);
874         connectDocument(trackView, doc);
875     } else m_timelineArea->setTabBarHidden(false);
876 }
877
878 void MainWindow::activateDocument() {
879     if (m_timelineArea->currentWidget() == NULL) return;
880     TrackView *currentTab = (TrackView *) m_timelineArea->currentWidget();
881     KdenliveDoc *currentDoc = currentTab->document();
882     connectDocumentInfo(currentDoc);
883     connectDocument(currentTab, currentDoc);
884 }
885
886 void MainWindow::closeCurrentDocument() {
887     QWidget *w = m_timelineArea->currentWidget();
888     if (!w) return;
889     // closing current document
890     int ix = m_timelineArea->currentIndex() + 1;
891     if (ix == m_timelineArea->count()) ix = 0;
892     m_timelineArea->setCurrentIndex(ix);
893     TrackView *tabToClose = (TrackView *) w;
894     KdenliveDoc *docToClose = tabToClose->document();
895     if (docToClose && docToClose->isModified()) {
896         switch (KMessageBox::warningYesNoCancel(this, i18n("Save changes to document ?"))) {
897         case KMessageBox::Yes :
898             // save document here. If saving fails, return false;
899             saveFile();
900             break;
901         case KMessageBox::Cancel :
902             return;
903         default:
904             break;
905         }
906     }
907     m_timelineArea->removeTab(m_timelineArea->indexOf(w));
908     if (m_timelineArea->count() == 1) m_timelineArea->setTabBarHidden(true);
909     delete docToClose;
910     delete w;
911     if (m_timelineArea->count() == 0) {
912         m_activeDocument = NULL;
913         effectStack->clear();
914         transitionConfig->slotTransitionItemSelected(NULL);
915     }
916 }
917
918 void MainWindow::saveFileAs(const QString &outputFileName) {
919     m_projectMonitor->saveSceneList(outputFileName, m_activeDocument->documentInfoXml());
920     m_activeDocument->setUrl(KUrl(outputFileName));
921     if (m_activeDocument->m_autosave == NULL) {
922         m_activeDocument->m_autosave = new KAutoSaveFile(KUrl(outputFileName), this);
923     } else m_activeDocument->m_autosave->setManagedFile(KUrl(outputFileName));
924     setCaption(m_activeDocument->description());
925     m_timelineArea->setTabText(m_timelineArea->currentIndex(), m_activeDocument->description());
926     m_timelineArea->setTabToolTip(m_timelineArea->currentIndex(), m_activeDocument->url().path());
927     m_activeDocument->setModified(false);
928     m_fileOpenRecent->addUrl(KUrl(outputFileName));
929 }
930
931 void MainWindow::saveFileAs() {
932     QString outputFile = KFileDialog::getSaveFileName(KUrl(), "*.kdenlive|Kdenlive project files (*.kdenlive)");
933     if (QFile::exists(outputFile)) {
934         if (KMessageBox::questionYesNo(this, i18n("File already exists.\nDo you want to overwrite it ?")) == KMessageBox::No) return;
935     }
936     saveFileAs(outputFile);
937 }
938
939 void MainWindow::saveFile() {
940     if (!m_activeDocument) return;
941     if (m_activeDocument->url().isEmpty()) {
942         saveFileAs();
943     } else {
944         saveFileAs(m_activeDocument->url().path());
945         m_activeDocument->m_autosave->resize(0);
946     }
947 }
948
949 void MainWindow::openFile() {
950     KUrl url = KFileDialog::getOpenUrl(KUrl(), "*.kdenlive|Kdenlive project files (*.kdenlive)\n*.westley|MLT project files (*.westley)");
951     if (url.isEmpty()) return;
952     m_fileOpenRecent->addUrl(url);
953     openFile(url);
954 }
955
956 void MainWindow::openLastFile() {
957     KSharedConfigPtr config = KGlobal::config();
958     KUrl::List urls = m_fileOpenRecent->urls();
959     if (urls.isEmpty()) newFile(false);
960     else openFile(urls.last());
961 }
962
963 void MainWindow::openFile(const KUrl &url) {
964     // Check if the document is already opened
965     const int ct = m_timelineArea->count();
966     bool isOpened = false;
967     int i;
968     for (i = 0; i < ct; i++) {
969         TrackView *tab = (TrackView *) m_timelineArea->widget(i);
970         KdenliveDoc *doc = tab->document();
971         if (doc->url() == url) {
972             isOpened = true;
973             break;
974         }
975     }
976     if (isOpened) {
977         m_timelineArea->setCurrentIndex(i);
978         return;
979     }
980
981     // Check for backup file
982     QList<KAutoSaveFile *> staleFiles = KAutoSaveFile::staleFiles(url);
983     if (!staleFiles.isEmpty()) {
984         if (KMessageBox::questionYesNo(this,
985                                        i18n("Auto-saved files exist. Do you want to recover them now?"),
986                                        i18n("File Recovery"),
987                                        KGuiItem(i18n("Recover")), KGuiItem(i18n("Don't recover"))) == KMessageBox::Yes) {
988             recoverFiles(staleFiles);
989             return;
990         } else {
991             // remove the stale files
992             foreach(KAutoSaveFile *stale, staleFiles) {
993                 stale->open(QIODevice::ReadWrite);
994                 delete stale;
995             }
996         }
997     }
998     if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
999     doOpenFile(url, NULL);
1000 }
1001
1002 void MainWindow::doOpenFile(const KUrl &url, KAutoSaveFile *stale) {
1003     KdenliveDoc *doc;
1004     doc = new KdenliveDoc(url, KUrl(), m_commandStack, QString(), QPoint(3, 2), this);
1005     if (stale == NULL) {
1006         stale = new KAutoSaveFile(url, doc);
1007         doc->m_autosave = stale;
1008     } else {
1009         doc->m_autosave = stale;
1010         doc->setUrl(stale->managedFile());
1011         doc->setModified(true);
1012         stale->setParent(doc);
1013     }
1014     connectDocumentInfo(doc);
1015     TrackView *trackView = new TrackView(doc, this);
1016     m_timelineArea->setCurrentIndex(m_timelineArea->addTab(trackView, KIcon("kdenlive"), doc->description()));
1017     m_timelineArea->setTabToolTip(m_timelineArea->currentIndex(), doc->url().path());
1018     if (m_timelineArea->count() > 1) m_timelineArea->setTabBarHidden(false);
1019     slotGotProgressInfo(QString(), -1);
1020     m_clipMonitor->refreshMonitor(true);
1021 }
1022
1023 void MainWindow::recoverFiles(QList<KAutoSaveFile *> staleFiles) {
1024     if (!KdenliveSettings::activatetabs()) closeCurrentDocument();
1025     foreach(KAutoSaveFile *stale, staleFiles) {
1026         /*if (!stale->open(QIODevice::QIODevice::ReadOnly)) {
1027                   // show an error message; we could not steal the lockfile
1028                   // maybe another application got to the file before us?
1029                   delete stale;
1030                   continue;
1031         }*/
1032         kDebug() << "// OPENING RECOVERY: " << stale->fileName() << "\nMANAGED: " << stale->managedFile().path();
1033         // the stalefiles also contain ".lock" files so we must ignore them... bug in KAutoSaveFile ?
1034         if (!stale->fileName().endsWith(".lock")) doOpenFile(KUrl(stale->fileName()), stale);
1035         else KIO::NetAccess::del(KUrl(stale->fileName()), this);
1036     }
1037 }
1038
1039
1040 void MainWindow::parseProfiles(const QString &mltPath) {
1041     //kdDebug()<<" + + YOUR MLT INSTALL WAS FOUND IN: "<< MLT_PREFIX <<endl;
1042
1043     //KdenliveSettings::setDefaulttmpfolder();
1044     if (!mltPath.isEmpty()) {
1045         KdenliveSettings::setMltpath(mltPath + "/share/mlt/profiles/");
1046         KdenliveSettings::setRendererpath(mltPath + "/bin/inigo");
1047     }
1048
1049     if (KdenliveSettings::mltpath().isEmpty()) {
1050         KdenliveSettings::setMltpath(QString(MLT_PREFIX) + QString("/share/mlt/profiles/"));
1051     }
1052     if (KdenliveSettings::rendererpath().isEmpty()) {
1053         QString inigoPath = QString(MLT_PREFIX) + QString("/bin/inigo");
1054         if (!QFile::exists(inigoPath))
1055             inigoPath = KStandardDirs::findExe("inigo");
1056         else KdenliveSettings::setRendererpath(inigoPath);
1057     }
1058     QStringList profilesFilter;
1059     profilesFilter << "*";
1060     QStringList profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
1061
1062     if (profilesList.isEmpty()) {
1063         // Cannot find MLT path, try finding inigo
1064         QString profilePath = KdenliveSettings::rendererpath();
1065         if (!profilePath.isEmpty()) {
1066             profilePath = profilePath.section('/', 0, -3);
1067             KdenliveSettings::setMltpath(profilePath + "/share/mlt/profiles/");
1068             QStringList profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
1069         }
1070
1071         if (profilesList.isEmpty()) {
1072             // Cannot find the MLT profiles, ask for location
1073             KUrlRequesterDialog *getUrl = new KUrlRequesterDialog(KdenliveSettings::mltpath(), i18n("Cannot find your Mlt profiles, please give the path"), this);
1074             getUrl->fileDialog()->setMode(KFile::Directory);
1075             if (getUrl->exec() == QDialog::Rejected) {
1076                 ::exit(0);
1077             }
1078             KUrl mltPath = getUrl->selectedUrl();
1079             delete getUrl;
1080             if (mltPath.isEmpty()) ::exit(0);
1081             KdenliveSettings::setMltpath(mltPath.path());
1082             QStringList profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
1083         }
1084     }
1085
1086     if (KdenliveSettings::rendererpath().isEmpty()) {
1087         // Cannot find the MLT inigo renderer, ask for location
1088         KUrlRequesterDialog *getUrl = new KUrlRequesterDialog(QString(), i18n("Cannot find the inigo program required for rendering (part of Mlt)"), this);
1089         if (getUrl->exec() == QDialog::Rejected) {
1090             ::exit(0);
1091         }
1092         KUrl rendererPath = getUrl->selectedUrl();
1093         delete getUrl;
1094         if (rendererPath.isEmpty()) ::exit(0);
1095         KdenliveSettings::setRendererpath(rendererPath.path());
1096     }
1097
1098     kDebug() << "RESULTING MLT PATH: " << KdenliveSettings::mltpath();
1099
1100     // Parse MLT profiles to build a list of available video formats
1101     if (profilesList.isEmpty()) parseProfiles();
1102 }
1103
1104
1105 void MainWindow::slotEditProfiles() {
1106     ProfilesDialog *w = new ProfilesDialog;
1107     w->exec();
1108     delete w;
1109 }
1110
1111 void MainWindow::slotEditProjectSettings() {
1112     ProjectSettings *w = new ProjectSettings;
1113     if (w->exec() == QDialog::Accepted) {
1114         QString profile = w->selectedProfile();
1115         m_activeDocument->setProfilePath(profile);
1116         KdenliveSettings::setCurrent_profile(profile);
1117         KdenliveSettings::setProject_fps(m_activeDocument->fps());
1118         setCaption(m_activeDocument->description(), m_activeDocument->isModified());
1119         m_monitorManager->resetProfiles(m_activeDocument->timecode());
1120         if (m_renderWidget) m_renderWidget->setDocumentStandard(m_activeDocument->getDocumentStandard());
1121         m_timelineArea->setTabText(m_timelineArea->currentIndex(), m_activeDocument->description());
1122
1123         // We need to desactivate & reactivate monitors to get a refresh
1124         m_monitorManager->switchMonitors();
1125     }
1126     delete w;
1127 }
1128
1129 void MainWindow::slotRenderProject() {
1130     if (!m_renderWidget) {
1131         m_renderWidget = new RenderWidget(this);
1132         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)));
1133         if (m_activeDocument) m_renderWidget->setGuides(m_activeDocument->guidesXml(), m_activeDocument->projectDuration());
1134     }
1135     /*TrackView *currentTab = (TrackView *) m_timelineArea->currentWidget();
1136     if (currentTab) m_renderWidget->setTimeline(currentTab);
1137     m_renderWidget->setDocument(m_activeDocument);*/
1138     m_renderWidget->show();
1139 }
1140
1141 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) {
1142     if (dest.isEmpty()) return;
1143     int in;
1144     int out;
1145     TrackView *currentTab = (TrackView *) m_timelineArea->currentWidget();
1146     if (currentTab && zoneOnly) {
1147         in = currentTab->inPoint();
1148         out = currentTab->outPoint();
1149     }
1150     KTemporaryFile temp;
1151     temp.setAutoRemove(false);
1152     temp.setSuffix(".westley");
1153     if (temp.open()) {
1154         m_projectMonitor->saveSceneList(temp.fileName());
1155         QStringList args;
1156         args << "-erase";
1157         if (zoneOnly) args << "in=" + QString::number(in) << "out=" + QString::number(out);
1158         else if (guideStart != -1) {
1159             args << "in=" + QString::number(GenTime(guideStart).frames(m_activeDocument->fps())) << "out=" + QString::number(GenTime(guideEnd).frames(m_activeDocument->fps()));
1160         }
1161         if (!overlay_args.isEmpty()) args << "preargs=" + overlay_args.join(" ");
1162         QString videoPlayer = "-";
1163         if (playAfter) {
1164             videoPlayer = KdenliveSettings::defaultplayerapp();
1165             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."));
1166         }
1167         if (!QFile::exists(KdenliveSettings::rendererpath())) {
1168             KMessageBox::sorry(this, i18n("Cannot find the inigo program required for rendering (part of Mlt)"));
1169             return;
1170         }
1171         args << KdenliveSettings::rendererpath() << m_activeDocument->profilePath() << render << videoPlayer << temp.fileName() << dest << avformat_args;
1172         QString renderer = QCoreApplication::applicationDirPath() + QString("/kdenlive_render");
1173         if (!QFile::exists(renderer)) renderer = "kdenlive_render";
1174         QProcess::startDetached(renderer, args);
1175
1176         KNotification::event("RenderStarted", i18n("Rendering <i>%1</i> started", dest), QPixmap(), this);
1177     }
1178 }
1179
1180 void MainWindow::slotUpdateMousePosition(int pos) {
1181     if (m_activeDocument)
1182         switch (m_timecodeFormat->currentIndex()) {
1183         case 0:
1184             statusBar()->changeItem(m_activeDocument->timecode().getTimecodeFromFrames(pos), ID_TIMELINE_POS);
1185             break;
1186         default:
1187             statusBar()->changeItem(QString::number(pos), ID_TIMELINE_POS);
1188         }
1189 }
1190
1191 void MainWindow::slotUpdateDocumentState(bool modified) {
1192     setCaption(m_activeDocument->description(), modified);
1193     m_saveAction->setEnabled(modified);
1194     if (modified) {
1195         m_timelineArea->setTabTextColor(m_timelineArea->currentIndex(), palette().color(QPalette::Link));
1196         m_timelineArea->setTabIcon(m_timelineArea->currentIndex(), KIcon("document-save"));
1197     } else {
1198         m_timelineArea->setTabTextColor(m_timelineArea->currentIndex(), palette().color(QPalette::Text));
1199         m_timelineArea->setTabIcon(m_timelineArea->currentIndex(), KIcon("kdenlive"));
1200     }
1201 }
1202
1203 void MainWindow::connectDocumentInfo(KdenliveDoc *doc) {
1204     if (m_activeDocument) {
1205         if (m_activeDocument == doc) return;
1206         disconnect(m_activeDocument, SIGNAL(progressInfo(const QString &, int)), this, SLOT(slotGotProgressInfo(const QString &, int)));
1207     }
1208     connect(doc, SIGNAL(progressInfo(const QString &, int)), this, SLOT(slotGotProgressInfo(const QString &, int)));
1209 }
1210
1211 void MainWindow::connectDocument(TrackView *trackView, KdenliveDoc *doc) { //changed
1212     //m_projectMonitor->stop();
1213     kDebug() << "///////////////////   CONNECTING DOC TO PROJECT VIEW ////////////////";
1214     if (m_activeDocument) {
1215         if (m_activeDocument == doc) return;
1216         m_activeDocument->backupMltPlaylist();
1217         if (m_activeTimeline) {
1218             disconnect(m_projectMonitor, SIGNAL(renderPosition(int)), m_activeTimeline, SLOT(moveCursorPos(int)));
1219             disconnect(m_projectMonitor, SIGNAL(zoneUpdated(QPoint)), m_activeTimeline, SLOT(slotSetZone(QPoint)));
1220             disconnect(m_projectMonitor, SIGNAL(durationChanged(int)), m_activeTimeline, SLOT(setDuration(int)));
1221             disconnect(m_projectList, SIGNAL(projectModified()), m_activeDocument, SLOT(setModified()));
1222             disconnect(m_activeDocument, SIGNAL(guidesUpdated()), this, SLOT(slotGuidesUpdated()));
1223             disconnect(m_activeDocument, SIGNAL(addProjectClip(DocClipBase *)), m_projectList, SLOT(slotAddClip(DocClipBase *)));
1224             disconnect(m_activeDocument, SIGNAL(addProjectFolder(const QString, const QString &, bool, bool)), m_projectList, SLOT(slotAddFolder(const QString, const QString &, bool, bool)));
1225             disconnect(m_activeDocument, SIGNAL(signalDeleteProjectClip(const QString &)), m_projectList, SLOT(slotDeleteClip(const QString &)));
1226             disconnect(m_activeDocument, SIGNAL(updateClipDisplay(const QString &)), m_projectList, SLOT(slotUpdateClip(const QString &)));
1227             disconnect(m_activeDocument, SIGNAL(selectLastAddedClip(const QString &)), m_projectList, SLOT(slotSelectClip(const QString &)));
1228             disconnect(m_activeDocument, SIGNAL(deleteTimelineClip(const QString &)), m_activeTimeline, SLOT(slotDeleteClip(const QString &)));
1229             disconnect(m_activeTimeline, SIGNAL(clipItemSelected(ClipItem*)), effectStack, SLOT(slotClipItemSelected(ClipItem*)));
1230             disconnect(m_activeTimeline, SIGNAL(clipItemSelected(ClipItem*)), this, SLOT(slotActivateEffectStackView()));
1231             disconnect(m_activeTimeline, SIGNAL(transitionItemSelected(Transition*)), transitionConfig, SLOT(slotTransitionItemSelected(Transition*)));
1232             disconnect(m_activeTimeline, SIGNAL(transitionItemSelected(Transition*)), this, SLOT(slotActivateTransitionView()));
1233             disconnect(m_zoomSlider, SIGNAL(valueChanged(int)), m_activeTimeline, SLOT(slotChangeZoom(int)));
1234             disconnect(m_activeTimeline->projectView(), SIGNAL(displayMessage(const QString&, MessageType)), m_messageLabel, SLOT(setMessage(const QString&, MessageType)));
1235             disconnect(m_activeTimeline->projectView(), SIGNAL(showClipFrame(DocClipBase *, const int)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *, const int)));
1236
1237             disconnect(m_activeDocument, SIGNAL(docModified(bool)), this, SLOT(slotUpdateDocumentState(bool)));
1238             disconnect(effectStack, SIGNAL(updateClipEffect(ClipItem*, QDomElement, QDomElement, int)), m_activeTimeline->projectView(), SLOT(slotUpdateClipEffect(ClipItem*, QDomElement, QDomElement, int)));
1239             disconnect(effectStack, SIGNAL(removeEffect(ClipItem*, QDomElement)), m_activeTimeline->projectView(), SLOT(slotDeleteEffect(ClipItem*, QDomElement)));
1240             disconnect(effectStack, SIGNAL(changeEffectState(ClipItem*, int, bool)), m_activeTimeline->projectView(), SLOT(slotChangeEffectState(ClipItem*, int, bool)));
1241             disconnect(effectStack, SIGNAL(changeEffectPosition(ClipItem*, int, int)), m_activeTimeline->projectView(), SLOT(slotChangeEffectPosition(ClipItem*, int, int)));
1242             disconnect(effectStack, SIGNAL(refreshEffectStack(ClipItem*)), m_activeTimeline->projectView(), SLOT(slotRefreshEffects(ClipItem*)));
1243             disconnect(effectStack, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
1244             disconnect(transitionConfig, SIGNAL(transitionUpdated(Transition *, QDomElement)), m_activeTimeline->projectView() , SLOT(slotTransitionUpdated(Transition *, QDomElement)));
1245             disconnect(transitionConfig, SIGNAL(seekTimeline(int)), m_activeTimeline->projectView() , SLOT(setCursorPos(int)));
1246             disconnect(m_activeTimeline->projectView(), SIGNAL(activateDocumentMonitor()), m_projectMonitor, SLOT(activateMonitor()));
1247             disconnect(m_activeTimeline, SIGNAL(zoneMoved(int, int)), m_projectMonitor, SLOT(slotZoneMoved(int, int)));
1248             disconnect(m_projectList, SIGNAL(loadingIsOver()), m_activeTimeline->projectView(), SLOT(slotUpdateAllThumbs()));
1249             effectStack->clear();
1250         }
1251         m_activeDocument->setRenderer(NULL);
1252         disconnect(m_projectList, SIGNAL(clipSelected(DocClipBase *)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *)));
1253         m_clipMonitor->stop();
1254     }
1255     KdenliveSettings::setCurrent_profile(doc->profilePath());
1256     KdenliveSettings::setProject_fps(doc->fps());
1257     m_monitorManager->resetProfiles(doc->timecode());
1258     m_projectList->setDocument(doc);
1259     transitionConfig->updateProjectFormat(doc->mltProfile());
1260     effectStack->updateProjectFormat(doc->mltProfile());
1261     connect(m_projectList, SIGNAL(clipSelected(DocClipBase *)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *)));
1262     connect(m_projectList, SIGNAL(projectModified()), doc, SLOT(setModified()));
1263     connect(trackView, SIGNAL(cursorMoved()), m_projectMonitor, SLOT(activateMonitor()));
1264     connect(trackView, SIGNAL(mousePosition(int)), this, SLOT(slotUpdateMousePosition(int)));
1265     connect(m_projectMonitor, SIGNAL(renderPosition(int)), trackView, SLOT(moveCursorPos(int)));
1266     connect(m_projectMonitor, SIGNAL(zoneUpdated(QPoint)), trackView, SLOT(slotSetZone(QPoint)));
1267     connect(m_projectMonitor, SIGNAL(durationChanged(int)), trackView, SLOT(setDuration(int)));
1268     connect(doc, SIGNAL(addProjectClip(DocClipBase *)), m_projectList, SLOT(slotAddClip(DocClipBase *)));
1269     connect(doc, SIGNAL(addProjectFolder(const QString, const QString &, bool, bool)), m_projectList, SLOT(slotAddFolder(const QString, const QString &, bool, bool)));
1270     connect(doc, SIGNAL(signalDeleteProjectClip(const QString &)), m_projectList, SLOT(slotDeleteClip(const QString &)));
1271     connect(doc, SIGNAL(updateClipDisplay(const QString &)), m_projectList, SLOT(slotUpdateClip(const QString &)));
1272     connect(doc, SIGNAL(selectLastAddedClip(const QString &)), m_projectList, SLOT(slotSelectClip(const QString &)));
1273
1274     connect(doc, SIGNAL(deleteTimelineClip(const QString &)), trackView, SLOT(slotDeleteClip(const QString &)));
1275     connect(doc, SIGNAL(docModified(bool)), this, SLOT(slotUpdateDocumentState(bool)));
1276     connect(doc, SIGNAL(guidesUpdated()), this, SLOT(slotGuidesUpdated()));
1277
1278
1279     connect(trackView, SIGNAL(clipItemSelected(ClipItem*)), effectStack, SLOT(slotClipItemSelected(ClipItem*)));
1280     connect(trackView, SIGNAL(clipItemSelected(ClipItem*)), this, SLOT(slotActivateEffectStackView()));
1281     connect(trackView, SIGNAL(transitionItemSelected(Transition*)), transitionConfig, SLOT(slotTransitionItemSelected(Transition*)));
1282     connect(trackView, SIGNAL(transitionItemSelected(Transition*)), this, SLOT(slotActivateTransitionView()));
1283     m_zoomSlider->setValue(doc->zoom());
1284     connect(m_zoomSlider, SIGNAL(valueChanged(int)), trackView, SLOT(slotChangeZoom(int)));
1285     connect(trackView->projectView(), SIGNAL(zoomIn()), this, SLOT(slotZoomIn()));
1286     connect(trackView->projectView(), SIGNAL(zoomOut()), this, SLOT(slotZoomOut()));
1287     connect(trackView->projectView(), SIGNAL(displayMessage(const QString&, MessageType)), m_messageLabel, SLOT(setMessage(const QString&, MessageType)));
1288
1289     connect(trackView->projectView(), SIGNAL(showClipFrame(DocClipBase *, const int)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *, const int)));
1290
1291
1292     connect(effectStack, SIGNAL(updateClipEffect(ClipItem*, QDomElement, QDomElement, int)), trackView->projectView(), SLOT(slotUpdateClipEffect(ClipItem*, QDomElement, QDomElement, int)));
1293     connect(effectStack, SIGNAL(removeEffect(ClipItem*, QDomElement)), trackView->projectView(), SLOT(slotDeleteEffect(ClipItem*, QDomElement)));
1294     connect(effectStack, SIGNAL(changeEffectState(ClipItem*, int, bool)), trackView->projectView(), SLOT(slotChangeEffectState(ClipItem*, int, bool)));
1295     connect(effectStack, SIGNAL(changeEffectPosition(ClipItem*, int, int)), trackView->projectView(), SLOT(slotChangeEffectPosition(ClipItem*, int, int)));
1296     connect(effectStack, SIGNAL(refreshEffectStack(ClipItem*)), trackView->projectView(), SLOT(slotRefreshEffects(ClipItem*)));
1297     connect(transitionConfig, SIGNAL(transitionUpdated(Transition *, QDomElement)), trackView->projectView() , SLOT(slotTransitionUpdated(Transition *, QDomElement)));
1298     connect(transitionConfig, SIGNAL(seekTimeline(int)), trackView->projectView() , SLOT(setCursorPos(int)));
1299     connect(effectStack, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
1300
1301     connect(trackView->projectView(), SIGNAL(activateDocumentMonitor()), m_projectMonitor, SLOT(activateMonitor()));
1302     connect(trackView, SIGNAL(zoneMoved(int, int)), m_projectMonitor, SLOT(slotZoneMoved(int, int)));
1303     connect(m_projectList, SIGNAL(loadingIsOver()), trackView->projectView(), SLOT(slotUpdateAllThumbs()));
1304
1305     trackView->projectView()->setContextMenu(m_timelineContextMenu, m_timelineContextClipMenu, m_timelineContextTransitionMenu);
1306     m_activeTimeline = trackView;
1307     if (m_renderWidget) m_renderWidget->setDocumentStandard(doc->getDocumentStandard());
1308     doc->setRenderer(m_projectMonitor->render);
1309     m_commandStack->setActiveStack(doc->commandStack());
1310     KdenliveSettings::setProject_display_ratio(doc->dar());
1311     m_projectList->updateAllClips();
1312     //doc->clipManager()->checkAudioThumbs();
1313
1314     //m_overView->setScene(trackView->projectScene());
1315     //m_overView->scale(m_overView->width() / trackView->duration(), m_overView->height() / (50 * trackView->tracksNumber()));
1316     //m_overView->fitInView(m_overView->itemAt(0, 50), Qt::KeepAspectRatio);
1317
1318     setCaption(doc->description(), doc->isModified());
1319     m_saveAction->setEnabled(doc->isModified());
1320     m_activeDocument = doc;
1321 }
1322
1323 void MainWindow::slotGuidesUpdated() {
1324     if (m_renderWidget) m_renderWidget->setGuides(m_activeDocument->guidesXml(), m_activeDocument->projectDuration());
1325 }
1326
1327 void MainWindow::slotPreferences(int page, int option) {
1328     //An instance of your dialog could be already created and could be
1329     // cached, in which case you want to display the cached dialog
1330     // instead of creating another one
1331     if (KConfigDialog::showDialog("settings")) {
1332         if (page != -1) static_cast <KdenliveSettingsDialog*>(KConfigDialog::exists("settings"))->showPage(page, option);
1333         return;
1334     }
1335
1336     // KConfigDialog didn't find an instance of this dialog, so lets
1337     // create it :
1338     KdenliveSettingsDialog* dialog = new KdenliveSettingsDialog(this);
1339     connect(dialog, SIGNAL(settingsChanged(const QString&)), this, SLOT(updateConfiguration()));
1340     connect(dialog, SIGNAL(doResetProfile()), m_monitorManager, SLOT(slotResetProfiles()));
1341     dialog->show();
1342     if (page != -1) dialog->showPage(page, option);
1343 }
1344
1345 void MainWindow::updateConfiguration() {
1346     //TODO: we should apply settings to all projects, not only the current one
1347     if (m_activeTimeline) {
1348         m_activeTimeline->refresh();
1349         m_activeTimeline->projectView()->checkAutoScroll();
1350         m_activeTimeline->projectView()->checkTrackHeight();
1351         if (m_activeDocument) m_activeDocument->clipManager()->checkAudioThumbs();
1352     }
1353     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
1354     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
1355     activateShuttleDevice();
1356
1357 }
1358
1359 void MainWindow::slotSwitchVideoThumbs() {
1360     KdenliveSettings::setVideothumbnails(!KdenliveSettings::videothumbnails());
1361     if (m_activeTimeline) {
1362         m_activeTimeline->refresh();
1363     }
1364     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
1365 }
1366
1367 void MainWindow::slotSwitchAudioThumbs() {
1368     KdenliveSettings::setAudiothumbnails(!KdenliveSettings::audiothumbnails());
1369     if (m_activeTimeline) {
1370         m_activeTimeline->refresh();
1371         m_activeTimeline->projectView()->checkAutoScroll();
1372         if (m_activeDocument) m_activeDocument->clipManager()->checkAudioThumbs();
1373     }
1374     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
1375 }
1376
1377 void MainWindow::slotSwitchMarkersComments() {
1378     KdenliveSettings::setShowmarkers(!KdenliveSettings::showmarkers());
1379     if (m_activeTimeline) {
1380         m_activeTimeline->refresh();
1381     }
1382     m_buttonShowMarkers->setChecked(KdenliveSettings::showmarkers());
1383 }
1384
1385 void MainWindow::slotSwitchSnap() {
1386     KdenliveSettings::setSnaptopoints(!KdenliveSettings::snaptopoints());
1387     m_buttonShowMarkers->setChecked(KdenliveSettings::snaptopoints());
1388 }
1389
1390
1391 void MainWindow::slotDeleteTimelineClip() {
1392     if (QApplication::focusWidget()->parentWidget()->parentWidget() == projectListDock) m_projectList->slotRemoveClip();
1393     else if (m_activeTimeline) {
1394         m_activeTimeline->projectView()->deleteSelectedClips();
1395     }
1396 }
1397
1398 void MainWindow::slotChangeClipSpeed() {
1399     if (m_activeTimeline) {
1400         m_activeTimeline->projectView()->changeClipSpeed();
1401     }
1402 }
1403
1404 void MainWindow::slotAddClipMarker() {
1405     if (m_activeTimeline) {
1406         m_activeTimeline->projectView()->slotAddClipMarker();
1407     }
1408 }
1409
1410 void MainWindow::slotDeleteClipMarker() {
1411     if (m_activeTimeline) {
1412         m_activeTimeline->projectView()->slotDeleteClipMarker();
1413     }
1414 }
1415
1416 void MainWindow::slotDeleteAllClipMarkers() {
1417     if (m_activeTimeline) {
1418         m_activeTimeline->projectView()->slotDeleteAllClipMarkers();
1419     }
1420 }
1421
1422 void MainWindow::slotEditClipMarker() {
1423     if (m_activeTimeline) {
1424         m_activeTimeline->projectView()->slotEditClipMarker();
1425     }
1426 }
1427
1428 void MainWindow::slotAddGuide() {
1429     if (m_activeTimeline)
1430         m_activeTimeline->projectView()->slotAddGuide();
1431 }
1432
1433 void MainWindow::slotEditGuide() {
1434     if (m_activeTimeline)
1435         m_activeTimeline->projectView()->slotEditGuide();
1436 }
1437
1438 void MainWindow::slotDeleteGuide() {
1439     if (m_activeTimeline)
1440         m_activeTimeline->projectView()->slotDeleteGuide();
1441 }
1442
1443 void MainWindow::slotDeleteAllGuides() {
1444     if (m_activeTimeline)
1445         m_activeTimeline->projectView()->slotDeleteAllGuides();
1446 }
1447
1448 void MainWindow::slotCutTimelineClip() {
1449     if (m_activeTimeline) {
1450         m_activeTimeline->projectView()->cutSelectedClips();
1451     }
1452 }
1453
1454 void MainWindow::slotAddProjectClip(KUrl url) {
1455     if (m_activeDocument)
1456         m_activeDocument->slotAddClipFile(url, QString());
1457 }
1458
1459 void MainWindow::slotAddTransition(QAction *result) {
1460     if (!result) return;
1461     QDomElement effect = transitions.getEffectByName(result->data().toString());
1462     if (m_activeTimeline) {
1463         m_activeTimeline->projectView()->slotAddTransitionToSelectedClips(effect);
1464     }
1465 }
1466
1467 void MainWindow::slotAddVideoEffect(QAction *result) {
1468     if (!result) return;
1469     QStringList info = result->data().toStringList();
1470     if (info.isEmpty()) return;
1471     QDomElement effect = videoEffects.getEffectByTag(info.at(1), info.at(2));
1472     slotAddEffect(effect);
1473 }
1474
1475 void MainWindow::slotAddAudioEffect(QAction *result) {
1476     if (!result) return;
1477     QStringList info = result->data().toStringList();
1478     if (info.isEmpty()) return;
1479     QDomElement effect = audioEffects.getEffectByTag(info.at(1), info.at(2));
1480     slotAddEffect(effect);
1481 }
1482
1483 void MainWindow::slotAddCustomEffect(QAction *result) {
1484     if (!result) return;
1485     QStringList info = result->data().toStringList();
1486     if (info.isEmpty()) return;
1487     QDomElement effect = customEffects.getEffectByTag(info.at(1), info.at(2));
1488     slotAddEffect(effect);
1489 }
1490
1491 void MainWindow::slotZoomIn() {
1492     m_zoomSlider->setValue(m_zoomSlider->value() - 1);
1493 }
1494
1495 void MainWindow::slotZoomOut() {
1496     m_zoomSlider->setValue(m_zoomSlider->value() + 1);
1497 }
1498
1499 void MainWindow::slotFitZoom() {
1500     if (m_activeTimeline) {
1501         m_zoomSlider->setValue(m_activeTimeline->fitZoom());
1502     }
1503 }
1504
1505 void MainWindow::slotGotProgressInfo(const QString &message, int progress) {
1506     statusProgressBar->setValue(progress);
1507     if (progress >= 0) {
1508         if (!message.isEmpty()) m_messageLabel->setMessage(message, InformationMessage);//statusLabel->setText(message);
1509         statusProgressBar->setVisible(true);
1510     } else {
1511         m_messageLabel->setMessage(QString(), DefaultMessage);
1512         statusProgressBar->setVisible(false);
1513     }
1514 }
1515
1516 void MainWindow::slotShowClipProperties(DocClipBase *clip) {
1517     if (clip->clipType() == TEXT) {
1518         QString titlepath = m_activeDocument->projectFolder().path() + "/titles/";
1519         QString path = clip->getProperty("resource");
1520         TitleWidget *dia_ui = new TitleWidget(KUrl(), titlepath, m_projectMonitor->render, this);
1521         QDomDocument doc;
1522         doc.setContent(clip->getProperty("xmldata"));
1523         dia_ui->setXml(doc);
1524         if (dia_ui->exec() == QDialog::Accepted) {
1525             QPixmap pix = dia_ui->renderedPixmap();
1526             pix.save(path);
1527             //slotAddClipFile(KUrl("/tmp/kdenlivetitle.png"), QString(), -1);
1528             //m_clipManager->slotEditTextClipFile(id, dia_ui->xml().toString());
1529             QMap <QString, QString> newprops;
1530             newprops.insert("xmldata", dia_ui->xml().toString());
1531             EditClipCommand *command = new EditClipCommand(m_projectList, clip->getId(), clip->properties(), newprops, true);
1532             m_activeDocument->commandStack()->push(command);
1533             m_clipMonitor->refreshMonitor(true);
1534             m_activeDocument->setModified(true);
1535         }
1536         delete dia_ui;
1537
1538         //m_activeDocument->editTextClip(clip->getProperty("xml"), clip->getId());
1539         return;
1540     }
1541     ClipProperties dia(clip, m_activeDocument->timecode(), m_activeDocument->fps(), this);
1542     connect(&dia, SIGNAL(addMarker(const QString &, GenTime, QString)), m_activeTimeline->projectView(), SLOT(slotAddClipMarker(const QString &, GenTime, QString)));
1543     if (dia.exec() == QDialog::Accepted) {
1544         EditClipCommand *command = new EditClipCommand(m_projectList, dia.clipId(), clip->properties(), dia.properties(), true);
1545         m_activeDocument->commandStack()->push(command);
1546
1547         //m_projectList->slotUpdateClipProperties(dia.clipId(), dia.properties());
1548         if (dia.needsTimelineRefresh()) {
1549             // update clip occurences in timeline
1550             m_activeTimeline->projectView()->slotUpdateClip(dia.clipId());
1551         }
1552     }
1553 }
1554
1555 void MainWindow::customEvent(QEvent* e) {
1556     if (e->type() == QEvent::User) {
1557         // The timeline playing position changed...
1558         kDebug() << "RECIEVED JOG EVEMNT!!!";
1559     }
1560 }
1561 void MainWindow::slotActivateEffectStackView() {
1562     effectStack->raiseWindow(effectStackDock);
1563 }
1564
1565 void MainWindow::slotActivateTransitionView() {
1566     transitionConfig->raiseWindow(transitionConfigDock);
1567 }
1568
1569 void MainWindow::slotSnapRewind() {
1570     if (m_projectMonitor->isActive()) {
1571         if (m_activeTimeline)
1572             m_activeTimeline->projectView()->slotSeekToPreviousSnap();
1573     }
1574 }
1575
1576 void MainWindow::slotSnapForward() {
1577     if (m_projectMonitor->isActive()) {
1578         if (m_activeTimeline)
1579             m_activeTimeline->projectView()->slotSeekToNextSnap();
1580     }
1581 }
1582
1583 void MainWindow::slotClipStart() {
1584     if (m_projectMonitor->isActive()) {
1585         if (m_activeTimeline)
1586             m_activeTimeline->projectView()->clipStart();
1587     }
1588 }
1589
1590 void MainWindow::slotClipEnd() {
1591     if (m_projectMonitor->isActive()) {
1592         if (m_activeTimeline)
1593             m_activeTimeline->projectView()->clipEnd();
1594     }
1595 }
1596
1597 void MainWindow::slotChangeTool(QAction * action) {
1598     if (action == m_buttonSelectTool) slotSetTool(SELECTTOOL);
1599     else if (action == m_buttonRazorTool) slotSetTool(RAZORTOOL);
1600 }
1601
1602 void MainWindow::slotSetTool(PROJECTTOOL tool) {
1603     if (m_activeDocument && m_activeTimeline) {
1604         //m_activeDocument->setTool(tool);
1605         m_activeTimeline->projectView()->setTool(tool);
1606     }
1607 }
1608
1609 void MainWindow::slotCopy() {
1610     if (!m_activeDocument || !m_activeTimeline) return;
1611     m_activeTimeline->projectView()->copyClip();
1612 }
1613
1614 void MainWindow::slotPaste() {
1615     if (!m_activeDocument || !m_activeTimeline) return;
1616     m_activeTimeline->projectView()->pasteClip();
1617 }
1618
1619 void MainWindow::slotPasteEffects() {
1620     if (!m_activeDocument || !m_activeTimeline) return;
1621     m_activeTimeline->projectView()->pasteClipEffects();
1622 }
1623
1624 void MainWindow::slotFind() {
1625     if (!m_activeDocument || !m_activeTimeline) return;
1626     m_projectSearch->setEnabled(false);
1627     m_findActivated = true;
1628     m_findString = QString();
1629     m_activeTimeline->projectView()->initSearchStrings();
1630     statusBar()->showMessage(i18n("Starting -- find text as you type"));
1631     m_findTimer.start(5000);
1632     qApp->installEventFilter(this);
1633 }
1634
1635 void MainWindow::slotFindNext() {
1636     if (m_activeTimeline && m_activeTimeline->projectView()->findNextString(m_findString)) {
1637         statusBar()->showMessage(i18n("Found : %1", m_findString));
1638     } else {
1639         statusBar()->showMessage(i18n("Reached end of project"));
1640     }
1641     m_findTimer.start(4000);
1642 }
1643
1644 void MainWindow::findAhead() {
1645     if (m_activeTimeline && m_activeTimeline->projectView()->findString(m_findString)) {
1646         m_projectSearchNext->setEnabled(true);
1647         statusBar()->showMessage(i18n("Found : %1", m_findString));
1648     } else {
1649         m_projectSearchNext->setEnabled(false);
1650         statusBar()->showMessage(i18n("Not found : %1", m_findString));
1651     }
1652 }
1653
1654 void MainWindow::findTimeout() {
1655     m_projectSearchNext->setEnabled(false);
1656     m_findActivated = false;
1657     m_findString = QString();
1658     statusBar()->showMessage(i18n("Find stopped"), 3000);
1659     if (m_activeTimeline) m_activeTimeline->projectView()->clearSearchStrings();
1660     m_projectSearch->setEnabled(true);
1661     removeEventFilter(this);
1662 }
1663
1664 void MainWindow::keyPressEvent(QKeyEvent *ke) {
1665     if (m_findActivated) {
1666         if (ke->key() == Qt::Key_Backspace) {
1667             m_findString = m_findString.left(m_findString.length() - 1);
1668
1669             if (!m_findString.isEmpty()) {
1670                 findAhead();
1671             } else {
1672                 findTimeout();
1673             }
1674
1675             m_findTimer.start(4000);
1676             ke->accept();
1677             return;
1678         } else if (ke->key() == Qt::Key_Escape) {
1679             findTimeout();
1680             ke->accept();
1681             return;
1682         } else if (ke->key() == Qt::Key_Space || !ke->text().trimmed().isEmpty()) {
1683             m_findString += ke->text();
1684
1685             findAhead();
1686
1687             m_findTimer.start(4000);
1688             ke->accept();
1689             return;
1690         }
1691     } else KXmlGuiWindow::keyPressEvent(ke);
1692 }
1693
1694 bool MainWindow::eventFilter(QObject *obj, QEvent *event) {
1695     if (m_findActivated) {
1696         if (event->type() == QEvent::ShortcutOverride) {
1697             QKeyEvent* ke = (QKeyEvent*) event;
1698             if (ke->text().trimmed().isEmpty()) return false;
1699             ke->accept();
1700             return true;
1701         } else return false;
1702     } else {
1703         // pass the event on to the parent class
1704         return QMainWindow::eventFilter(obj, event);
1705     }
1706 }
1707
1708 void MainWindow::slotSaveZone(Render *render, QPoint zone) {
1709     KDialog *dialog = new KDialog(this);
1710     dialog->setCaption("Save clip zone");
1711     dialog->setButtons(KDialog::Ok | KDialog::Cancel);
1712
1713     QWidget *widget = new QWidget(dialog);
1714     dialog->setMainWidget(widget);
1715
1716     QVBoxLayout *vbox = new QVBoxLayout(widget);
1717     QLabel *label1 = new QLabel(i18n("Save clip zone as:"), this);
1718     QString path = m_activeDocument->projectFolder().path();
1719     path.append("/");
1720     path.append("untitled.westley");
1721     KUrlRequester *url = new KUrlRequester(KUrl(path), this);
1722     url->setFilter("video/mlt-playlist");
1723     QLabel *label2 = new QLabel(i18n("Description:"), this);
1724     KLineEdit *edit = new KLineEdit(this);
1725     vbox->addWidget(label1);
1726     vbox->addWidget(url);
1727     vbox->addWidget(label2);
1728     vbox->addWidget(edit);
1729     if (dialog->exec() == QDialog::Accepted) render->saveZone(url->url(), edit->text(), zone);
1730
1731 }
1732
1733 void MainWindow::slotSetInPoint() {
1734     if (m_clipMonitor->isActive()) {
1735         m_clipMonitor->slotSetZoneStart();
1736     } else m_activeTimeline->projectView()->setInPoint();
1737 }
1738
1739 void MainWindow::slotSetOutPoint() {
1740     if (m_clipMonitor->isActive()) {
1741         m_clipMonitor->slotSetZoneEnd();
1742     } else m_activeTimeline->projectView()->setOutPoint();
1743 }
1744
1745 #include "mainwindow.moc"