]> git.sesse.net Git - kdenlive/blobdiff - src/monitormanager.h
When adding an existing kdenlive title clip to the project , detach embedded images:
[kdenlive] / src / monitormanager.h
index 5f594afa93c071723905606d23301c5366767409..31bd5093e9e61eb95cf6cd4c30e24d2c284129b8 100644 (file)
@@ -34,11 +34,13 @@ public:
     MonitorManager(QWidget *parent = 0);
     void initMonitors(Monitor *clipMonitor, Monitor *projectMonitor);
     Timecode timecode();
-    void switchMonitors();
     void resetProfiles(Timecode tc);
     void stopActiveMonitor();
 
 public slots:
+
+    /** @brief Activates a monitor.
+     * @param name name of the monitor to activate */
     void activateMonitor(QString name = QString());
     void slotPlay();
     void slotPlayZone();
@@ -52,7 +54,11 @@ public slots:
     void slotStart();
     void slotEnd();
     void slotResetProfiles();
-    void slotBlockMonitors();
+
+    /** @brief Switches between project and clip monitor.
+     * @ref activateMonitor
+     * @param activateClip whether to activate the clip monitor */
+    void slotSwitchMonitors(bool activateClip);
 
 private:
     Monitor *m_clipMonitor;
@@ -62,7 +68,10 @@ private:
     bool m_blocked;
 
 signals:
+    /** @brief Emitted when the active monitor changes */
     void raiseClipMonitor(bool);
+    /** @brief When the monitor changed, update the visible color scopes */
+    void checkColorScopes();
 
 };