X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmonitormanager.h;h=9352f4d70356c74bbba4968bf17650502b25554b;hb=05812d33728689c0c531b81e283cd4616ab07842;hp=075b63694775329c590a23672145f1e1447d3d44;hpb=a3d19d288ce2195f5daee28bc7b9a268c28ee03b;p=kdenlive diff --git a/src/monitormanager.h b/src/monitormanager.h index 075b6369..9352f4d7 100644 --- a/src/monitormanager.h +++ b/src/monitormanager.h @@ -1,36 +1,88 @@ +/*************************************************************************** + * Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org) * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * + ***************************************************************************/ + + #ifndef MONITORMANAGER_H #define MONITORMANAGER_H #include "monitor.h" +#include "recmonitor.h" #include "timecode.h" -class Monitor; class MonitorManager : public QObject { - Q_OBJECT - - public: - MonitorManager(QWidget *parent=0); + Q_OBJECT - void initMonitors(Monitor *clipMonitor, Monitor *projectMonitor); - void activateMonitor(QString name); +public: + MonitorManager(QWidget *parent = 0); + void initMonitors(Monitor *clipMonitor, Monitor *projectMonitor, RecMonitor *recMonitor); + void appendMonitor(AbstractMonitor *monitor); + void removeMonitor(AbstractMonitor *monitor); Timecode timecode(); - void setTimecode(Timecode tc); + void resetProfiles(Timecode tc); + void stopActiveMonitor(); + AbstractRender *activeRenderer(); + void updateScopeSource(); + +public slots: + + /** @brief Activates a monitor. + * @param name name of the monitor to activate */ + void activateMonitor(QString name = QString()); + bool isActive(const QString name) const; + void slotPlay(); + void slotPause(); + void slotPlayZone(); + void slotLoopZone(); + void slotRewind(double speed = 0); + void slotForward(double speed = 0); + void slotRewindOneFrame(); + void slotForwardOneFrame(); + void slotRewindOneSecond(); + void slotForwardOneSecond(); + void slotStart(); + void slotEnd(); + void slotResetProfiles(); - private: + /** @brief Switches between project and clip monitor. + * @ref activateMonitor + * @param activateClip whether to activate the clip monitor */ + void slotSwitchMonitors(bool activateClip); + void slotUpdateAudioMonitoring(); + +private slots: + void slotRefreshCurrentMonitor(); + +private: Monitor *m_clipMonitor; Monitor *m_projectMonitor; - QString m_activeMonitor; Timecode m_timecode; + AbstractMonitor *m_activeMonitor; + bool m_blocked; + QList m_monitorsList; - private slots: - void initProjectMonitor(); - void initClipMonitor(); - - signals: - void connectMonitors(); - void raiseClipMonitor(bool); +signals: + /** @brief Emitted when the active monitor changes */ + void raiseMonitor(AbstractMonitor *); + /** @brief When the monitor changed, update the visible color scopes */ + void checkColorScopes(); };