]> git.sesse.net Git - kdenlive/blob - src/mainwindow.cpp
* Clean up profiles handling
[kdenlive] / src / mainwindow.cpp
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21
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
53 #include <mlt++/Mlt.h>
54
55 #include "mainwindow.h"
56 #include "kdenlivesettings.h"
57 #include "kdenlivesettingsdialog.h"
58 #include "initeffects.h"
59 #include "profilesdialog.h"
60 #include "projectsettings.h"
61 #include "events.h"
62 #include "renderjob.h"
63 #include "clipmanager.h"
64 #include "projectlist.h"
65 #include "monitor.h"
66 #include "recmonitor.h"
67 #include "monitormanager.h"
68 #include "kdenlivedoc.h"
69 #include "trackview.h"
70 #include "customtrackview.h"
71 #include "effectslistview.h"
72 #include "effectstackview.h"
73 #include "transitionsettings.h"
74 #include "renderwidget.h"
75 #include "renderer.h"
76 #include "jogshuttle.h"
77 #include "clipproperties.h"
78
79 #define ID_STATUS_MSG 1
80 #define ID_EDITMODE_MSG 2
81 #define ID_TIMELINE_MSG 3
82 #define ID_TIMELINE_BUTTONS 5
83 #define ID_TIMELINE_POS 6
84 #define ID_TIMELINE_FORMAT 7
85
86 namespace Mlt {
87 class Producer;
88 };
89
90 EffectsList MainWindow::videoEffects;
91 EffectsList MainWindow::audioEffects;
92 EffectsList MainWindow::customEffects;
93 EffectsList MainWindow::transitions;
94
95 MainWindow::MainWindow(QWidget *parent)
96         : KXmlGuiWindow(parent),
97         m_activeDocument(NULL), m_activeTimeline(NULL), m_renderWidget(NULL), m_jogProcess(NULL), m_findActivated(false), m_initialized(false) {
98     setlocale(LC_NUMERIC, "POSIX");
99     parseProfiles();
100     setFont(KGlobalSettings::toolBarFont());
101     m_commandStack = new QUndoGroup;
102     m_timelineArea = new KTabWidget(this);
103     m_timelineArea->setTabReorderingEnabled(true);
104     m_timelineArea->setTabBarHidden(true);
105
106     QToolButton *closeTabButton = new QToolButton;
107     connect(closeTabButton, SIGNAL(clicked()), this, SLOT(slotRemoveTab()));
108     closeTabButton->setIcon(KIcon("tab-close"));
109     closeTabButton->adjustSize();
110     closeTabButton->setToolTip(i18n("Close the current tab"));
111     m_timelineArea->setCornerWidget(closeTabButton);
112     connect(m_timelineArea, SIGNAL(currentChanged(int)), this, SLOT(activateDocument()));
113
114     connect(&m_findTimer, SIGNAL(timeout()), this, SLOT(findTimeout()));
115     m_findTimer.setSingleShot(true);
116
117     initEffects::parseEffectFiles();
118     m_monitorManager = new MonitorManager();
119
120     projectListDock = new QDockWidget(i18n("Project Tree"), this);
121     projectListDock->setObjectName("project_tree");
122     m_projectList = new ProjectList(this);
123     projectListDock->setWidget(m_projectList);
124     addDockWidget(Qt::TopDockWidgetArea, projectListDock);
125
126     effectListDock = new QDockWidget(i18n("Effect List"), this);
127     effectListDock->setObjectName("effect_list");
128     m_effectList = new EffectsListView();
129
130     //m_effectList = new KListWidget(this);
131     effectListDock->setWidget(m_effectList);
132     addDockWidget(Qt::TopDockWidgetArea, effectListDock);
133
134     effectStackDock = new QDockWidget(i18n("Effect Stack"), this);
135     effectStackDock->setObjectName("effect_stack");
136     effectStack = new EffectStackView(this);
137     effectStackDock->setWidget(effectStack);
138     addDockWidget(Qt::TopDockWidgetArea, effectStackDock);
139
140     transitionConfigDock = new QDockWidget(i18n("Transition"), this);
141     transitionConfigDock->setObjectName("transition");
142     transitionConfig = new TransitionSettings(this);
143     transitionConfigDock->setWidget(transitionConfig);
144     addDockWidget(Qt::TopDockWidgetArea, transitionConfigDock);
145
146
147     clipMonitorDock = new QDockWidget(i18n("Clip Monitor"), this);
148     clipMonitorDock->setObjectName("clip_monitor");
149     m_clipMonitor = new Monitor("clip", m_monitorManager, this);
150     clipMonitorDock->setWidget(m_clipMonitor);
151     addDockWidget(Qt::TopDockWidgetArea, clipMonitorDock);
152     //m_clipMonitor->stop();
153
154     projectMonitorDock = new QDockWidget(i18n("Project Monitor"), this);
155     projectMonitorDock->setObjectName("project_monitor");
156     m_projectMonitor = new Monitor("project", m_monitorManager, this);
157     projectMonitorDock->setWidget(m_projectMonitor);
158     addDockWidget(Qt::TopDockWidgetArea, projectMonitorDock);
159
160     recMonitorDock = new QDockWidget(i18n("Record Monitor"), this);
161     recMonitorDock->setObjectName("record_monitor");
162     m_recMonitor = new RecMonitor("record", this);
163     recMonitorDock->setWidget(m_recMonitor);
164     addDockWidget(Qt::TopDockWidgetArea, recMonitorDock);
165
166     connect(m_recMonitor, SIGNAL(addProjectClip(KUrl)), this, SLOT(slotAddProjectClip(KUrl)));
167     connect(m_recMonitor, SIGNAL(showConfigDialog(int, int)), this, SLOT(slotPreferences(int, int)));
168
169     undoViewDock = new QDockWidget(i18n("Undo History"), this);
170     undoViewDock->setObjectName("undo_history");
171     m_undoView = new QUndoView(this);
172     m_undoView->setCleanIcon(KIcon("edit-clear"));
173     m_undoView->setEmptyLabel(i18n("Clean"));
174     undoViewDock->setWidget(m_undoView);
175     m_undoView->setGroup(m_commandStack);
176     addDockWidget(Qt::TopDockWidgetArea, undoViewDock);
177
178     //overviewDock = new QDockWidget(i18n("Project Overview"), this);
179     //overviewDock->setObjectName("project_overview");
180     //m_overView = new CustomTrackView(NULL, NULL, this);
181     //overviewDock->setWidget(m_overView);
182     //addDockWidget(Qt::TopDockWidgetArea, overviewDock);
183
184     setupActions();
185     //tabifyDockWidget(projectListDock, effectListDock);
186     tabifyDockWidget(projectListDock, effectStackDock);
187     tabifyDockWidget(projectListDock, transitionConfigDock);
188     //tabifyDockWidget(projectListDock, undoViewDock);
189     projectListDock->raise();
190
191     tabifyDockWidget(clipMonitorDock, projectMonitorDock);
192     tabifyDockWidget(clipMonitorDock, recMonitorDock);
193     setCentralWidget(m_timelineArea);
194
195     setupGUI(Default, NULL /*"kdenliveui.rc"*/);
196     kDebug() << factory() << " " << factory()->container("video_effects_menu", this);
197
198     // build effects menus
199     QAction *action;
200     QMenu *videoEffectsMenu = static_cast<QMenu*>(factory()->container("video_effects_menu", this));
201     QStringList effects = videoEffects.effectNames();
202     foreach(const QString &name, effects) {
203         action = new QAction(name, this);
204         action->setData(name);
205         videoEffectsMenu->addAction(action);
206     }
207     QMenu *audioEffectsMenu = static_cast<QMenu*>(factory()->container("audio_effects_menu", this));
208     effects = audioEffects.effectNames();
209     foreach(const QString &name, effects) {
210         action = new QAction(name, this);
211         action->setData(name);
212         audioEffectsMenu->addAction(action);
213     }
214     m_customEffectsMenu = static_cast<QMenu*>(factory()->container("custom_effects_menu", this));
215     effects = customEffects.effectNames();
216     foreach(const QString &name, effects) {
217         action = new QAction(name, this);
218         action->setData(name);
219         m_customEffectsMenu->addAction(action);
220     }
221
222     QMenu *viewMenu = static_cast<QMenu*>(factory()->container("dockwindows", this));
223     const QList<QAction *> viewActions = createPopupMenu()->actions();
224     viewMenu->insertActions(NULL, viewActions);
225
226     connect(videoEffectsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddVideoEffect(QAction *)));
227     connect(audioEffectsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddAudioEffect(QAction *)));
228     connect(m_customEffectsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddCustomEffect(QAction *)));
229
230     m_timelineContextMenu = new QMenu(this);
231     m_timelineContextClipMenu = new QMenu(this);
232     m_timelineContextTransitionMenu = new QMenu(this);
233
234
235     QMenu *transitionsMenu = new QMenu(i18n("Add Transition"), this);
236     effects = transitions.effectNames();
237     foreach(const QString &name, effects) {
238         action = new QAction(name, this);
239         action->setData(name);
240         transitionsMenu->addAction(action);
241     }
242     connect(transitionsMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotAddTransition(QAction *)));
243
244     m_timelineContextMenu->addAction(actionCollection()->action(KStandardAction::name(KStandardAction::Paste)));
245
246     m_timelineContextClipMenu->addAction(actionCollection()->action("delete_timeline_clip"));
247     m_timelineContextClipMenu->addAction(actionCollection()->action("change_clip_speed"));
248     m_timelineContextClipMenu->addAction(actionCollection()->action("cut_timeline_clip"));
249     m_timelineContextClipMenu->addAction(actionCollection()->action(KStandardAction::name(KStandardAction::Copy)));
250     m_timelineContextClipMenu->addAction(actionCollection()->action("paste_effects"));
251
252     QMenu *markersMenu = (QMenu*)(factory()->container("marker_menu", this));
253     m_timelineContextClipMenu->addMenu(markersMenu);
254     m_timelineContextClipMenu->addMenu(transitionsMenu);
255     m_timelineContextClipMenu->addMenu(videoEffectsMenu);
256     m_timelineContextClipMenu->addMenu(audioEffectsMenu);
257     m_timelineContextClipMenu->addMenu(m_customEffectsMenu);
258
259     m_timelineContextTransitionMenu->addAction(actionCollection()->action("delete_timeline_clip"));
260     m_timelineContextTransitionMenu->addAction(actionCollection()->action(KStandardAction::name(KStandardAction::Copy)));
261
262     connect(projectMonitorDock, SIGNAL(visibilityChanged(bool)), m_projectMonitor, SLOT(refreshMonitor(bool)));
263     connect(clipMonitorDock, SIGNAL(visibilityChanged(bool)), m_clipMonitor, SLOT(refreshMonitor(bool)));
264     //connect(m_monitorManager, SIGNAL(connectMonitors()), this, SLOT(slotConnectMonitors()));
265     connect(m_monitorManager, SIGNAL(raiseClipMonitor(bool)), this, SLOT(slotRaiseMonitor(bool)));
266     connect(m_effectList, SIGNAL(addEffect(QDomElement)), this, SLOT(slotAddEffect(QDomElement)));
267     connect(m_effectList, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
268
269     m_monitorManager->initMonitors(m_clipMonitor, m_projectMonitor);
270     slotConnectMonitors();
271
272     setAutoSaveSettings();
273
274     if (KdenliveSettings::openlastproject()) {
275         openLastFile();
276     } else newFile();
277
278     activateShuttleDevice();
279 }
280
281 void MainWindow::queryQuit() {
282     kDebug() << "----- SAVING CONFUIG";
283     if (queryClose()) kapp->quit();
284 }
285
286 //virtual
287 bool MainWindow::queryClose() {
288     saveOptions();
289     if (m_activeDocument && m_activeDocument->isModified()) {
290         switch (KMessageBox::warningYesNoCancel(this, i18n("Save changes to document ?"))) {
291         case KMessageBox::Yes :
292             // save document here. If saving fails, return false;
293             saveFile();
294             return true;
295         case KMessageBox::No :
296             return true;
297         default: // cancel
298             return false;
299         }
300     }
301     return true;
302 }
303
304 void MainWindow::saveProperties(KConfig*) {
305     // save properties here,used by session management
306     saveFile();
307 }
308
309
310 void MainWindow::readProperties(KConfig *config) {
311     // read properties here,used by session management
312     QString Lastproject = config->group("Recent Files").readPathEntry("File1", QString());
313     openFile(KUrl(Lastproject));
314 }
315
316 void MainWindow::slotReloadEffects() {
317     initEffects::parseCustomEffectsFile();
318     m_customEffectsMenu->clear();
319     const QStringList effects = customEffects.effectNames();
320     QAction *action;
321     foreach(const QString &name, effects) {
322         action = new QAction(name, this);
323         action->setData(name);
324         m_customEffectsMenu->addAction(action);
325     }
326     m_effectList->reloadEffectList();
327 }
328
329 void MainWindow::activateShuttleDevice() {
330     if (m_jogProcess) delete m_jogProcess;
331     m_jogProcess = NULL;
332     if (KdenliveSettings::enableshuttle() == false) return;
333     m_jogProcess = new JogShuttle(KdenliveSettings::shuttledevice());
334     connect(m_jogProcess, SIGNAL(rewind1()), m_monitorManager, SLOT(slotRewindOneFrame()));
335     connect(m_jogProcess, SIGNAL(forward1()), m_monitorManager, SLOT(slotForwardOneFrame()));
336     connect(m_jogProcess, SIGNAL(rewind(double)), m_monitorManager, SLOT(slotRewind(double)));
337     connect(m_jogProcess, SIGNAL(forward(double)), m_monitorManager, SLOT(slotForward(double)));
338     connect(m_jogProcess, SIGNAL(stop()), m_monitorManager, SLOT(slotPlay()));
339     connect(m_jogProcess, SIGNAL(button(int)), this, SLOT(slotShuttleButton(int)));
340 }
341
342 void MainWindow::slotShuttleButton(int code) {
343     switch (code) {
344     case 5:
345         slotShuttleAction(KdenliveSettings::shuttle1());
346         break;
347     case 6:
348         slotShuttleAction(KdenliveSettings::shuttle2());
349         break;
350     case 7:
351         slotShuttleAction(KdenliveSettings::shuttle3());
352         break;
353     case 8:
354         slotShuttleAction(KdenliveSettings::shuttle4());
355         break;
356     case 9:
357         slotShuttleAction(KdenliveSettings::shuttle5());
358         break;
359     }
360 }
361
362 void MainWindow::slotShuttleAction(int code) {
363     switch (code) {
364     case 0:
365         return;
366     case 1:
367         m_monitorManager->slotPlay();
368         break;
369     default:
370         m_monitorManager->slotPlay();
371         break;
372     }
373 }
374
375 void MainWindow::slotFullScreen() {
376     //KToggleFullScreenAction::setFullScreen(this, actionCollection()->action("fullscreen")->isChecked());
377 }
378
379 void MainWindow::slotAddEffect(QDomElement effect, GenTime pos, int track) {
380     if (!m_activeDocument) return;
381     if (effect.isNull()) {
382         kDebug() << "--- ERROR, TRYING TO APPEND NULL EFFECT";
383         return;
384     }
385     TrackView *currentTimeLine = (TrackView *) m_timelineArea->currentWidget();
386     currentTimeLine->projectView()->slotAddEffect(effect, pos, track);
387 }
388
389 void MainWindow::slotRaiseMonitor(bool clipMonitor) {
390     if (clipMonitor) clipMonitorDock->raise();
391     else projectMonitorDock->raise();
392 }
393
394 void MainWindow::slotSetClipDuration(int id, int duration) {
395     if (!m_activeDocument) return;
396     m_activeDocument->setProducerDuration(id, duration);
397 }
398
399 void MainWindow::slotConnectMonitors() {
400
401     m_projectList->setRenderer(m_clipMonitor->render);
402     connect(m_projectList, SIGNAL(receivedClipDuration(int, int)), this, SLOT(slotSetClipDuration(int, int)));
403     connect(m_projectList, SIGNAL(showClipProperties(DocClipBase *)), this, SLOT(slotShowClipProperties(DocClipBase *)));
404     connect(m_projectList, SIGNAL(getFileProperties(const QDomElement &, int)), m_clipMonitor->render, SLOT(getFileProperties(const QDomElement &, int)));
405     connect(m_clipMonitor->render, SIGNAL(replyGetImage(int, int, const QPixmap &, int, int)), m_projectList, SLOT(slotReplyGetImage(int, int, const QPixmap &, int, int)));
406     connect(m_clipMonitor->render, SIGNAL(replyGetFileProperties(int, Mlt::Producer*, const QMap < QString, QString > &, const QMap < QString, QString > &)), m_projectList, SLOT(slotReplyGetFileProperties(int, Mlt::Producer*, const QMap < QString, QString > &, const QMap < QString, QString > &)));
407
408     connect(m_clipMonitor->render, SIGNAL(removeInvalidClip(int)), m_projectList, SLOT(slotRemoveInvalidClip(int)));
409
410     connect(m_clipMonitor, SIGNAL(refreshClipThumbnail(int)), m_projectList, SLOT(slotRefreshClipThumbnail(int)));
411 }
412
413 void MainWindow::setupActions() {
414
415     m_timecodeFormat = new KComboBox(this);
416     m_timecodeFormat->addItem(i18n("hh:mm:ss::ff"));
417     m_timecodeFormat->addItem(i18n("Frames"));
418
419     statusProgressBar = new QProgressBar(this);
420     statusProgressBar->setMinimum(0);
421     statusProgressBar->setMaximum(100);
422     statusProgressBar->setMaximumWidth(150);
423     statusProgressBar->setVisible(false);
424
425     QWidget *w = new QWidget;
426
427     QHBoxLayout *layout = new QHBoxLayout;
428     w->setLayout(layout);
429     layout->setContentsMargins(5, 0, 5, 0);
430     QToolBar *toolbar = new QToolBar("statusToolBar", this);
431
432
433     m_toolGroup = new QActionGroup(this);
434
435     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;}";
436
437     m_buttonSelectTool = toolbar->addAction(KIcon("kdenlive-select-tool"), i18n("Selection tool"));
438     m_buttonSelectTool->setCheckable(true);
439     m_buttonSelectTool->setChecked(true);
440
441     m_buttonRazorTool = toolbar->addAction(KIcon("edit-cut"), i18n("Razor tool"));
442     m_buttonRazorTool->setCheckable(true);
443     m_buttonRazorTool->setChecked(false);
444
445     m_toolGroup->addAction(m_buttonSelectTool);
446     m_toolGroup->addAction(m_buttonRazorTool);
447     m_toolGroup->setExclusive(true);
448     toolbar->setToolButtonStyle(Qt::ToolButtonIconOnly);
449
450     QWidget * actionWidget;
451     actionWidget = toolbar->widgetForAction(m_buttonSelectTool);
452     actionWidget->setMaximumWidth(24);
453     actionWidget->setMinimumHeight(17);
454
455     actionWidget = toolbar->widgetForAction(m_buttonRazorTool);
456     actionWidget->setMaximumWidth(24);
457     actionWidget->setMinimumHeight(17);
458
459     toolbar->setStyleSheet(style1);
460     connect(m_toolGroup, SIGNAL(triggered(QAction *)), this, SLOT(slotChangeTool(QAction *)));
461
462     toolbar->addSeparator();
463     m_buttonFitZoom = toolbar->addAction(KIcon("zoom-fit-best"), i18n("Fit zoom to project"));
464     m_buttonFitZoom->setCheckable(false);
465     connect(m_buttonFitZoom, SIGNAL(triggered()), this, SLOT(slotFitZoom()));
466
467     actionWidget = toolbar->widgetForAction(m_buttonFitZoom);
468     actionWidget->setMaximumWidth(24);
469     actionWidget->setMinimumHeight(17);
470
471     m_zoomSlider = new QSlider(Qt::Horizontal, this);
472     m_zoomSlider->setMaximum(13);
473     m_zoomSlider->setPageStep(1);
474
475     m_zoomSlider->setMaximumWidth(150);
476     m_zoomSlider->setMinimumWidth(100);
477
478     const int contentHeight = QFontMetrics(w->font()).height() + 8;
479     QString style = "QSlider::groove:horizontal { background-color: rgba(230, 230, 230, 220);border: 1px solid #999999;height: 8px;border-radius: 3px;margin-top:3px }";
480     style.append("QSlider::handle:horizontal {  background-color: white; border: 1px solid #999999;width: 9px;margin: -2px 0;border-radius: 3px; }");
481     m_zoomSlider->setStyleSheet(style);
482
483     //m_zoomSlider->setMaximumHeight(contentHeight);
484     //m_zoomSlider->height() + 5;
485     statusBar()->setMinimumHeight(contentHeight);
486
487
488     toolbar->addWidget(m_zoomSlider);
489
490     m_buttonVideoThumbs = toolbar->addAction(KIcon("kdenlive-show-videothumb"), i18n("Show video thumbnails"));
491     m_buttonVideoThumbs->setCheckable(true);
492     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
493     connect(m_buttonVideoThumbs, SIGNAL(triggered()), this, SLOT(slotSwitchVideoThumbs()));
494
495     m_buttonAudioThumbs = toolbar->addAction(KIcon("kdenlive-show-audiothumb"), i18n("Show audio thumbnails"));
496     m_buttonAudioThumbs->setCheckable(true);
497     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
498     connect(m_buttonAudioThumbs, SIGNAL(triggered()), this, SLOT(slotSwitchAudioThumbs()));
499
500     m_buttonShowMarkers = toolbar->addAction(KIcon("kdenlive-show-markers"), i18n("Show markers comments"));
501     m_buttonShowMarkers->setCheckable(true);
502     m_buttonShowMarkers->setChecked(KdenliveSettings::showmarkers());
503     connect(m_buttonShowMarkers, SIGNAL(triggered()), this, SLOT(slotSwitchMarkersComments()));
504
505     m_buttonSnap = toolbar->addAction(KIcon("kdenlive-snap"), i18n("Snap"));
506     m_buttonSnap->setCheckable(true);
507     m_buttonSnap->setChecked(KdenliveSettings::snaptopoints());
508     connect(m_buttonSnap, SIGNAL(triggered()), this, SLOT(slotSwitchSnap()));
509     layout->addWidget(toolbar);
510
511
512     actionWidget = toolbar->widgetForAction(m_buttonVideoThumbs);
513     actionWidget->setMaximumWidth(24);
514     actionWidget->setMinimumHeight(17);
515
516     actionWidget = toolbar->widgetForAction(m_buttonAudioThumbs);
517     actionWidget->setMaximumWidth(24);
518     actionWidget->setMinimumHeight(17);
519
520     actionWidget = toolbar->widgetForAction(m_buttonShowMarkers);
521     actionWidget->setMaximumWidth(24);
522     actionWidget->setMinimumHeight(17);
523
524     actionWidget = toolbar->widgetForAction(m_buttonSnap);
525     actionWidget->setMaximumWidth(24);
526     actionWidget->setMinimumHeight(17);
527
528     m_messageLabel = new StatusBarMessageLabel(this);
529     m_messageLabel->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::MinimumExpanding);
530
531     statusBar()->addWidget(m_messageLabel, 10);
532     statusBar()->addWidget(statusProgressBar, 0);
533     statusBar()->insertPermanentWidget(ID_TIMELINE_BUTTONS, w);
534     statusBar()->insertPermanentFixedItem("00:00:00:00", ID_TIMELINE_POS);
535     statusBar()->insertPermanentWidget(ID_TIMELINE_FORMAT, m_timecodeFormat);
536     statusBar()->setMaximumHeight(statusBar()->font().pointSize() * 4);
537     m_messageLabel->hide();
538
539     actionCollection()->addAction("select_tool", m_buttonSelectTool);
540     actionCollection()->addAction("razor_tool", m_buttonRazorTool);
541
542     actionCollection()->addAction("show_video_thumbs", m_buttonVideoThumbs);
543     actionCollection()->addAction("show_audio_thumbs", m_buttonAudioThumbs);
544     actionCollection()->addAction("show_markers", m_buttonShowMarkers);
545     actionCollection()->addAction("snap", m_buttonSnap);
546     actionCollection()->addAction("zoom_fit", m_buttonFitZoom);
547
548     m_projectSearch = new KAction(KIcon("edit-find"), i18n("Find"), this);
549     actionCollection()->addAction("project_find", m_projectSearch);
550     connect(m_projectSearch, SIGNAL(triggered(bool)), this, SLOT(slotFind()));
551     m_projectSearch->setShortcut(Qt::Key_Slash);
552
553     m_projectSearchNext = new KAction(KIcon("go-down-search"), i18n("Find Next"), this);
554     actionCollection()->addAction("project_find_next", m_projectSearchNext);
555     connect(m_projectSearchNext, SIGNAL(triggered(bool)), this, SLOT(slotFindNext()));
556     m_projectSearchNext->setShortcut(Qt::Key_F3);
557     m_projectSearchNext->setEnabled(false);
558
559     KAction* profilesAction = new KAction(KIcon("document-new"), i18n("Manage Profiles"), this);
560     actionCollection()->addAction("manage_profiles", profilesAction);
561     connect(profilesAction, SIGNAL(triggered(bool)), this, SLOT(slotEditProfiles()));
562
563     KAction* projectAction = new KAction(KIcon("configure"), i18n("Project Settings"), this);
564     actionCollection()->addAction("project_settings", projectAction);
565     connect(projectAction, SIGNAL(triggered(bool)), this, SLOT(slotEditProjectSettings()));
566
567     KAction* projectRender = new KAction(KIcon("media-record"), i18n("Render"), this);
568     actionCollection()->addAction("project_render", projectRender);
569     connect(projectRender, SIGNAL(triggered(bool)), this, SLOT(slotRenderProject()));
570
571     KAction* monitorPlay = new KAction(KIcon("media-playback-start"), i18n("Play"), this);
572     monitorPlay->setShortcut(Qt::Key_Space);
573     actionCollection()->addAction("monitor_play", monitorPlay);
574     connect(monitorPlay, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotPlay()));
575
576     KAction* monitorSeekBackward = new KAction(KIcon("media-seek-backward"), i18n("Rewind"), this);
577     monitorSeekBackward->setShortcut(Qt::Key_J);
578     actionCollection()->addAction("monitor_seek_backward", monitorSeekBackward);
579     connect(monitorSeekBackward, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotRewind()));
580
581     KAction* monitorSeekBackwardOneFrame = new KAction(KIcon("media-skip-backward"), i18n("Rewind 1 Frame"), this);
582     monitorSeekBackwardOneFrame->setShortcut(Qt::Key_Left);
583     actionCollection()->addAction("monitor_seek_backward-one-frame", monitorSeekBackwardOneFrame);
584     connect(monitorSeekBackwardOneFrame, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotRewindOneFrame()));
585
586     KAction* monitorSeekSnapBackward = new KAction(KIcon("media-seek-backward"), i18n("Go to Previous Snap Point"), this);
587     monitorSeekSnapBackward->setShortcut(Qt::ALT + Qt::Key_Left);
588     actionCollection()->addAction("monitor_seek_snap_backward", monitorSeekSnapBackward);
589     connect(monitorSeekSnapBackward, SIGNAL(triggered(bool)), this, SLOT(slotSnapRewind()));
590
591     KAction* monitorSeekForward = new KAction(KIcon("media-seek-forward"), i18n("Forward"), this);
592     monitorSeekForward->setShortcut(Qt::Key_L);
593     actionCollection()->addAction("monitor_seek_forward", monitorSeekForward);
594     connect(monitorSeekForward, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotForward()));
595
596     KAction* clipStart = new KAction(KIcon("media-seek-backward"), i18n("Go to Clip Start"), this);
597     clipStart->setShortcut(Qt::Key_Home);
598     actionCollection()->addAction("seek_clip_start", clipStart);
599     connect(clipStart, SIGNAL(triggered(bool)), this, SLOT(slotClipStart()));
600
601     KAction* clipEnd = new KAction(KIcon("media-seek-forward"), i18n("Go to Clip End"), this);
602     clipEnd->setShortcut(Qt::Key_End);
603     actionCollection()->addAction("seek_clip_end", clipEnd);
604     connect(clipEnd, SIGNAL(triggered(bool)), this, SLOT(slotClipEnd()));
605
606     KAction* projectStart = new KAction(KIcon("media-seek-backward"), i18n("Go to Project Start"), this);
607     projectStart->setShortcut(Qt::CTRL + Qt::Key_Home);
608     actionCollection()->addAction("seek_start", projectStart);
609     connect(projectStart, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotStart()));
610
611     KAction* projectEnd = new KAction(KIcon("media-seek-forward"), i18n("Go to Project End"), this);
612     projectEnd->setShortcut(Qt::CTRL + Qt::Key_End);
613     actionCollection()->addAction("seek_end", projectEnd);
614     connect(projectEnd, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotEnd()));
615
616     KAction* monitorSeekForwardOneFrame = new KAction(KIcon("media-skip-forward"), i18n("Forward 1 Frame"), this);
617     monitorSeekForwardOneFrame->setShortcut(Qt::Key_Right);
618     actionCollection()->addAction("monitor_seek_forward-one-frame", monitorSeekForwardOneFrame);
619     connect(monitorSeekForwardOneFrame, SIGNAL(triggered(bool)), m_monitorManager, SLOT(slotForwardOneFrame()));
620
621     KAction* monitorSeekSnapForward = new KAction(KIcon("media-seek-forward"), i18n("Go to Next Snap Point"), this);
622     monitorSeekSnapForward->setShortcut(Qt::ALT + Qt::Key_Right);
623     actionCollection()->addAction("monitor_seek_snap_forward", monitorSeekSnapForward);
624     connect(monitorSeekSnapForward, SIGNAL(triggered(bool)), this, SLOT(slotSnapForward()));
625
626     KAction* deleteTimelineClip = new KAction(KIcon("edit-delete"), i18n("Delete Selected Item"), this);
627     deleteTimelineClip->setShortcut(Qt::Key_Delete);
628     actionCollection()->addAction("delete_timeline_clip", deleteTimelineClip);
629     connect(deleteTimelineClip, SIGNAL(triggered(bool)), this, SLOT(slotDeleteTimelineClip()));
630
631     KAction* editTimelineClipSpeed = new KAction(KIcon("edit-delete"), i18n("Change Clip Speed"), this);
632     actionCollection()->addAction("change_clip_speed", editTimelineClipSpeed);
633     connect(editTimelineClipSpeed, SIGNAL(triggered(bool)), this, SLOT(slotChangeClipSpeed()));
634
635     KAction* cutTimelineClip = new KAction(KIcon("edit-cut"), i18n("Cut Clip"), this);
636     cutTimelineClip->setShortcut(Qt::SHIFT + Qt::Key_R);
637     actionCollection()->addAction("cut_timeline_clip", cutTimelineClip);
638     connect(cutTimelineClip, SIGNAL(triggered(bool)), this, SLOT(slotCutTimelineClip()));
639
640     KAction* addClipMarker = new KAction(KIcon("bookmark-new"), i18n("Add Marker to Clip"), this);
641     actionCollection()->addAction("add_clip_marker", addClipMarker);
642     connect(addClipMarker, SIGNAL(triggered(bool)), this, SLOT(slotAddClipMarker()));
643
644     KAction* deleteClipMarker = new KAction(KIcon("edit-delete"), i18n("Delete Marker from Clip"), this);
645     actionCollection()->addAction("delete_clip_marker", deleteClipMarker);
646     connect(deleteClipMarker, SIGNAL(triggered(bool)), this, SLOT(slotDeleteClipMarker()));
647
648     KAction* deleteAllClipMarkers = new KAction(KIcon("edit-delete"), i18n("Delete All Markers from Clip"), this);
649     actionCollection()->addAction("delete_all_clip_markers", deleteAllClipMarkers);
650     connect(deleteAllClipMarkers, SIGNAL(triggered(bool)), this, SLOT(slotDeleteAllClipMarkers()));
651
652     KAction* editClipMarker = new KAction(KIcon("document-properties"), i18n("Edit Marker"), this);
653     actionCollection()->addAction("edit_clip_marker", editClipMarker);
654     connect(editClipMarker, SIGNAL(triggered(bool)), this, SLOT(slotEditClipMarker()));
655
656     KAction *addGuide = new KAction(KIcon("document-new"), i18n("Add Guide"), this);
657     actionCollection()->addAction("add_guide", addGuide);
658     connect(addGuide, SIGNAL(triggered()), this, SLOT(slotAddGuide()));
659
660     QAction *delGuide = new KAction(KIcon("edit-delete"), i18n("Delete Guide"), this);
661     actionCollection()->addAction("delete_guide", delGuide);
662     connect(delGuide, SIGNAL(triggered()), this, SLOT(slotDeleteGuide()));
663
664     QAction *editGuide = new KAction(KIcon("document-properties"), i18n("Edit Guide"), this);
665     actionCollection()->addAction("edit_guide", editGuide);
666     connect(editGuide, SIGNAL(triggered()), this, SLOT(slotEditGuide()));
667
668     QAction *delAllGuides = new KAction(KIcon("edit-delete"), i18n("Delete All Guides"), this);
669     actionCollection()->addAction("delete_all_guides", delAllGuides);
670     connect(delAllGuides, SIGNAL(triggered()), this, SLOT(slotDeleteAllGuides()));
671
672     QAction *pasteEffects = new KAction(KIcon("edit-paste"), i18n("Paste Effects"), this);
673     actionCollection()->addAction("paste_effects", pasteEffects);
674     connect(pasteEffects , SIGNAL(triggered()), this, SLOT(slotPasteEffects()));
675
676     KStandardAction::quit(this, SLOT(queryQuit()),
677                           actionCollection());
678
679     KStandardAction::open(this, SLOT(openFile()),
680                           actionCollection());
681
682     m_fileOpenRecent = KStandardAction::openRecent(this, SLOT(openFile(const KUrl &)),
683                        actionCollection());
684
685     KStandardAction::save(this, SLOT(saveFile()),
686                           actionCollection());
687
688     KStandardAction::saveAs(this, SLOT(saveFileAs()),
689                             actionCollection());
690
691     KStandardAction::openNew(this, SLOT(newFile()),
692                              actionCollection());
693
694     KStandardAction::preferences(this, SLOT(slotPreferences()),
695                                  actionCollection());
696
697     KStandardAction::copy(this, SLOT(slotCopy()),
698                           actionCollection());
699
700     KStandardAction::paste(this, SLOT(slotPaste()),
701                            actionCollection());
702
703     KAction *undo = KStandardAction::undo(m_commandStack, SLOT(undo()),
704                                           actionCollection());
705     undo->setEnabled(false);
706     connect(m_commandStack, SIGNAL(canUndoChanged(bool)), undo, SLOT(setEnabled(bool)));
707
708     KAction *redo = KStandardAction::redo(m_commandStack, SLOT(redo()),
709                                           actionCollection());
710     redo->setEnabled(false);
711     connect(m_commandStack, SIGNAL(canRedoChanged(bool)), redo, SLOT(setEnabled(bool)));
712
713     KStandardAction::fullScreen(this, SLOT(slotFullScreen()), this, actionCollection());
714
715     connect(actionCollection(), SIGNAL(actionHovered(QAction*)),
716             this, SLOT(slotDisplayActionMessage(QAction*)));
717     //connect(actionCollection(), SIGNAL( clearStatusText() ),
718     //statusBar(), SLOT( clear() ) );
719
720     readOptions();
721 }
722
723 void MainWindow::slotDisplayActionMessage(QAction *a) {
724     statusBar()->showMessage(a->data().toString(), 3000);
725 }
726
727 void MainWindow::saveOptions() {
728     KdenliveSettings::self()->writeConfig();
729     KSharedConfigPtr config = KGlobal::config();
730     m_fileOpenRecent->saveEntries(KConfigGroup(config, "Recent Files"));
731     config->sync();
732 }
733
734 void MainWindow::readOptions() {
735     KSharedConfigPtr config = KGlobal::config();
736     m_fileOpenRecent->loadEntries(KConfigGroup(config, "Recent Files"));
737 }
738
739 void MainWindow::newFile() {
740     QString profileName;
741     KUrl projectFolder;
742     if (m_timelineArea->count() == 0) profileName = KdenliveSettings::default_profile();
743     else {
744         ProjectSettings *w = new ProjectSettings;
745         if (w->exec() != QDialog::Accepted) return;
746         profileName = w->selectedProfile();
747         projectFolder = w->selectedFolder();
748         delete w;
749     }
750     KdenliveDoc *doc = new KdenliveDoc(KUrl(), projectFolder, m_commandStack, this);
751     doc->setProfilePath(profileName);
752     TrackView *trackView = new TrackView(doc, this);
753     m_timelineArea->addTab(trackView, KIcon("kdenlive"), doc->description());
754     if (m_timelineArea->count() == 1) {
755         connectDocumentInfo(doc);
756         connectDocument(trackView, doc);
757     } else m_timelineArea->setTabBarHidden(false);
758 }
759
760 void MainWindow::activateDocument() {
761     TrackView *currentTab = (TrackView *) m_timelineArea->currentWidget();
762     KdenliveDoc *currentDoc = currentTab->document();
763     connectDocumentInfo(currentDoc);
764     connectDocument(currentTab, currentDoc);
765 }
766
767 void MainWindow::slotRemoveTab() {
768     QWidget *w = m_timelineArea->currentWidget();
769     // closing current document
770     int ix = m_timelineArea->currentIndex() + 1;
771     if (ix == m_timelineArea->count()) ix = 0;
772     m_timelineArea->setCurrentIndex(ix);
773     TrackView *tabToClose = (TrackView *) w;
774     KdenliveDoc *docToClose = tabToClose->document();
775     m_timelineArea->removeTab(m_timelineArea->indexOf(w));
776     if (m_timelineArea->count() == 1) m_timelineArea->setTabBarHidden(true);
777     delete docToClose;
778     delete w;
779 }
780
781 void MainWindow::saveFileAs(const QString &outputFileName) {
782     m_projectMonitor->saveSceneList(outputFileName, m_activeDocument->documentInfoXml());
783     m_activeDocument->setUrl(KUrl(outputFileName));
784     setCaption(m_activeDocument->description());
785     m_timelineArea->setTabText(m_timelineArea->currentIndex(), m_activeDocument->description());
786     m_timelineArea->setTabToolTip(m_timelineArea->currentIndex(), m_activeDocument->url().path());
787     m_activeDocument->setModified(false);
788     m_fileOpenRecent->addUrl(KUrl(outputFileName));
789 }
790
791 void MainWindow::saveFileAs() {
792     QString outputFile = KFileDialog::getSaveFileName(KUrl(), "*.kdenlive|Kdenlive project files (*.kdenlive)");
793     if (QFile::exists(outputFile)) {
794         if (KMessageBox::questionYesNo(this, i18n("File already exists.\nDo you want to overwrite it ?")) == KMessageBox::No) return;
795     }
796     saveFileAs(outputFile);
797 }
798
799 void MainWindow::saveFile() {
800     if (!m_activeDocument) return;
801     if (m_activeDocument->url().isEmpty()) {
802         saveFileAs();
803     } else {
804         saveFileAs(m_activeDocument->url().path());
805     }
806 }
807
808 void MainWindow::openFile() {
809     KUrl url = KFileDialog::getOpenUrl(KUrl(), "*.kdenlive|Kdenlive project files (*.kdenlive)\n*.westley|MLT project files (*.westley)");
810     if (url.isEmpty()) return;
811     m_fileOpenRecent->addUrl(url);
812     openFile(url);
813 }
814
815 void MainWindow::openLastFile() {
816     KSharedConfigPtr config = KGlobal::config();
817     KUrl::List urls = m_fileOpenRecent->urls();
818     if (urls.isEmpty()) newFile();
819     else openFile(urls.last());
820 }
821
822 void MainWindow::openFile(const KUrl &url) {
823     // Check for backup file
824     bool recovery = false;
825     QString directory = url.directory();
826     QString fileName = url.fileName();
827     KUrl recoveryUrl;
828     recoveryUrl.setDirectory(directory);
829     recoveryUrl.setFileName("~" + fileName);
830     if (KIO::NetAccess::exists(recoveryUrl, KIO::NetAccess::SourceSide, this)) {
831         KFileItem bkup(KFileItem::Unknown, KFileItem::Unknown, recoveryUrl, true);
832         KFileItem src(KFileItem::Unknown, KFileItem::Unknown, url, true);
833         if (bkup.time(KFileItem::ModificationTime) > src.time(KFileItem::ModificationTime)) {
834             // Backup file is more recent than source file, ask user for recovery
835             if (KMessageBox::questionYesNo(this, i18n("A newer recovery file exists for <b>%1</b>\nOpen recovery file ?", url.fileName())) == KMessageBox::Yes) recovery = true;
836         }
837     }
838
839     //TODO: get video profile from url before opening it
840     /*MltVideoProfile prof = ProfilesDialog::getVideoProfile(KdenliveSettings::default_profile());
841     if (prof.width == 0) prof = ProfilesDialog::getVideoProfile("dv_pal");
842
843     KdenliveSettings::setCurrent_profile(prof.path);*/
844     KdenliveDoc *doc;
845     if (recovery) {
846         doc = new KdenliveDoc(recoveryUrl, KUrl(), m_commandStack, this);
847         doc->setUrl(url);
848         doc->setModified(true);
849     } else doc = new KdenliveDoc(url, KUrl(), m_commandStack, this);
850     connectDocumentInfo(doc);
851     TrackView *trackView = new TrackView(doc, this);
852     m_timelineArea->setCurrentIndex(m_timelineArea->addTab(trackView, KIcon("kdenlive"), doc->description()));
853     m_timelineArea->setTabToolTip(m_timelineArea->currentIndex(), doc->url().path());
854     if (m_timelineArea->count() > 1) m_timelineArea->setTabBarHidden(false);
855     slotGotProgressInfo(QString(), -1);
856     m_projectMonitor->refreshMonitor(true);
857 }
858
859
860 void MainWindow::parseProfiles() {
861     //kdDebug()<<" + + YOUR MLT INSTALL WAS FOUND IN: "<< MLT_PREFIX <<endl;
862
863     //KdenliveSettings::setDefaulttmpfolder();
864     if (KdenliveSettings::mltpath().isEmpty()) {
865         KdenliveSettings::setMltpath(QString(MLT_PREFIX) + QString("/share/mlt/profiles/"));
866     }
867     if (KdenliveSettings::rendererpath().isEmpty()) {
868         KdenliveSettings::setRendererpath(KStandardDirs::findExe("inigo"));
869     }
870     QStringList profilesFilter;
871     profilesFilter << "*";
872     QStringList profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
873
874     if (profilesList.isEmpty()) {
875         // Cannot find MLT path, try finding inigo
876         QString profilePath = KdenliveSettings::rendererpath();
877         if (!profilePath.isEmpty()) {
878             profilePath = profilePath.section('/', 0, -3);
879             KdenliveSettings::setMltpath(profilePath + "/share/mlt/profiles/");
880             QStringList profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
881         }
882
883         if (profilesList.isEmpty()) {
884             // Cannot find the MLT profiles, ask for location
885             KUrlRequesterDialog *getUrl = new KUrlRequesterDialog(KdenliveSettings::mltpath(), i18n("Cannot find your Mlt profiles, please give the path"), this);
886             getUrl->fileDialog()->setMode(KFile::Directory);
887             getUrl->exec();
888             KUrl mltPath = getUrl->selectedUrl();
889             delete getUrl;
890             if (mltPath.isEmpty()) kapp->quit();
891             KdenliveSettings::setMltpath(mltPath.path());
892             QStringList profilesList = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
893         }
894     }
895
896     if (KdenliveSettings::rendererpath().isEmpty()) {
897         // Cannot find the MLT inigo renderer, ask for location
898         KUrlRequesterDialog *getUrl = new KUrlRequesterDialog(KdenliveSettings::mltpath(), i18n("Cannot find the inigo program required for rendering (part of Mlt)"), this);
899         getUrl->exec();
900         KUrl rendererPath = getUrl->selectedUrl();
901         delete getUrl;
902         if (rendererPath.isEmpty()) kapp->quit();
903         KdenliveSettings::setRendererpath(rendererPath.path());
904     }
905
906     kDebug() << "RESULTING MLT PATH: " << KdenliveSettings::mltpath();
907
908     // Parse MLT profiles to build a list of available video formats
909     if (profilesList.isEmpty()) parseProfiles();
910 }
911
912
913 void MainWindow::slotEditProfiles() {
914     ProfilesDialog *w = new ProfilesDialog;
915     w->exec();
916     delete w;
917 }
918
919 void MainWindow::slotEditProjectSettings() {
920     ProjectSettings *w = new ProjectSettings;
921     if (w->exec() == QDialog::Accepted) {
922         QString profile = w->selectedProfile();
923         m_activeDocument->setProfilePath(profile);
924         KdenliveSettings::setCurrent_profile(profile);
925         KdenliveSettings::setProject_fps(m_activeDocument->fps());
926         setCaption(m_activeDocument->description());
927         m_monitorManager->resetProfiles();
928         if (m_renderWidget) m_renderWidget->setDocumentStandard(m_activeDocument->getDocumentStandard());
929         m_monitorManager->setTimecode(m_activeDocument->timecode());
930         m_timelineArea->setTabText(m_timelineArea->currentIndex(), m_activeDocument->description());
931
932         // We need to desactivate & reactivate monitors to get a refresh
933         m_monitorManager->switchMonitors();
934     }
935     delete w;
936 }
937
938 void MainWindow::slotRenderProject() {
939     if (!m_renderWidget) {
940         m_renderWidget = new RenderWidget(this);
941         connect(m_renderWidget, SIGNAL(doRender(const QString&, const QString&, const QStringList &, bool, bool)), this, SLOT(slotDoRender(const QString&, const QString&, const QStringList &, bool, bool)));
942     }
943     /*TrackView *currentTab = (TrackView *) m_timelineArea->currentWidget();
944     if (currentTab) m_renderWidget->setTimeline(currentTab);
945     m_renderWidget->setDocument(m_activeDocument);*/
946     m_renderWidget->show();
947 }
948
949 void MainWindow::slotDoRender(const QString &dest, const QString &render, const QStringList &avformat_args, bool zoneOnly, bool playAfter) {
950     if (dest.isEmpty()) return;
951     int in;
952     int out;
953     TrackView *currentTab = (TrackView *) m_timelineArea->currentWidget();
954     if (currentTab && zoneOnly) {
955         in = currentTab->inPoint();
956         out = currentTab->outPoint();
957     }
958     KTemporaryFile temp;
959     temp.setAutoRemove(false);
960     temp.setSuffix(".westley");
961     if (temp.open()) {
962         m_projectMonitor->saveSceneList(temp.fileName());
963         QStringList args;
964         args << "-erase";
965         if (zoneOnly) args << "in=" + QString::number(in) << "out=" + QString::number(out);
966         QString videoPlayer = "-";
967         if (playAfter) {
968             videoPlayer = KdenliveSettings::defaultplayerapp();
969             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."));
970         }
971         args << KdenliveSettings::rendererpath() << m_activeDocument->profilePath() << render << videoPlayer << temp.fileName() << dest << avformat_args;
972         QProcess::startDetached("kdenlive_render", args);
973     }
974 }
975
976 void MainWindow::slotUpdateMousePosition(int pos) {
977     if (m_activeDocument)
978         switch (m_timecodeFormat->currentIndex()) {
979         case 0:
980             statusBar()->changeItem(m_activeDocument->timecode().getTimecodeFromFrames(pos), ID_TIMELINE_POS);
981             break;
982         default:
983             statusBar()->changeItem(QString::number(pos), ID_TIMELINE_POS);
984         }
985 }
986
987 void MainWindow::slotUpdateDocumentState(bool modified) {
988     setCaption(m_activeDocument->description(), modified);
989     if (modified) {
990         m_timelineArea->setTabTextColor(m_timelineArea->currentIndex(), palette().color(QPalette::Link));
991         m_timelineArea->setTabIcon(m_timelineArea->currentIndex(), KIcon("document-save"));
992     } else {
993         m_timelineArea->setTabTextColor(m_timelineArea->currentIndex(), palette().color(QPalette::Text));
994         m_timelineArea->setTabIcon(m_timelineArea->currentIndex(), KIcon("kdenlive"));
995     }
996 }
997
998 void MainWindow::connectDocumentInfo(KdenliveDoc *doc) {
999     if (m_activeDocument) {
1000         if (m_activeDocument == doc) return;
1001         disconnect(m_activeDocument, SIGNAL(progressInfo(const QString &, int)), this, SLOT(slotGotProgressInfo(const QString &, int)));
1002     }
1003     connect(doc, SIGNAL(progressInfo(const QString &, int)), this, SLOT(slotGotProgressInfo(const QString &, int)));
1004 }
1005
1006 void MainWindow::connectDocument(TrackView *trackView, KdenliveDoc *doc) { //changed
1007     //m_projectMonitor->stop();
1008     kDebug() << "///////////////////   CONNECTING DOC TO PROJECT VIEW ////////////////";
1009     if (m_activeDocument) {
1010         if (m_activeDocument == doc) return;
1011         m_activeDocument->backupMltPlaylist();
1012         if (m_activeTimeline) {
1013             disconnect(m_projectMonitor, SIGNAL(renderPosition(int)), m_activeTimeline, SLOT(moveCursorPos(int)));
1014             disconnect(m_projectMonitor, SIGNAL(durationChanged(int)), m_activeTimeline, SLOT(setDuration(int)));
1015             disconnect(m_activeDocument, SIGNAL(addProjectClip(DocClipBase *)), m_projectList, SLOT(slotAddClip(DocClipBase *)));
1016             disconnect(m_activeDocument, SIGNAL(addProjectFolder(const QString, int, bool, bool)), m_projectList, SLOT(slotAddFolder(const QString, int, bool, bool)));
1017             disconnect(m_activeDocument, SIGNAL(signalDeleteProjectClip(int)), m_projectList, SLOT(slotDeleteClip(int)));
1018             disconnect(m_activeDocument, SIGNAL(updateClipDisplay(int)), m_projectList, SLOT(slotUpdateClip(int)));
1019             disconnect(m_activeDocument, SIGNAL(refreshClipThumbnail(int)), m_projectList, SLOT(slotRefreshClipThumbnail(int)));
1020             disconnect(m_activeDocument, SIGNAL(deletTimelineClip(int)), m_activeTimeline, SLOT(slotDeleteClip(int)));
1021             disconnect(m_activeTimeline, SIGNAL(clipItemSelected(ClipItem*)), effectStack, SLOT(slotClipItemSelected(ClipItem*)));
1022             disconnect(m_activeTimeline, SIGNAL(clipItemSelected(ClipItem*)), this, SLOT(slotActivateEffectStackView()));
1023             disconnect(m_activeTimeline, SIGNAL(transitionItemSelected(Transition*)), transitionConfig, SLOT(slotTransitionItemSelected(Transition*)));
1024             disconnect(m_activeTimeline, SIGNAL(transitionItemSelected(Transition*)), this, SLOT(slotActivateTransitionView()));
1025             disconnect(m_zoomSlider, SIGNAL(valueChanged(int)), m_activeTimeline, SLOT(slotChangeZoom(int)));
1026             disconnect(m_activeTimeline->projectView(), SIGNAL(displayMessage(const QString&, MessageType)), m_messageLabel, SLOT(setMessage(const QString&, MessageType)));
1027             disconnect(m_activeTimeline->projectView(), SIGNAL(showClipFrame(DocClipBase *, const int)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *, const int)));
1028
1029             disconnect(m_activeDocument, SIGNAL(docModified(bool)), this, SLOT(slotUpdateDocumentState(bool)));
1030             disconnect(effectStack, SIGNAL(updateClipEffect(ClipItem*, QDomElement, QDomElement, int)), m_activeTimeline->projectView(), SLOT(slotUpdateClipEffect(ClipItem*, QDomElement, QDomElement, int)));
1031             disconnect(effectStack, SIGNAL(removeEffect(ClipItem*, QDomElement)), m_activeTimeline->projectView(), SLOT(slotDeleteEffect(ClipItem*, QDomElement)));
1032             disconnect(effectStack, SIGNAL(changeEffectState(ClipItem*, int, bool)), m_activeTimeline->projectView(), SLOT(slotChangeEffectState(ClipItem*, int, bool)));
1033             disconnect(effectStack, SIGNAL(changeEffectPosition(ClipItem*, int, int)), trackView->projectView(), SLOT(slotChangeEffectPosition(ClipItem*, int, int)));
1034             disconnect(effectStack, SIGNAL(refreshEffectStack(ClipItem*)), m_activeTimeline->projectView(), SLOT(slotRefreshEffects(ClipItem*)));
1035             disconnect(effectStack, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
1036             disconnect(transitionConfig, SIGNAL(transitionUpdated(Transition *, QDomElement)), trackView->projectView() , SLOT(slotTransitionUpdated(Transition *, QDomElement)));
1037             disconnect(m_activeTimeline->projectView(), SIGNAL(activateDocumentMonitor()), m_projectMonitor, SLOT(activateMonitor()));
1038         }
1039         m_activeDocument->setRenderer(NULL);
1040         disconnect(m_projectList, SIGNAL(clipSelected(DocClipBase *)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *)));
1041         m_clipMonitor->stop();
1042     }
1043     KdenliveSettings::setCurrent_profile(doc->profilePath());
1044     KdenliveSettings::setProject_fps(doc->fps());
1045     m_monitorManager->resetProfiles();
1046     m_projectList->setDocument(doc);
1047     connect(m_projectList, SIGNAL(clipSelected(DocClipBase *)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *)));
1048     connect(trackView, SIGNAL(cursorMoved()), m_projectMonitor, SLOT(activateMonitor()));
1049     connect(trackView, SIGNAL(mousePosition(int)), this, SLOT(slotUpdateMousePosition(int)));
1050     connect(m_projectMonitor, SIGNAL(renderPosition(int)), trackView, SLOT(moveCursorPos(int)));
1051     connect(m_projectMonitor, SIGNAL(durationChanged(int)), trackView, SLOT(setDuration(int)));
1052     connect(doc, SIGNAL(addProjectClip(DocClipBase *)), m_projectList, SLOT(slotAddClip(DocClipBase *)));
1053     connect(doc, SIGNAL(addProjectFolder(const QString, int, bool, bool)), m_projectList, SLOT(slotAddFolder(const QString, int, bool, bool)));
1054     connect(doc, SIGNAL(signalDeleteProjectClip(int)), m_projectList, SLOT(slotDeleteClip(int)));
1055     connect(doc, SIGNAL(updateClipDisplay(int)), m_projectList, SLOT(slotUpdateClip(int)));
1056     connect(doc, SIGNAL(refreshClipThumbnail(int)), m_projectList, SLOT(slotRefreshClipThumbnail(int)));
1057
1058     connect(doc, SIGNAL(deletTimelineClip(int)), trackView, SLOT(slotDeleteClip(int)));
1059     connect(doc, SIGNAL(docModified(bool)), this, SLOT(slotUpdateDocumentState(bool)));
1060
1061
1062
1063     connect(trackView, SIGNAL(clipItemSelected(ClipItem*)), effectStack, SLOT(slotClipItemSelected(ClipItem*)));
1064     connect(trackView, SIGNAL(clipItemSelected(ClipItem*)), this, SLOT(slotActivateEffectStackView()));
1065     connect(trackView, SIGNAL(transitionItemSelected(Transition*)), transitionConfig, SLOT(slotTransitionItemSelected(Transition*)));
1066     connect(trackView, SIGNAL(transitionItemSelected(Transition*)), this, SLOT(slotActivateTransitionView()));
1067     m_zoomSlider->setValue(doc->zoom());
1068     connect(m_zoomSlider, SIGNAL(valueChanged(int)), trackView, SLOT(slotChangeZoom(int)));
1069     connect(trackView->projectView(), SIGNAL(zoomIn()), this, SLOT(slotZoomIn()));
1070     connect(trackView->projectView(), SIGNAL(zoomOut()), this, SLOT(slotZoomOut()));
1071     connect(trackView->projectView(), SIGNAL(displayMessage(const QString&, MessageType)), m_messageLabel, SLOT(setMessage(const QString&, MessageType)));
1072
1073     connect(trackView->projectView(), SIGNAL(showClipFrame(DocClipBase *, const int)), m_clipMonitor, SLOT(slotSetXml(DocClipBase *, const int)));
1074
1075
1076     connect(effectStack, SIGNAL(updateClipEffect(ClipItem*, QDomElement, QDomElement, int)), trackView->projectView(), SLOT(slotUpdateClipEffect(ClipItem*, QDomElement, QDomElement, int)));
1077     connect(effectStack, SIGNAL(removeEffect(ClipItem*, QDomElement)), trackView->projectView(), SLOT(slotDeleteEffect(ClipItem*, QDomElement)));
1078     connect(effectStack, SIGNAL(changeEffectState(ClipItem*, int, bool)), trackView->projectView(), SLOT(slotChangeEffectState(ClipItem*, int, bool)));
1079     connect(effectStack, SIGNAL(changeEffectPosition(ClipItem*, int, int)), trackView->projectView(), SLOT(slotChangeEffectPosition(ClipItem*, int, int)));
1080     connect(effectStack, SIGNAL(refreshEffectStack(ClipItem*)), trackView->projectView(), SLOT(slotRefreshEffects(ClipItem*)));
1081     connect(transitionConfig, SIGNAL(transitionUpdated(Transition *, QDomElement)), trackView->projectView() , SLOT(slotTransitionUpdated(Transition *, QDomElement)));
1082     connect(effectStack, SIGNAL(reloadEffects()), this, SLOT(slotReloadEffects()));
1083
1084     connect(trackView->projectView(), SIGNAL(activateDocumentMonitor()), m_projectMonitor, SLOT(activateMonitor()));
1085     trackView->projectView()->setContextMenu(m_timelineContextMenu, m_timelineContextClipMenu, m_timelineContextTransitionMenu);
1086     m_activeTimeline = trackView;
1087     if (m_renderWidget) m_renderWidget->setDocumentStandard(doc->getDocumentStandard());
1088     m_monitorManager->setTimecode(doc->timecode());
1089     doc->setRenderer(m_projectMonitor->render);
1090     m_commandStack->setActiveStack(doc->commandStack());
1091
1092     doc->updateAllProjectClips();
1093
1094     if (m_commandStack->isClean()) kDebug() << "////////////  UNDO STACK IS CLEAN";
1095     else  kDebug() << "////////////  UNDO STACK IS NOT CLEAN*******************";
1096
1097     //m_overView->setScene(trackView->projectScene());
1098     //m_overView->scale(m_overView->width() / trackView->duration(), m_overView->height() / (50 * trackView->tracksNumber()));
1099     //m_overView->fitInView(m_overView->itemAt(0, 50), Qt::KeepAspectRatio);
1100
1101     setCaption(doc->description());
1102     m_activeDocument = doc;
1103 }
1104
1105 void MainWindow::slotPreferences(int page, int option) {
1106     //An instance of your dialog could be already created and could be
1107     // cached, in which case you want to display the cached dialog
1108     // instead of creating another one
1109     if (KConfigDialog::showDialog("settings")) {
1110         if (page != -1) static_cast <KdenliveSettingsDialog*>(KConfigDialog::exists("settings"))->showPage(page, option);
1111         return;
1112     }
1113
1114     // KConfigDialog didn't find an instance of this dialog, so lets
1115     // create it :
1116     KdenliveSettingsDialog* dialog = new KdenliveSettingsDialog(this);
1117     connect(dialog, SIGNAL(settingsChanged(const QString&)), this, SLOT(updateConfiguration()));
1118     connect(dialog, SIGNAL(doResetProfile()), m_monitorManager, SLOT(resetProfiles()));
1119     dialog->show();
1120     if (page != -1) dialog->showPage(page, option);
1121 }
1122
1123 void MainWindow::updateConfiguration() {
1124     //TODO: we should apply settings to all projects, not only the current one
1125     if (m_activeTimeline) {
1126         m_activeTimeline->refresh();
1127         m_activeTimeline->projectView()->checkAutoScroll();
1128         m_activeTimeline->projectView()->checkTrackHeight();
1129         if (m_activeDocument) m_activeDocument->clipManager()->checkAudioThumbs();
1130     }
1131     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
1132     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
1133     activateShuttleDevice();
1134
1135 }
1136
1137 void MainWindow::slotSwitchVideoThumbs() {
1138     KdenliveSettings::setVideothumbnails(!KdenliveSettings::videothumbnails());
1139     if (m_activeTimeline) {
1140         m_activeTimeline->refresh();
1141     }
1142     m_buttonVideoThumbs->setChecked(KdenliveSettings::videothumbnails());
1143 }
1144
1145 void MainWindow::slotSwitchAudioThumbs() {
1146     KdenliveSettings::setAudiothumbnails(!KdenliveSettings::audiothumbnails());
1147     if (m_activeTimeline) {
1148         m_activeTimeline->refresh();
1149         m_activeTimeline->projectView()->checkAutoScroll();
1150         if (m_activeDocument) m_activeDocument->clipManager()->checkAudioThumbs();
1151     }
1152     m_buttonAudioThumbs->setChecked(KdenliveSettings::audiothumbnails());
1153 }
1154
1155 void MainWindow::slotSwitchMarkersComments() {
1156     KdenliveSettings::setShowmarkers(!KdenliveSettings::showmarkers());
1157     if (m_activeTimeline) {
1158         m_activeTimeline->refresh();
1159     }
1160     m_buttonShowMarkers->setChecked(KdenliveSettings::showmarkers());
1161 }
1162
1163 void MainWindow::slotSwitchSnap() {
1164     KdenliveSettings::setSnaptopoints(!KdenliveSettings::snaptopoints());
1165     m_buttonShowMarkers->setChecked(KdenliveSettings::snaptopoints());
1166 }
1167
1168
1169 void MainWindow::slotDeleteTimelineClip() {
1170     if (m_activeTimeline) {
1171         m_activeTimeline->projectView()->deleteSelectedClips();
1172     }
1173 }
1174
1175 void MainWindow::slotChangeClipSpeed() {
1176     if (m_activeTimeline) {
1177         m_activeTimeline->projectView()->changeClipSpeed();
1178     }
1179 }
1180
1181 void MainWindow::slotAddClipMarker() {
1182     if (m_activeTimeline) {
1183         m_activeTimeline->projectView()->slotAddClipMarker();
1184     }
1185 }
1186
1187 void MainWindow::slotDeleteClipMarker() {
1188     if (m_activeTimeline) {
1189         m_activeTimeline->projectView()->slotDeleteClipMarker();
1190     }
1191 }
1192
1193 void MainWindow::slotDeleteAllClipMarkers() {
1194     if (m_activeTimeline) {
1195         m_activeTimeline->projectView()->slotDeleteAllClipMarkers();
1196     }
1197 }
1198
1199 void MainWindow::slotEditClipMarker() {
1200     if (m_activeTimeline) {
1201         m_activeTimeline->projectView()->slotEditClipMarker();
1202     }
1203 }
1204
1205 void MainWindow::slotAddGuide() {
1206     if (m_activeTimeline)
1207         m_activeTimeline->projectView()->slotAddGuide();
1208 }
1209
1210 void MainWindow::slotEditGuide() {
1211     if (m_activeTimeline)
1212         m_activeTimeline->projectView()->slotEditGuide();
1213 }
1214
1215 void MainWindow::slotDeleteGuide() {
1216     if (m_activeTimeline)
1217         m_activeTimeline->projectView()->slotDeleteGuide();
1218 }
1219
1220 void MainWindow::slotDeleteAllGuides() {
1221     if (m_activeTimeline)
1222         m_activeTimeline->projectView()->slotDeleteAllGuides();
1223 }
1224
1225 void MainWindow::slotCutTimelineClip() {
1226     if (m_activeTimeline) {
1227         m_activeTimeline->projectView()->cutSelectedClips();
1228     }
1229 }
1230
1231 void MainWindow::slotAddProjectClip(KUrl url) {
1232     if (m_activeDocument)
1233         m_activeDocument->slotAddClipFile(url, QString());
1234 }
1235
1236 void MainWindow::slotAddTransition(QAction *result) {
1237     if (!result) return;
1238     QDomElement effect = transitions.getEffectByName(result->data().toString());
1239     if (m_activeTimeline) {
1240         m_activeTimeline->projectView()->slotAddTransitionToSelectedClips(effect);
1241     }
1242 }
1243
1244 void MainWindow::slotAddVideoEffect(QAction *result) {
1245     if (!result) return;
1246     QDomElement effect = videoEffects.getEffectByName(result->data().toString());
1247     slotAddEffect(effect);
1248 }
1249
1250 void MainWindow::slotAddAudioEffect(QAction *result) {
1251     if (!result) return;
1252     QDomElement effect = audioEffects.getEffectByName(result->data().toString());
1253     slotAddEffect(effect);
1254 }
1255
1256 void MainWindow::slotAddCustomEffect(QAction *result) {
1257     if (!result) return;
1258     QDomElement effect = customEffects.getEffectByName(result->data().toString());
1259     slotAddEffect(effect);
1260 }
1261
1262 void MainWindow::slotZoomIn() {
1263     m_zoomSlider->setValue(m_zoomSlider->value() - 1);
1264 }
1265
1266 void MainWindow::slotZoomOut() {
1267     m_zoomSlider->setValue(m_zoomSlider->value() + 1);
1268 }
1269
1270 void MainWindow::slotFitZoom() {
1271     if (m_activeTimeline) {
1272         m_zoomSlider->setValue(m_activeTimeline->fitZoom());
1273     }
1274 }
1275
1276 void MainWindow::slotGotProgressInfo(const QString &message, int progress) {
1277     statusProgressBar->setValue(progress);
1278     if (progress >= 0) {
1279         if (!message.isEmpty()) m_messageLabel->setMessage(message, InformationMessage);//statusLabel->setText(message);
1280         statusProgressBar->setVisible(true);
1281     } else {
1282         m_messageLabel->setMessage(QString(), DefaultMessage);
1283         statusProgressBar->setVisible(false);
1284     }
1285 }
1286
1287 void MainWindow::slotShowClipProperties(DocClipBase *clip) {
1288     if (clip->clipType() == TEXT) {
1289         m_activeDocument->editTextClip(clip->getProperty("xml"), clip->getId());
1290         return;
1291     }
1292     ClipProperties dia(clip, m_activeDocument->timecode(), m_activeDocument->fps(), this);
1293     connect(&dia, SIGNAL(addMarker(int, GenTime, QString)), m_activeTimeline->projectView(), SLOT(slotAddClipMarker(int, GenTime, QString)));
1294     if (dia.exec() == QDialog::Accepted) {
1295         m_projectList->slotUpdateClipProperties(dia.clipId(), dia.properties());
1296         if (dia.needsTimelineRefresh()) {
1297             // update clip occurences in timeline
1298             m_activeTimeline->projectView()->slotUpdateClip(dia.clipId());
1299         }
1300     }
1301 }
1302
1303 void MainWindow::customEvent(QEvent* e) {
1304     if (e->type() == QEvent::User) {
1305         // The timeline playing position changed...
1306         kDebug() << "RECIEVED JOG EVEMNT!!!";
1307     }
1308 }
1309 void MainWindow::slotActivateEffectStackView() {
1310     effectStack->raiseWindow(effectStackDock);
1311 }
1312
1313 void MainWindow::slotActivateTransitionView() {
1314     transitionConfig->raiseWindow(transitionConfigDock);
1315 }
1316
1317 void MainWindow::slotSnapRewind() {
1318     if (m_monitorManager->projectMonitorFocused()) {
1319         if (m_activeTimeline)
1320             m_activeTimeline->projectView()->slotSeekToPreviousSnap();
1321     }
1322 }
1323
1324 void MainWindow::slotSnapForward() {
1325     if (m_monitorManager->projectMonitorFocused()) {
1326         if (m_activeTimeline)
1327             m_activeTimeline->projectView()->slotSeekToNextSnap();
1328     }
1329 }
1330
1331 void MainWindow::slotClipStart() {
1332     if (m_monitorManager->projectMonitorFocused()) {
1333         if (m_activeTimeline)
1334             m_activeTimeline->projectView()->clipStart();
1335     }
1336 }
1337
1338 void MainWindow::slotClipEnd() {
1339     if (m_monitorManager->projectMonitorFocused()) {
1340         if (m_activeTimeline)
1341             m_activeTimeline->projectView()->clipEnd();
1342     }
1343 }
1344
1345 void MainWindow::slotChangeTool(QAction * action) {
1346     if (action == m_buttonSelectTool) slotSetTool(SELECTTOOL);
1347     else if (action == m_buttonRazorTool) slotSetTool(RAZORTOOL);
1348 }
1349
1350 void MainWindow::slotSetTool(PROJECTTOOL tool) {
1351     if (m_activeDocument && m_activeTimeline) {
1352         //m_activeDocument->setTool(tool);
1353         m_activeTimeline->projectView()->setTool(tool);
1354     }
1355 }
1356
1357 void MainWindow::slotCopy() {
1358     if (!m_activeDocument || !m_activeTimeline) return;
1359     m_activeTimeline->projectView()->copyClip();
1360 }
1361
1362 void MainWindow::slotPaste() {
1363     if (!m_activeDocument || !m_activeTimeline) return;
1364     m_activeTimeline->projectView()->pasteClip();
1365 }
1366
1367 void MainWindow::slotPasteEffects() {
1368     if (!m_activeDocument || !m_activeTimeline) return;
1369     m_activeTimeline->projectView()->pasteClipEffects();
1370 }
1371
1372 void MainWindow::slotFind() {
1373     if (!m_activeDocument || !m_activeTimeline) return;
1374     m_projectSearch->setEnabled(false);
1375     m_findActivated = true;
1376     m_findString = QString();
1377     m_activeTimeline->projectView()->initSearchStrings();
1378     statusBar()->showMessage(i18n("Starting -- find text as you type"));
1379     m_findTimer.start(5000);
1380     qApp->installEventFilter(this);
1381 }
1382
1383 void MainWindow::slotFindNext() {
1384     if (m_activeTimeline && m_activeTimeline->projectView()->findNextString(m_findString)) {
1385         statusBar()->showMessage(i18n("Found : %1", m_findString));
1386     } else {
1387         statusBar()->showMessage(i18n("Reached end of project"));
1388     }
1389     m_findTimer.start(4000);
1390 }
1391
1392 void MainWindow::findAhead() {
1393     if (m_activeTimeline && m_activeTimeline->projectView()->findString(m_findString)) {
1394         m_projectSearchNext->setEnabled(true);
1395         statusBar()->showMessage(i18n("Found : %1", m_findString));
1396     } else {
1397         m_projectSearchNext->setEnabled(false);
1398         statusBar()->showMessage(i18n("Not found : %1", m_findString));
1399     }
1400 }
1401
1402 void MainWindow::findTimeout() {
1403     m_projectSearchNext->setEnabled(false);
1404     m_findActivated = false;
1405     m_findString = QString();
1406     statusBar()->showMessage(i18n("Find stopped"), 3000);
1407     if (m_activeTimeline) m_activeTimeline->projectView()->clearSearchStrings();
1408     m_projectSearch->setEnabled(true);
1409     removeEventFilter(this);
1410 }
1411
1412 void MainWindow::keyPressEvent(QKeyEvent *ke) {
1413     if (m_findActivated) {
1414         if (ke->key() == Qt::Key_Backspace) {
1415             m_findString = m_findString.left(m_findString.length() - 1);
1416
1417             if (!m_findString.isEmpty()) {
1418                 findAhead();
1419             } else {
1420                 findTimeout();
1421             }
1422
1423             m_findTimer.start(4000);
1424             ke->accept();
1425             return;
1426         } else if (ke->key() == Qt::Key_Escape) {
1427             findTimeout();
1428             ke->accept();
1429             return;
1430         } else if (ke->key() == Qt::Key_Space || !ke->text().trimmed().isEmpty()) {
1431             m_findString += ke->text();
1432
1433             findAhead();
1434
1435             m_findTimer.start(4000);
1436             ke->accept();
1437             return;
1438         }
1439     } else KXmlGuiWindow::keyPressEvent(ke);
1440 }
1441
1442 bool MainWindow::eventFilter(QObject *obj, QEvent *event) {
1443     if (m_findActivated) {
1444         if (event->type() == QEvent::ShortcutOverride) {
1445             QKeyEvent* ke = (QKeyEvent*) event;
1446             if (ke->text().trimmed().isEmpty()) return false;
1447             ke->accept();
1448             return true;
1449         } else return false;
1450     } else {
1451         // pass the event on to the parent class
1452         return QMainWindow::eventFilter(obj, event);
1453     }
1454 }
1455
1456 #include "mainwindow.moc"