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