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