]> git.sesse.net Git - kdenlive/blobdiff - src/monitormanager.h
Initial support for Jog Shuttle devices
[kdenlive] / src / monitormanager.h
index 075b63694775329c590a23672145f1e1447d3d44..a33af55cbf72a2725c92e8a41f2fdc07be421f15 100644 (file)
@@ -1,3 +1,23 @@
+/***************************************************************************
+ *   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
 
 
 class Monitor;
 
-class MonitorManager : public QObject
-{
-  Q_OBJECT
-  
-  public:
-    MonitorManager(QWidget *parent=0);
+class MonitorManager : public QObject {
+    Q_OBJECT
 
+public:
+    MonitorManager(QWidget *parent = 0);
     void initMonitors(Monitor *clipMonitor, Monitor *projectMonitor);
-    void activateMonitor(QString name);
     Timecode timecode();
     void setTimecode(Timecode tc);
-
-  private:
+    void resetProfiles(QString prof);
+    void switchMonitors();
+
+public slots:
+    void activateMonitor(QString name = QString::null);
+    void slotPlay();
+    void slotRewind(double speed = 0);
+    void slotForward(double speed = 0);
+    void slotRewindOneFrame();
+    void slotForwardOneFrame();
+
+private:
     Monitor *m_clipMonitor;
     Monitor *m_projectMonitor;
     QString m_activeMonitor;
     Timecode m_timecode;
 
-  private slots:
-    void initProjectMonitor();
-    void initClipMonitor();
-
-  signals:
-    void connectMonitors();
+signals:
     void raiseClipMonitor(bool);
 
 };