]> git.sesse.net Git - kdenlive/blobdiff - src/monitor.h
Changing the timecode format in statur bar (from hh:mm:ss:ff to frames) now also...
[kdenlive] / src / monitor.h
index accd3aac0a6b8eb9eeb8977d45b6963511fba48e..35b539e96ab48ba2d650413d324912ccd9217f87 100644 (file)
@@ -78,6 +78,7 @@ public:
     DocClipBase *activeClip();
     GenTime position();
     void checkOverlay();
+    void updateTimecodeFormat();
 
 protected:
     virtual void mousePressEvent(QMouseEvent * event);
@@ -101,7 +102,6 @@ private:
     bool m_isActive;
     double m_scale;
     int m_length;
-    int m_position;
     bool m_dragStarted;
     MonitorRefresh *m_monitorRefresh;
     KIcon m_playIcon;
@@ -113,6 +113,7 @@ private:
     QMenu *m_playMenu;
     QPoint m_DragStartPosition;
     GenTime getSnapForPos(bool previous);
+    bool m_frametimecode;
 
 private slots:
     void seekCursor(int pos);
@@ -131,7 +132,7 @@ public slots:
     void slotOpenFile(const QString &);
     void slotSetXml(DocClipBase *clip, const int position = -1);
     void initMonitor();
-    void refreshMonitor(bool visible);
+    void refreshMonitor(bool visible = true);
     void slotSeek(int pos);
     void stop();
     void start();
@@ -163,6 +164,7 @@ signals:
     void adjustMonitorSize();
     void zoneUpdated(QPoint);
     void saveZone(Render *, QPoint);
+    void blockMonitors();
 };
 
 #endif