]> git.sesse.net Git - kdenlive/blobdiff - src/waveform.h
disable effect stack params and monitor scene when effect is disabled
[kdenlive] / src / waveform.h
index 7e4f07392fa6d06095f26a102b4b8b6fee0141c4..5ece240f3995ca4ccc7d13f60ed19fc058262b0b 100644 (file)
@@ -27,19 +27,27 @@ public:
 
     virtual QString widgetName() const;
 
+protected:
+    virtual void readConfig();
+    void writeConfig();
+
 private:
     Ui::Waveform_UI *ui;
-
     WaveformGenerator *m_waveformGenerator;
 
-    bool initialDimensionUpdateDone;
+    QAction *m_aRec601;
+    QAction *m_aRec709;
+    QActionGroup *m_agRec;
+
+    static const QSize m_textWidth;
+    static const int m_paddingBottom;
 
     QImage m_waveform;
 
     /// Implemented methods ///
     QRect scopeRect();
     QImage renderHUD(uint);
-    QImage renderScope(uint);
+    QImage renderScope(uint, const QImage);
     QImage renderBackground(uint);
     bool isHUDDependingOnInput() const;
     bool isScopeDependingOnInput() const;