X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmonitormanager.cpp;h=af5a14cd39e2f539e98d6afc8b132c1890d6e19b;hb=ac5f5c9f6d4bdffeb76f3f2098b80f27bc532606;hp=a8045c1d0543acbe0b217969b4f20e978923d072;hpb=a31b56a148d40ac6757ef95245dc259cd79cfa57;p=kdenlive diff --git a/src/monitormanager.cpp b/src/monitormanager.cpp index a8045c1d..af5a14cd 100644 --- a/src/monitormanager.cpp +++ b/src/monitormanager.cpp @@ -18,105 +18,210 @@ ***************************************************************************/ -#include -#include - #include "monitormanager.h" +#include "renderer.h" +#include "kdenlivesettings.h" + #include -MonitorManager::MonitorManager(QWidget *parent) - : QObject(parent) { -} +#include +#include -void MonitorManager::setTimecode(Timecode tc) { - m_timecode = tc; + +MonitorManager::MonitorManager(QWidget *parent) : + QObject(parent), + m_clipMonitor(NULL), + m_projectMonitor(NULL), + m_activeMonitor(NULL), + m_blocked(false) +{ } -Timecode MonitorManager::timecode() { +Timecode MonitorManager::timecode() +{ return m_timecode; } -void MonitorManager::initMonitors(Monitor *clipMonitor, Monitor *projectMonitor) { +void MonitorManager::initMonitors(Monitor *clipMonitor, Monitor *projectMonitor, RecMonitor *recMonitor) +{ m_clipMonitor = clipMonitor; m_projectMonitor = projectMonitor; + + m_monitorsList.append(clipMonitor); + m_monitorsList.append(projectMonitor); + m_monitorsList.append(recMonitor); } -bool MonitorManager::projectMonitorFocused() { - if (m_activeMonitor != "clip") return true; - return false; +void MonitorManager::appendMonitor(AbstractMonitor *monitor) +{ + if (!m_monitorsList.contains(monitor)) m_monitorsList.append(monitor); } -void MonitorManager::activateMonitor(QString name) { - if (m_activeMonitor == name) return; - if (name == "clip") { - m_projectMonitor->stop(); - m_clipMonitor->start(); - emit raiseClipMonitor(true); - } else { - m_clipMonitor->stop(); - m_projectMonitor->start(); - m_projectMonitor->raise(); - emit raiseClipMonitor(false); - } - m_activeMonitor = name; -} - -void MonitorManager::switchMonitors() { - if (m_activeMonitor == "clip") { - m_clipMonitor->stop(); - m_projectMonitor->start(); - m_projectMonitor->raise(); - m_activeMonitor = m_projectMonitor->name(); - emit raiseClipMonitor(false); - } else { - m_projectMonitor->stop(); - m_clipMonitor->start(); - m_activeMonitor = m_clipMonitor->name(); - emit raiseClipMonitor(true); +void MonitorManager::removeMonitor(AbstractMonitor *monitor) +{ + m_monitorsList.removeAll(monitor); +} + +void MonitorManager::activateMonitor(QString name) +{ + kDebug()<<"//ACTIVATING MON: "<name() == name) + return; + m_activeMonitor = NULL; + for (int i = 0; i < m_monitorsList.count(); i++) { + kDebug()<<"PARSING: "<name(); + if (m_monitorsList.at(i)->name() == name) { + m_activeMonitor = m_monitorsList.at(i); + emit raiseMonitor(m_activeMonitor); + } + else m_monitorsList.at(i)->stop(); } + if (m_activeMonitor) m_activeMonitor->start(); + emit checkColorScopes(); +} + +bool MonitorManager::isActive(const QString name) const +{ + return m_activeMonitor ? m_activeMonitor->name() == name: false; +} + +void MonitorManager::slotSwitchMonitors(bool activateClip) +{ + if (activateClip) + activateMonitor("clip"); + else + activateMonitor("project"); +} + +void MonitorManager::stopActiveMonitor() +{ + if (m_blocked) return; + if (m_activeMonitor == m_clipMonitor) m_clipMonitor->pause(); + else m_projectMonitor->pause(); } -void MonitorManager::slotPlay() { - if (m_activeMonitor == "clip") m_clipMonitor->slotPlay(); +void MonitorManager::slotPlay() +{ + if (m_activeMonitor == m_clipMonitor) m_clipMonitor->slotPlay(); else m_projectMonitor->slotPlay(); } -void MonitorManager::slotRewind(double speed) { - if (m_activeMonitor == "clip") m_clipMonitor->slotRewind(speed); +void MonitorManager::slotPause() +{ + stopActiveMonitor(); +} + +void MonitorManager::slotPlayZone() +{ + if (m_activeMonitor == m_clipMonitor) m_clipMonitor->slotPlayZone(); + else m_projectMonitor->slotPlayZone(); +} + +void MonitorManager::slotLoopZone() +{ + if (m_activeMonitor == m_clipMonitor) m_clipMonitor->slotLoopZone(); + else m_projectMonitor->slotLoopZone(); +} + +void MonitorManager::slotRewind(double speed) +{ + if (m_activeMonitor == m_clipMonitor) m_clipMonitor->slotRewind(speed); else m_projectMonitor->slotRewind(speed); } -void MonitorManager::slotForward(double speed) { - if (m_activeMonitor == "clip") m_clipMonitor->slotForward(speed); +void MonitorManager::slotForward(double speed) +{ + if (m_activeMonitor == m_clipMonitor) m_clipMonitor->slotForward(speed); else m_projectMonitor->slotForward(speed); } -void MonitorManager::slotRewindOneFrame() { - if (m_activeMonitor == "clip") m_clipMonitor->slotRewindOneFrame(); +void MonitorManager::slotRewindOneFrame() +{ + if (m_activeMonitor == m_clipMonitor) m_clipMonitor->slotRewindOneFrame(); else m_projectMonitor->slotRewindOneFrame(); } -void MonitorManager::slotForwardOneFrame() { - if (m_activeMonitor == "clip") m_clipMonitor->slotForwardOneFrame(); +void MonitorManager::slotForwardOneFrame() +{ + if (m_activeMonitor == m_clipMonitor) m_clipMonitor->slotForwardOneFrame(); else m_projectMonitor->slotForwardOneFrame(); } -void MonitorManager::slotStart() { - if (m_activeMonitor == "clip") m_clipMonitor->slotStart(); +void MonitorManager::slotRewindOneSecond() +{ + if (m_activeMonitor == m_clipMonitor) m_clipMonitor->slotRewindOneFrame(m_timecode.fps()); + else m_projectMonitor->slotRewindOneFrame(m_timecode.fps()); +} + +void MonitorManager::slotForwardOneSecond() +{ + if (m_activeMonitor == m_clipMonitor) m_clipMonitor->slotForwardOneFrame(m_timecode.fps()); + else m_projectMonitor->slotForwardOneFrame(m_timecode.fps()); +} + +void MonitorManager::slotStart() +{ + if (m_activeMonitor == m_clipMonitor) m_clipMonitor->slotStart(); else m_projectMonitor->slotStart(); } -void MonitorManager::slotEnd() { - if (m_activeMonitor == "clip") m_clipMonitor->slotEnd(); +void MonitorManager::slotEnd() +{ + if (m_activeMonitor == m_clipMonitor) m_clipMonitor->slotEnd(); else m_projectMonitor->slotEnd(); } -void MonitorManager::resetProfiles(QString prof) { +void MonitorManager::resetProfiles(Timecode tc) +{ + if (m_blocked) return; + m_timecode = tc; + slotResetProfiles(); + //QTimer::singleShot(300, this, SLOT(slotResetProfiles())); +} + +void MonitorManager::slotResetProfiles() +{ + if (m_blocked) return; + if (m_projectMonitor == NULL || m_clipMonitor == NULL) return; + QString active = m_activeMonitor ? m_activeMonitor->name() : QString(); activateMonitor("clip"); - m_clipMonitor->resetProfile(prof); + m_clipMonitor->resetProfile(KdenliveSettings::current_profile()); + m_clipMonitor->updateTimecodeFormat(); activateMonitor("project"); - m_projectMonitor->resetProfile(prof); + m_projectMonitor->resetProfile(KdenliveSettings::current_profile()); + m_projectMonitor->updateTimecodeFormat(); //m_projectMonitor->refreshMonitor(true); + if (!active.isEmpty()) activateMonitor(active); +} + +void MonitorManager::slotRefreshCurrentMonitor() +{ + if (m_activeMonitor == m_clipMonitor) m_clipMonitor->refreshMonitor(); + else m_projectMonitor->refreshMonitor(); +} + +void MonitorManager::slotUpdateAudioMonitoring() +{ + // if(...) added since they are 0x0 when the config wizard is running! --Granjow + if (m_clipMonitor) { + m_clipMonitor->render->analyseAudio = KdenliveSettings::monitor_audio(); + } + if (m_projectMonitor) { + m_projectMonitor->render->analyseAudio = KdenliveSettings::monitor_audio(); + } +} + +void MonitorManager::updateScopeSource() +{ + emit checkColorScopes(); +} + +AbstractRender *MonitorManager::activeRenderer() +{ + if (m_activeMonitor) return m_activeMonitor->abstractRender(); + return NULL; } #include "monitormanager.moc"