X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmonitormanager.h;h=4eea714128f409deedc4135b2f7a2a25984e5963;hb=3915be02797dcbcefa0c30cfb8ab4595d8ab779b;hp=6466002a2d1519811c5eda67d86522e3b39c4f08;hpb=fa2e7f5b194c12c81167e1a7afefbb1727132017;p=kdenlive diff --git a/src/monitormanager.h b/src/monitormanager.h index 6466002a..4eea7141 100644 --- a/src/monitormanager.h +++ b/src/monitormanager.h @@ -33,12 +33,20 @@ public: MonitorManager(QWidget *parent = 0); void initMonitors(Monitor *clipMonitor, Monitor *projectMonitor); Timecode timecode(); - void setTimecode(Timecode tc); - void resetProfiles(QString prof); + void switchMonitors(); + void resetProfiles(Timecode tc); + void stopActiveMonitor(); public slots: void activateMonitor(QString name = QString::null); void slotPlay(); + void slotRewind(double speed = 0); + void slotForward(double speed = 0); + void slotRewindOneFrame(); + void slotForwardOneFrame(); + void slotStart(); + void slotEnd(); + void slotResetProfiles(); private: Monitor *m_clipMonitor; @@ -46,12 +54,7 @@ private: QString m_activeMonitor; Timecode m_timecode; -private slots: - void initProjectMonitor(); - void initClipMonitor(); - signals: - void connectMonitors(); void raiseClipMonitor(bool); };