X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmonitormanager.h;h=aa243afef619b473dec9452b8c5d4281948f93e1;hb=56aee6aedeeed3efd10ada8fe3c229eddc01ef05;hp=00979c49af0bd722771484d94554161690fbe25b;hpb=f697b9fd5408e77412f2ee35aa406173630890bf;p=kdenlive diff --git a/src/monitormanager.h b/src/monitormanager.h index 00979c49..aa243afe 100644 --- a/src/monitormanager.h +++ b/src/monitormanager.h @@ -1,32 +1,103 @@ +/*************************************************************************** + * 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 KdenliveDoc; class MonitorManager : public QObject { - Q_OBJECT - - public: - MonitorManager(QWidget *parent=0); + Q_OBJECT + +public: + explicit MonitorManager(QWidget *parent = 0); + void initMonitors(Monitor *clipMonitor, Monitor *projectMonitor, RecMonitor *recMonitor); + void appendMonitor(AbstractMonitor *monitor); + void removeMonitor(AbstractMonitor *monitor); + Timecode timecode() const; + void resetProfiles(const Timecode &tc); + void stopActiveMonitor(); + AbstractRender *activeRenderer(); + /** Searches for a monitor with the given name. + @return NULL, if no monitor could be found, or the monitor otherwise. + */ + AbstractMonitor *monitor(Kdenlive::MonitorId monitorName); + void updateScopeSource(); + void clearScopeSource(); + /** @brief Returns current project's folder. */ + QString getProjectFolder() const; + /** @brief Sets current document for later reference. */ + void setDocument(KdenliveDoc *doc); + /** @brief Change an MLT consumer property for both monitors. */ + void setConsumerProperty(const QString &name, const QString &value); + +public slots: - void initMonitors(Monitor *clipMonitor, Monitor *projectMonitor); - void activateMonitor(QString name); + /** @brief Activates a monitor. + * @param name name of the monitor to activate */ + bool activateMonitor(Kdenlive::MonitorId, bool forceRefresh = false); + bool isActive(Kdenlive::MonitorId id) 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(); + + /** @brief Switch current monitor to fullscreen. */ + void slotSwitchFullscreen(); - 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(const QString &id); + +private: + KdenliveDoc *m_document; Monitor *m_clipMonitor; Monitor *m_projectMonitor; - QString m_activeMonitor; - - private slots: - void initProjectMonitor(); - void initClipMonitor(); + Timecode m_timecode; + AbstractMonitor *m_activeMonitor; + QList m_monitorsList; - signals: - void connectMonitors(); - void raiseClipMonitor(bool); +signals: + /** @brief When the monitor changed, update the visible color scopes */ + void checkColorScopes(); + /** @brief When the active monitor renderer was deleted, reset color scopes */ + void clearScopes(); };