]> git.sesse.net Git - kdenlive/blob - src/monitor.cpp
Cleanup monitor ruler update on seeking
[kdenlive] / src / monitor.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 #include "monitor.h"
22 #include "smallruler.h"
23 #include "docclipbase.h"
24 #include "abstractclipitem.h"
25 #include "monitorscene.h"
26 #include "monitoreditwidget.h"
27 #include "kdenlivesettings.h"
28
29 #include <KDebug>
30 #include <KLocale>
31 #include <KFileDialog>
32 #include <KApplication>
33 #include <KMessageBox>
34
35 #include <QMouseEvent>
36 #include <QStylePainter>
37 #include <QMenu>
38 #include <QToolButton>
39 #include <QToolBar>
40 #include <QDesktopWidget>
41 #include <QLabel>
42 #include <QIntValidator>
43 #include <QVBoxLayout>
44
45
46 #define SEEK_INACTIVE (-1)
47
48
49 Monitor::Monitor(Kdenlive::MONITORID id, MonitorManager *manager, QString profile, QWidget *parent) :
50     AbstractMonitor(id, manager, parent),
51     render(NULL),
52     m_currentClip(NULL),
53     m_overlay(NULL),
54     m_scale(1),
55     m_length(0),
56     m_dragStarted(false),
57     m_contextMenu(NULL),
58     m_effectWidget(NULL),
59     m_selectedClip(NULL),
60     m_loopClipTransition(true),
61     m_editMarker(NULL)
62 {
63     QVBoxLayout *layout = new QVBoxLayout;
64     layout->setContentsMargins(0, 0, 0, 0);
65     layout->setSpacing(0);
66
67     // Video widget holder
68     layout->addWidget(videoBox, 10);
69     layout->addStretch();
70
71     // Get base size for icons
72     int s = style()->pixelMetric(QStyle::PM_SmallIconSize);
73
74
75     // Tool bar buttons
76     m_toolbar = new QToolBar(this);
77     m_toolbar->setIconSize(QSize(s, s));
78
79     m_playIcon = KIcon("media-playback-start");
80     m_pauseIcon = KIcon("media-playback-pause");
81
82
83     if (id != Kdenlive::dvdMonitor) {
84         m_toolbar->addAction(KIcon("kdenlive-zone-start"), i18n("Set zone start"), this, SLOT(slotSetZoneStart()));
85         m_toolbar->addAction(KIcon("kdenlive-zone-end"), i18n("Set zone end"), this, SLOT(slotSetZoneEnd()));
86     }
87
88     m_toolbar->addAction(KIcon("media-seek-backward"), i18n("Rewind"), this, SLOT(slotRewind()));
89     //m_toolbar->addAction(KIcon("media-skip-backward"), i18n("Rewind 1 frame"), this, SLOT(slotRewindOneFrame()));
90
91     QToolButton *playButton = new QToolButton(m_toolbar);
92     m_playMenu = new QMenu(i18n("Play..."), this);
93     m_playAction = m_playMenu->addAction(m_playIcon, i18n("Play"));
94     //m_playAction->setCheckable(true);
95     connect(m_playAction, SIGNAL(triggered()), this, SLOT(slotPlay()));
96
97     playButton->setMenu(m_playMenu);
98     playButton->setPopupMode(QToolButton::MenuButtonPopup);
99     m_toolbar->addWidget(playButton);
100
101     //m_toolbar->addAction(KIcon("media-skip-forward"), i18n("Forward 1 frame"), this, SLOT(slotForwardOneFrame()));
102     m_toolbar->addAction(KIcon("media-seek-forward"), i18n("Forward"), this, SLOT(slotForward()));
103
104     playButton->setDefaultAction(m_playAction);
105
106     if (id != Kdenlive::dvdMonitor) {
107         QToolButton *configButton = new QToolButton(m_toolbar);
108         m_configMenu = new QMenu(i18n("Misc..."), this);
109         configButton->setIcon(KIcon("system-run"));
110         configButton->setMenu(m_configMenu);
111         configButton->setPopupMode(QToolButton::QToolButton::InstantPopup);
112         m_toolbar->addWidget(configButton);
113
114         if (id == Kdenlive::clipMonitor) {
115             m_markerMenu = new QMenu(i18n("Go to marker..."), this);
116             m_markerMenu->setEnabled(false);
117             m_configMenu->addMenu(m_markerMenu);
118             connect(m_markerMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotGoToMarker(QAction *)));
119         }
120         m_configMenu->addAction(KIcon("transform-scale"), i18n("Resize (100%)"), this, SLOT(slotSetSizeOneToOne()));
121         m_configMenu->addAction(KIcon("transform-scale"), i18n("Resize (50%)"), this, SLOT(slotSetSizeOneToTwo()));
122     }
123
124     // Create Volume slider popup
125     m_volumePopup = new QFrame(this, Qt::Popup);
126     QVBoxLayout *poplayout = new QVBoxLayout;
127     poplayout->setContentsMargins(0, 0, 0, 0);
128     m_audioSlider = new QSlider(Qt::Vertical);
129     m_audioSlider->setRange(0, 100);
130     poplayout->addWidget(m_audioSlider);
131     m_volumePopup->setLayout(poplayout);
132     KIcon icon;
133     if (KdenliveSettings::volume() == 0) icon = KIcon("audio-volume-muted");
134     else icon = KIcon("audio-volume-medium");
135
136     m_volumeWidget = m_toolbar->widgetForAction(m_toolbar->addAction(icon, i18n("Audio volume"), this, SLOT(slotShowVolume())));
137
138     // we need to show / hide the popup once so that it's geometry can be calculated in slotShowVolume
139     m_volumePopup->show();
140     m_volumePopup->hide();
141
142     setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
143     setLayout(layout);
144     setMinimumHeight(200);
145
146     if (profile.isEmpty()) profile = KdenliveSettings::current_profile();
147
148     bool monitorCreated = false;
149 #ifdef Q_WS_MAC
150     createOpenGlWidget(videoBox, profile);
151     monitorCreated = true;
152     //m_glWidget->setFixedSize(width, height);
153 #elif defined(USE_OPENGL)
154     if (KdenliveSettings::openglmonitors()) {
155         monitorCreated = createOpenGlWidget(videoBox, profile);
156     }
157 #endif
158     if (!monitorCreated) {
159         createVideoSurface();
160         render = new Render(m_id, (int) videoSurface->winId(), profile, this);
161         connect(videoSurface, SIGNAL(refreshMonitor()), render, SLOT(doRefresh()));
162     }
163 #ifdef USE_OPENGL
164     else if (m_glWidget) {
165         QVBoxLayout *lay = new QVBoxLayout;
166         lay->setContentsMargins(0, 0, 0, 0);
167         lay->addWidget(m_glWidget);
168         videoBox->setLayout(lay);
169     }
170 #endif
171
172     // Monitor ruler
173     m_ruler = new SmallRuler(m_monitorManager, render);
174     if (id == Kdenlive::dvdMonitor) m_ruler->setZone(-3, -2);
175     layout->addWidget(m_ruler);
176     
177     connect(m_audioSlider, SIGNAL(valueChanged(int)), this, SLOT(slotSetVolume(int)));
178     connect(render, SIGNAL(durationChanged(int)), this, SLOT(adjustRulerSize(int)));
179     connect(render, SIGNAL(rendererStopped(int)), this, SLOT(rendererStopped(int)));
180     connect(render, SIGNAL(rendererPosition(int)), this, SLOT(seekCursor(int)));
181
182     if (id != Kdenlive::clipMonitor) {
183         connect(render, SIGNAL(rendererPosition(int)), this, SIGNAL(renderPosition(int)));
184         connect(render, SIGNAL(durationChanged(int)), this, SIGNAL(durationChanged(int)));
185         connect(m_ruler, SIGNAL(zoneChanged(QPoint)), this, SIGNAL(zoneUpdated(QPoint)));
186     } else {
187         connect(m_ruler, SIGNAL(zoneChanged(QPoint)), this, SLOT(setClipZone(QPoint)));
188     }
189
190     if (videoSurface) videoSurface->show();
191
192     if (id == Kdenlive::projectMonitor) {
193         m_effectWidget = new MonitorEditWidget(render, videoBox);
194         connect(m_effectWidget, SIGNAL(showEdit(bool, bool)), this, SLOT(slotShowEffectScene(bool, bool)));
195         m_toolbar->addAction(m_effectWidget->getVisibilityAction());
196         videoBox->layout()->addWidget(m_effectWidget);
197         m_effectWidget->hide();
198     }
199
200     QWidget *spacer = new QWidget(this);
201     spacer->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred);
202     m_toolbar->addWidget(spacer);
203     m_timePos = new TimecodeDisplay(m_monitorManager->timecode(), this);
204     m_toolbar->addWidget(m_timePos);
205     connect(m_timePos, SIGNAL(editingFinished()), this, SLOT(slotSeek()));
206     m_toolbar->setMaximumHeight(s * 1.5);
207     layout->addWidget(m_toolbar);
208 }
209
210 Monitor::~Monitor()
211 {
212     delete m_ruler;
213     delete m_timePos;
214     delete m_overlay;
215     if (m_effectWidget)
216         delete m_effectWidget;
217     delete render;
218 }
219
220 QWidget *Monitor::container()
221 {
222     return videoBox;
223 }
224
225 #ifdef USE_OPENGL
226 bool Monitor::createOpenGlWidget(QWidget *parent, const QString profile)
227 {
228     render = new Render(id(), 0, profile, this);
229     m_glWidget = new VideoGLWidget(parent);
230     if (m_glWidget == NULL) {
231         // Creation failed, we are in trouble...
232         return false;
233     }
234     m_glWidget->setImageAspectRatio(render->dar());
235     m_glWidget->setBackgroundColor(KdenliveSettings::window_background());
236     connect(render, SIGNAL(showImageSignal(QImage)), m_glWidget, SLOT(showImage(QImage)));
237     return true;
238 }
239 #endif
240
241 void Monitor::setupMenu(QMenu *goMenu, QAction *playZone, QAction *loopZone, QMenu *markerMenu, QAction *loopClip)
242 {
243     m_contextMenu = new QMenu(this);
244     m_contextMenu->addMenu(m_playMenu);
245     if (goMenu)
246         m_contextMenu->addMenu(goMenu);
247     if (markerMenu) {
248         m_contextMenu->addMenu(markerMenu);
249         QList <QAction *>list = markerMenu->actions();
250         for (int i = 0; i < list.count(); i++) {
251             if (list.at(i)->data().toString() == "edit_marker") {
252                 m_editMarker = list.at(i);
253                 break;
254             }
255         }
256     }
257
258     m_playMenu->addAction(playZone);
259     m_playMenu->addAction(loopZone);
260     if (loopClip) {
261         m_loopClipAction = loopClip;
262         m_playMenu->addAction(loopClip);
263     }
264
265     //TODO: add save zone to timeline monitor when fixed
266     if (m_id == Kdenlive::clipMonitor) {
267         m_contextMenu->addMenu(m_markerMenu);
268         m_contextMenu->addAction(KIcon("document-save"), i18n("Save zone"), this, SLOT(slotSaveZone()));
269         QAction *extractZone = m_configMenu->addAction(KIcon("document-new"), i18n("Extract Zone"), this, SLOT(slotExtractCurrentZone()));
270         m_contextMenu->addAction(extractZone);
271     }
272     QAction *extractFrame = m_configMenu->addAction(KIcon("document-new"), i18n("Extract frame"), this, SLOT(slotExtractCurrentFrame()));
273     m_contextMenu->addAction(extractFrame);
274
275     if (m_id != Kdenlive::clipMonitor) {
276         QAction *splitView = m_contextMenu->addAction(KIcon("view-split-left-right"), i18n("Split view"), render, SLOT(slotSplitView(bool)));
277         splitView->setCheckable(true);
278         m_configMenu->addAction(splitView);
279     } else {
280         QAction *setThumbFrame = m_contextMenu->addAction(KIcon("document-new"), i18n("Set current image as thumbnail"), this, SLOT(slotSetThumbFrame()));
281         m_configMenu->addAction(setThumbFrame);
282     }
283
284     QAction *showTips = m_contextMenu->addAction(KIcon("help-hint"), i18n("Monitor overlay infos"));
285     showTips->setCheckable(true);
286     connect(showTips, SIGNAL(toggled(bool)), this, SLOT(slotSwitchMonitorInfo(bool)));
287     showTips->setChecked(KdenliveSettings::displayMonitorInfo());
288
289     QAction *dropFrames = m_contextMenu->addAction(KIcon(), i18n("Real time (drop frames)"));
290     dropFrames->setCheckable(true);
291     dropFrames->setChecked(true);
292     connect(dropFrames, SIGNAL(toggled(bool)), this, SLOT(slotSwitchDropFrames(bool)));
293
294     m_configMenu->addAction(showTips);
295     m_configMenu->addAction(dropFrames);
296
297 }
298
299 void Monitor::slotGoToMarker(QAction *action)
300 {
301     int pos = action->data().toInt();
302     slotSeek(pos);
303 }
304
305 void Monitor::slotSetSizeOneToOne()
306 {
307     QRect r = QApplication::desktop()->screenGeometry();
308     const int maxWidth = r.width() - 20;
309     const int maxHeight = r.height() - 20;
310     int width = render->renderWidth();
311     int height = render->renderHeight();
312     kDebug() << "// render info: " << width << "x" << height;
313     while (width >= maxWidth || height >= maxHeight) {
314         width = width * 0.8;
315         height = height * 0.8;
316     }
317     kDebug() << "// MONITOR; set SIZE: " << width << ", " << height;
318     videoBox->setFixedSize(width, height);
319     updateGeometry();
320     adjustSize();
321     //m_ui.video_frame->setMinimumSize(0, 0);
322     emit adjustMonitorSize();
323 }
324
325 void Monitor::slotSetSizeOneToTwo()
326 {
327     QRect r = QApplication::desktop()->screenGeometry();
328     const int maxWidth = r.width() - 20;
329     const int maxHeight = r.height() - 20;
330     int width = render->renderWidth() / 2;
331     int height = render->renderHeight() / 2;
332     kDebug() << "// render info: " << width << "x" << height;
333     while (width >= maxWidth || height >= maxHeight) {
334         width = width * 0.8;
335         height = height * 0.8;
336     }
337     kDebug() << "// MONITOR; set SIZE: " << width << ", " << height;
338     videoBox->setFixedSize(width, height);
339     updateGeometry();
340     adjustSize();
341     //m_ui.video_frame->setMinimumSize(0, 0);
342     emit adjustMonitorSize();
343 }
344
345 void Monitor::resetSize()
346 {
347     videoBox->setMinimumSize(0, 0);
348 }
349
350 DocClipBase *Monitor::activeClip()
351 {
352     return m_currentClip;
353 }
354
355 void Monitor::updateMarkers(DocClipBase *source)
356 {
357     if (source == m_currentClip && source != NULL) {
358         m_markerMenu->clear();
359         QList <CommentedTime> markers = m_currentClip->commentedSnapMarkers();
360         if (!markers.isEmpty()) {
361             QList <int> marks;
362             for (int i = 0; i < markers.count(); i++) {
363                 int pos = (int) markers.at(i).time().frames(m_monitorManager->timecode().fps());
364                 marks.append(pos);
365                 QString position = m_monitorManager->timecode().getTimecode(markers.at(i).time()) + ' ' + markers.at(i).comment();
366                 QAction *go = m_markerMenu->addAction(position);
367                 go->setData(pos);
368             }
369             m_ruler->setMarkers(marks);
370         } else m_ruler->setMarkers(QList <int>());
371         m_markerMenu->setEnabled(!m_markerMenu->isEmpty());
372     }
373 }
374
375 void Monitor::slotSeekToPreviousSnap()
376 {
377     if (m_currentClip) slotSeek(getSnapForPos(true).frames(m_monitorManager->timecode().fps()));
378 }
379
380 void Monitor::slotSeekToNextSnap()
381 {
382     if (m_currentClip) slotSeek(getSnapForPos(false).frames(m_monitorManager->timecode().fps()));
383 }
384
385 GenTime Monitor::position()
386 {
387     return render->seekPosition();
388 }
389
390 GenTime Monitor::getSnapForPos(bool previous)
391 {
392     QList <GenTime> snaps;
393     QList < GenTime > markers = m_currentClip->snapMarkers();
394     for (int i = 0; i < markers.size(); ++i) {
395         GenTime t = markers.at(i);
396         snaps.append(t);
397     }
398     QPoint zone = m_ruler->zone();
399     snaps.append(GenTime(zone.x(), m_monitorManager->timecode().fps()));
400     snaps.append(GenTime(zone.y(), m_monitorManager->timecode().fps()));
401     snaps.append(GenTime());
402     snaps.append(m_currentClip->duration());
403     qSort(snaps);
404
405     const GenTime pos = render->seekPosition();
406     for (int i = 0; i < snaps.size(); ++i) {
407         if (previous && snaps.at(i) >= pos) {
408             if (i == 0) i = 1;
409             return snaps.at(i - 1);
410         } else if (!previous && snaps.at(i) > pos) {
411             return snaps.at(i);
412         }
413     }
414     return GenTime();
415 }
416
417 void Monitor::slotZoneMoved(int start, int end)
418 {
419     m_ruler->setZone(start, end);
420     checkOverlay();
421     setClipZone(m_ruler->zone());
422 }
423
424 void Monitor::slotSetZoneStart()
425 {
426     m_ruler->setZoneStart();
427     emit zoneUpdated(m_ruler->zone());
428     checkOverlay();
429     setClipZone(m_ruler->zone());
430 }
431
432 void Monitor::slotSetZoneEnd()
433 {
434     m_ruler->setZoneEnd();
435     emit zoneUpdated(m_ruler->zone());
436     checkOverlay();
437     setClipZone(m_ruler->zone());
438 }
439
440 // virtual
441 void Monitor::mousePressEvent(QMouseEvent * event)
442 {
443     if (event->button() != Qt::RightButton) {
444         if (videoBox->geometry().contains(event->pos()) && (!m_overlay || !m_overlay->underMouse())) {
445             m_dragStarted = true;
446             m_DragStartPosition = event->pos();
447         }
448     } else if (m_contextMenu && (!m_effectWidget || !m_effectWidget->isVisible())) {
449         m_contextMenu->popup(event->globalPos());
450     }
451 }
452
453 void Monitor::resizeEvent(QResizeEvent *event)
454 {
455     Q_UNUSED(event);
456     if (render && isVisible() && isActive()) render->doRefresh();
457 }
458
459 void Monitor::slotSwitchFullScreen()
460 {
461     videoBox->switchFullScreen();
462 }
463
464 // virtual
465 void Monitor::mouseReleaseEvent(QMouseEvent * event)
466 {
467     if (m_dragStarted && event->button() != Qt::RightButton) {
468         if (videoBox->geometry().contains(event->pos()) && (!m_effectWidget || !m_effectWidget->isVisible())) {
469             if (isActive()) slotPlay();
470             else slotActivateMonitor();
471         } //else event->ignore(); //QWidget::mouseReleaseEvent(event);
472         m_dragStarted = false;
473     }
474 }
475
476 // virtual
477 void Monitor::mouseMoveEvent(QMouseEvent *event)
478 {
479     if (!m_dragStarted || m_currentClip == NULL) return;
480
481     if ((event->pos() - m_DragStartPosition).manhattanLength()
482             < QApplication::startDragDistance())
483         return;
484
485     {
486         QDrag *drag = new QDrag(this);
487         QMimeData *mimeData = new QMimeData;
488
489         QStringList list;
490         list.append(m_currentClip->getId());
491         QPoint p = m_ruler->zone();
492         list.append(QString::number(p.x()));
493         list.append(QString::number(p.y()));
494         QByteArray data;
495         data.append(list.join(";").toUtf8());
496         mimeData->setData("kdenlive/clip", data);
497         drag->setMimeData(mimeData);
498         /*QPixmap pix = m_currentClip->thumbnail();
499         drag->setPixmap(pix);
500         drag->setHotSpot(QPoint(0, 50));*/
501         drag->start(Qt::MoveAction);
502
503         //Qt::DropAction dropAction;
504         //dropAction = drag->start(Qt::CopyAction | Qt::MoveAction);
505
506         //Qt::DropAction dropAction = drag->exec();
507
508     }
509     //event->accept();
510 }
511
512 /*void Monitor::dragMoveEvent(QDragMoveEvent * event) {
513     event->setDropAction(Qt::IgnoreAction);
514     event->setDropAction(Qt::MoveAction);
515     if (event->mimeData()->hasText()) {
516         event->acceptProposedAction();
517     }
518 }
519
520 Qt::DropActions Monitor::supportedDropActions() const {
521     // returns what actions are supported when dropping
522     return Qt::MoveAction;
523 }*/
524
525 QStringList Monitor::mimeTypes() const
526 {
527     QStringList qstrList;
528     // list of accepted mime types for drop
529     qstrList.append("kdenlive/clip");
530     return qstrList;
531 }
532
533 // virtual
534 void Monitor::wheelEvent(QWheelEvent * event)
535 {
536     slotMouseSeek(event->delta(), event->modifiers() == Qt::ControlModifier);
537     event->accept();
538 }
539
540 void Monitor::mouseDoubleClickEvent(QMouseEvent * event)
541 {
542     if (!KdenliveSettings::openglmonitors()) {
543         videoBox->switchFullScreen();
544         event->accept();
545     }
546 }
547
548 void Monitor::slotMouseSeek(int eventDelta, bool fast)
549 {
550     if (fast) {
551         int delta = m_monitorManager->timecode().fps();
552         if (eventDelta > 0) delta = 0 - delta;
553         if (render->requestedSeekPosition != SEEK_INACTIVE)
554             slotSeek(render->requestedSeekPosition - delta);
555         else slotSeek(render->seekFramePosition() - delta);
556     } else {
557         if (eventDelta >= 0) slotForwardOneFrame();
558         else slotRewindOneFrame();
559     }
560 }
561
562 void Monitor::slotSetThumbFrame()
563 {
564     if (m_currentClip == NULL) {
565         return;
566     }
567     m_currentClip->setClipThumbFrame((uint) render->seekFramePosition());
568     emit refreshClipThumbnail(m_currentClip->getId(), true);
569 }
570
571 void Monitor::slotExtractCurrentZone()
572 {
573     if (m_currentClip == NULL) return;
574     emit extractZone(m_currentClip->getId(), m_ruler->zone());
575 }
576
577 void Monitor::slotExtractCurrentFrame()
578 {
579     QImage frame;
580     // check if we are using a proxy
581     if (m_currentClip && !m_currentClip->getProperty("proxy").isEmpty() && m_currentClip->getProperty("proxy") != "-") {
582         // using proxy, use original clip url to get frame
583         frame = render->extractFrame(render->seekFramePosition(), m_currentClip->fileURL().path());
584     }
585     else frame = render->extractFrame(render->seekFramePosition());
586     QPointer<KFileDialog> fs = new KFileDialog(KUrl(), "image/png", this);
587     fs->setOperationMode(KFileDialog::Saving);
588     fs->setMode(KFile::File);
589     fs->setConfirmOverwrite(true);
590     fs->setKeepLocation(true);
591     fs->exec();
592     QString path;
593     if (fs) path = fs->selectedFile();
594     delete fs;
595     if (!path.isEmpty()) {
596         frame.save(path);
597     }
598 }
599
600 void Monitor::setTimePos(const QString &pos)
601 {
602     m_timePos->setValue(pos);
603     slotSeek();
604 }
605
606 void Monitor::slotSeek()
607 {
608     slotSeek(m_timePos->getValue());
609 }
610
611 void Monitor::slotSeek(int pos)
612 {
613     if (render == NULL) return;
614     slotActivateMonitor();
615     render->seekToFrame(pos);
616     m_ruler->update();
617 }
618
619 void Monitor::checkOverlay()
620 {
621     if (m_overlay == NULL) return;
622     QString overlayText;
623     int pos = render->seekFramePosition();
624     QPoint zone = m_ruler->zone();
625     if (pos == zone.x())
626         overlayText = i18n("In Point");
627     else if (pos == zone.y())
628         overlayText = i18n("Out Point");
629     else {
630         if (m_currentClip) {
631             overlayText = m_currentClip->markerComment(GenTime(pos, m_monitorManager->timecode().fps()));
632             if (!overlayText.isEmpty()) {
633                 m_overlay->setOverlayText(overlayText, false);
634                 return;
635             }
636         }
637     }
638     if (m_overlay->isVisible() && overlayText.isEmpty()) m_overlay->setOverlayText(QString(), false);
639     else m_overlay->setOverlayText(overlayText);
640 }
641
642 void Monitor::slotStart()
643 {
644     slotActivateMonitor();
645     render->play(0);
646     render->seekToFrame(0);
647 }
648
649 void Monitor::slotEnd()
650 {
651     slotActivateMonitor();
652     render->play(0);
653     render->seekToFrame(render->getLength());
654 }
655
656 void Monitor::slotZoneStart()
657 {
658     slotActivateMonitor();
659     render->play(0);
660     render->seekToFrame(m_ruler->zone().x());
661 }
662
663 void Monitor::slotZoneEnd()
664 {
665     slotActivateMonitor();
666     render->play(0);
667     render->seekToFrame(m_ruler->zone().y());
668 }
669
670 void Monitor::slotRewind(double speed)
671 {
672     slotActivateMonitor();
673     if (speed == 0) {
674         double currentspeed = render->playSpeed();
675         if (currentspeed >= 0) render->play(-2);
676         else render->play(currentspeed * 2);
677     } else render->play(speed);
678     //m_playAction->setChecked(true);
679     m_playAction->setIcon(m_pauseIcon);
680 }
681
682 void Monitor::slotForward(double speed)
683 {
684     slotActivateMonitor();
685     if (speed == 0) {
686         double currentspeed = render->playSpeed();
687         if (currentspeed <= 1) render->play(2);
688         else render->play(currentspeed * 2);
689     } else render->play(speed);
690     //m_playAction->setChecked(true);
691     m_playAction->setIcon(m_pauseIcon);
692 }
693
694 void Monitor::slotRewindOneFrame(int diff)
695 {
696     slotActivateMonitor();
697     render->play(0);
698     render->seekToFrameDiff(-diff);
699     m_ruler->update();
700 }
701
702 void Monitor::slotForwardOneFrame(int diff)
703 {
704     slotActivateMonitor();
705     render->play(0);
706     render->seekToFrameDiff(diff);
707     m_ruler->update();
708 }
709
710 void Monitor::seekCursor(int pos)
711 {
712     if (m_ruler->slotNewValue(pos)) {
713         checkOverlay();
714         m_timePos->setValue(pos);
715     }
716 }
717
718 void Monitor::rendererStopped(int pos)
719 {
720     if (m_ruler->slotNewValue(pos)) {
721         checkOverlay();
722         m_timePos->setValue(pos);
723     }
724     m_playAction->setIcon(m_playIcon);
725 }
726
727 void Monitor::adjustRulerSize(int length)
728 {
729     if (length > 0) m_length = length;
730     m_ruler->adjustScale(m_length);
731     if (m_currentClip != NULL) {
732         QPoint zone = m_currentClip->zone();
733         m_ruler->setZone(zone.x(), zone.y());
734     }
735 }
736
737 void Monitor::stop()
738 {
739     if (render) render->stop();
740 }
741
742 void Monitor::start()
743 {
744     if (!isVisible() || !isActive()) return;
745     if (render) render->doRefresh();// start();
746 }
747
748 void Monitor::refreshMonitor(bool visible)
749 {
750     if (visible && render) {
751         if (!slotActivateMonitor()) {
752             // the monitor was already active, simply refreshClipThumbnail
753             render->doRefresh();
754         }
755     }
756 }
757
758 void Monitor::refreshMonitor()
759 {
760     if (isActive()) {
761         render->doRefresh();
762     }
763 }
764
765 void Monitor::pause()
766 {
767     if (render == NULL) return;
768     slotActivateMonitor();
769     render->pause();
770     //m_playAction->setChecked(true);
771     m_playAction->setIcon(m_playIcon);
772 }
773
774 void Monitor::unpause()
775 {
776 }
777
778 void Monitor::slotPlay()
779 {
780     if (render == NULL) return;
781     slotActivateMonitor();
782     if (render->playSpeed() == 0.0) {
783         m_playAction->setIcon(m_pauseIcon);
784         render->switchPlay(true);
785     } else {
786         m_playAction->setIcon(m_playIcon);
787         render->switchPlay(false);
788     }
789 }
790
791 void Monitor::slotPlayZone()
792 {
793     if (render == NULL) return;
794     slotActivateMonitor();
795     QPoint p = m_ruler->zone();
796     render->playZone(GenTime(p.x(), m_monitorManager->timecode().fps()), GenTime(p.y(), m_monitorManager->timecode().fps()));
797     //m_playAction->setChecked(true);
798     m_playAction->setIcon(m_pauseIcon);
799 }
800
801 void Monitor::slotLoopZone()
802 {
803     if (render == NULL) return;
804     slotActivateMonitor();
805     QPoint p = m_ruler->zone();
806     render->loopZone(GenTime(p.x(), m_monitorManager->timecode().fps()), GenTime(p.y(), m_monitorManager->timecode().fps()));
807     //m_playAction->setChecked(true);
808     m_playAction->setIcon(m_pauseIcon);
809 }
810
811 void Monitor::slotLoopClip()
812 {
813     if (render == NULL || m_selectedClip == NULL)
814         return;
815     slotActivateMonitor();
816     render->loopZone(m_selectedClip->startPos(), m_selectedClip->endPos());
817     //m_playAction->setChecked(true);
818     m_playAction->setIcon(m_pauseIcon);
819 }
820
821 void Monitor::updateClipProducer(Mlt::Producer *prod)
822 {
823     if (render == NULL) return;
824    render->setProducer(prod, render->seekFramePosition());
825 }
826
827 void Monitor::slotSetClipProducer(DocClipBase *clip, QPoint zone, bool forceUpdate, int position)
828 {
829     if (render == NULL) return;
830     if (clip == NULL && m_currentClip != NULL) {
831         kDebug()<<"// SETTING NULL CLIP MONITOR";
832         m_currentClip = NULL;
833         m_length = -1;
834         render->setProducer(NULL, -1);
835         return;
836     }
837
838     if (clip != m_currentClip || forceUpdate) {
839         m_currentClip = clip;
840         if (m_currentClip) slotActivateMonitor();
841         updateMarkers(clip);
842         Mlt::Producer *prod = NULL;
843         if (clip) prod = clip->getCloneProducer();
844         if (render->setProducer(prod, position) == -1) {
845             // MLT CONSUMER is broken
846             kDebug(QtWarningMsg) << "ERROR, Cannot start monitor";
847         }
848     } else {
849         if (m_currentClip) {
850             slotActivateMonitor();
851             if (position == -1) position = render->seekFramePosition();
852             render->seek(position);
853         }
854     }
855     if (!zone.isNull()) {
856         m_ruler->setZone(zone.x(), zone.y());
857         render->seek(zone.x());
858     }
859 }
860
861 void Monitor::slotOpenFile(const QString &file)
862 {
863     if (render == NULL) return;
864     slotActivateMonitor();
865     QDomDocument doc;
866     QDomElement mlt = doc.createElement("mlt");
867     doc.appendChild(mlt);
868     QDomElement prod = doc.createElement("producer");
869     mlt.appendChild(prod);
870     prod.setAttribute("mlt_service", "avformat");
871     prod.setAttribute("resource", file);
872     render->setSceneList(doc, 0);
873 }
874
875 void Monitor::slotSaveZone()
876 {
877     if (render == NULL) return;
878     emit saveZone(render, m_ruler->zone(), m_currentClip);
879
880     //render->setSceneList(doc, 0);
881 }
882
883 void Monitor::resetProfile(const QString &profile)
884 {
885     m_timePos->updateTimeCode(m_monitorManager->timecode());
886     if (render == NULL) return;
887     if (!render->hasProfile(profile)) {
888         slotActivateMonitor();
889         render->resetProfile(profile);
890     }
891     if (m_effectWidget)
892         m_effectWidget->resetProfile(render);
893 }
894
895 void Monitor::saveSceneList(QString path, QDomElement info)
896 {
897     if (render == NULL) return;
898     render->saveSceneList(path, info);
899 }
900
901 const QString Monitor::sceneList()
902 {
903     if (render == NULL) return QString();
904     return render->sceneList();
905 }
906
907 void Monitor::setClipZone(QPoint pos)
908 {
909     if (m_currentClip == NULL) return;
910     m_currentClip->setZone(pos);
911 }
912
913 void Monitor::slotSwitchDropFrames(bool show)
914 {
915     render->setDropFrames(show);
916 }
917
918 void Monitor::slotSwitchMonitorInfo(bool show)
919 {
920     KdenliveSettings::setDisplayMonitorInfo(show);
921     if (show) {
922         if (m_overlay) return;
923         if (videoSurface == NULL) {
924             // Using OpenGL display
925 #ifdef USE_OPENGL
926             if (m_glWidget->layout()) delete m_glWidget->layout();
927             m_overlay = new Overlay();
928             connect(m_overlay, SIGNAL(editMarker()), this, SLOT(slotEditMarker()));
929             QVBoxLayout *layout = new QVBoxLayout;
930             layout->addStretch(10);
931             layout->addWidget(m_overlay);
932             m_glWidget->setLayout(layout);
933 #endif
934         } else {
935             if (videoSurface->layout()) delete videoSurface->layout();
936             m_overlay = new Overlay();
937             connect(m_overlay, SIGNAL(editMarker()), this, SLOT(slotEditMarker()));
938             QVBoxLayout *layout = new QVBoxLayout;
939             layout->addStretch(10);
940             layout->addWidget(m_overlay);
941             videoSurface->setLayout(layout);
942             m_overlay->raise();
943             m_overlay->setHidden(true);
944         }
945         checkOverlay();
946     } else {
947         delete m_overlay;
948         m_overlay = NULL;
949     }
950 }
951
952 void Monitor::slotEditMarker()
953 {
954     if (m_editMarker) m_editMarker->trigger();
955 }
956
957 void Monitor::updateTimecodeFormat()
958 {
959     m_timePos->slotUpdateTimeCodeFormat();
960 }
961
962 QStringList Monitor::getZoneInfo() const
963 {
964     QStringList result;
965     if (m_currentClip == NULL) return result;
966     result << m_currentClip->getId();
967     QPoint zone = m_ruler->zone();
968     result << QString::number(zone.x()) << QString::number(zone.y());
969     return result;
970 }
971
972 void Monitor::slotSetSelectedClip(AbstractClipItem* item)
973 {
974     if (item) {
975         m_loopClipAction->setEnabled(true);
976         m_selectedClip = item;
977     } else {
978         m_loopClipAction->setEnabled(false);
979     }
980 }
981
982 void Monitor::slotSetSelectedClip(ClipItem* item)
983 {
984     if (item || (!item && !m_loopClipTransition)) {
985         m_loopClipTransition = false;
986         slotSetSelectedClip((AbstractClipItem*)item);
987     }
988 }
989
990 void Monitor::slotSetSelectedClip(Transition* item)
991 {
992     if (item || (!item && m_loopClipTransition)) {
993         m_loopClipTransition = true;
994         slotSetSelectedClip((AbstractClipItem*)item);
995     }
996 }
997
998
999 void Monitor::slotShowEffectScene(bool show, bool manuallyTriggered)
1000 {
1001     if (m_id == Kdenlive::projectMonitor) {
1002         if (!m_effectWidget->getVisibilityAction()->isChecked())
1003             show = false;
1004         if (m_effectWidget->isVisible() == show)
1005             return;
1006         setUpdatesEnabled(false);
1007         if (show) {
1008             if (videoSurface) {
1009                 videoSurface->setVisible(false);
1010                 // Preview is handeled internally through the Render::showFrame method
1011                 render->disablePreview(true);
1012 #ifdef USE_OPENGL
1013             } else {
1014                 m_glWidget->setVisible(false);
1015 #endif
1016             }
1017             m_effectWidget->setVisible(true);
1018             m_effectWidget->getScene()->slotZoomFit();
1019             emit requestFrameForAnalysis(true);
1020         } else {    
1021             m_effectWidget->setVisible(false);
1022             emit requestFrameForAnalysis(false);
1023             if (videoSurface) {
1024                 videoSurface->setVisible(true);
1025                 // Preview is handeled internally through the Render::showFrame method
1026                 render->disablePreview(false);
1027             
1028 #ifdef USE_OPENGL
1029             } else {
1030                 m_glWidget->setVisible(true);
1031 #endif
1032             }
1033         }
1034         if (!manuallyTriggered)
1035             m_effectWidget->showVisibilityButton(show);
1036         setUpdatesEnabled(true);
1037         videoBox->setEnabled(show);
1038         //render->doRefresh();
1039     }
1040 }
1041
1042 MonitorEditWidget* Monitor::getEffectEdit()
1043 {
1044     return m_effectWidget;
1045 }
1046
1047 bool Monitor::effectSceneDisplayed()
1048 {
1049     return m_effectWidget->isVisible();
1050 }
1051
1052 void Monitor::slotSetVolume(int volume)
1053 {
1054     KdenliveSettings::setVolume(volume);
1055     KIcon icon;
1056     if (volume == 0) icon = KIcon("audio-volume-muted");
1057     else icon = KIcon("audio-volume-medium");
1058     static_cast <QToolButton *>(m_volumeWidget)->setIcon(icon);
1059     render->slotSetVolume(volume);
1060 }
1061
1062 void Monitor::slotShowVolume()
1063 {
1064     m_volumePopup->move(mapToGlobal(m_toolbar->geometry().topLeft()) + QPoint(mapToParent(m_volumeWidget->geometry().bottomLeft()).x(), -m_volumePopup->height()));
1065     int vol = render->volume();
1066     // Disable widget if we cannot get the volume
1067     m_volumePopup->setEnabled(vol != -1);
1068     m_audioSlider->blockSignals(true);
1069     m_audioSlider->setValue(vol);
1070     m_audioSlider->blockSignals(false);
1071     m_volumePopup->show();
1072 }
1073
1074 AbstractRender *Monitor::abstractRender()
1075 {
1076     return render;
1077 }
1078
1079 void Monitor::reloadProducer(const QString &id)
1080 {
1081     if (!m_currentClip) return;
1082     if (m_currentClip->getId() == id)
1083         slotSetClipProducer(m_currentClip, m_currentClip->zone(), true);
1084 }
1085
1086 void Monitor::setPalette ( const QPalette & p)
1087 {
1088     QWidget::setPalette(p);
1089     if (m_ruler) m_ruler->updatePalette();
1090     
1091 }
1092
1093 Overlay::Overlay(QWidget* parent) :
1094     QLabel(parent)
1095 {
1096     //setAttribute(Qt::WA_TransparentForMouseEvents);
1097     setAutoFillBackground(true);
1098     setBackgroundRole(QPalette::Base);
1099     setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
1100     setCursor(Qt::PointingHandCursor);
1101 }
1102
1103 // virtual
1104 void Overlay::mouseReleaseEvent ( QMouseEvent * event )
1105 {
1106     event->ignore();
1107 }
1108
1109 // virtual
1110 void Overlay::mousePressEvent( QMouseEvent * event )
1111 {
1112     event->ignore();
1113 }
1114
1115 // virtual
1116 void Overlay::mouseDoubleClickEvent ( QMouseEvent * event )
1117 {
1118     emit editMarker();
1119     event->ignore();
1120 }
1121
1122 void Overlay::setOverlayText(const QString &text, bool isZone)
1123 {
1124     if (text.isEmpty()) {
1125         QPalette p;
1126         p.setColor(QPalette::Base, KdenliveSettings::window_background());
1127         setPalette(p);
1128         setText(QString());
1129         repaint();
1130         setHidden(true);
1131         return;
1132     }
1133     setHidden(true);
1134     QPalette p;
1135     p.setColor(QPalette::Text, Qt::white);
1136     if (isZone) p.setColor(QPalette::Base, QColor(200, 0, 0));
1137     else p.setColor(QPalette::Base, QColor(0, 0, 200));
1138     setPalette(p);
1139     setText(' ' + text + ' ');
1140     setHidden(false);
1141 }
1142
1143
1144 #include "monitor.moc"