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