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