diff layer/SpectrogramLayer.h @ 6:02aaea1ffaf7

* Beginnings of session save code * Add spline curve mode to time value layer
author Chris Cannam
date Thu, 12 Jan 2006 17:19:08 +0000
parents 37b110168acf
children 561be41ad083
line wrap: on
line diff
--- a/layer/SpectrogramLayer.h	Thu Jan 12 13:45:27 2006 +0000
+++ b/layer/SpectrogramLayer.h	Thu Jan 12 17:19:08 2006 +0000
@@ -126,6 +126,9 @@
 
     virtual QString getPropertyContainerIconName() const { return "spectrogram"; }
 
+    virtual QString toXmlString(QString indent = "",
+				QString extraAttributes = "") const;
+
 protected slots:
     void cacheInvalid();
     void cacheInvalid(size_t startFrame, size_t endFrame);
@@ -135,14 +138,14 @@
 protected:
     const DenseTimeValueModel *m_model; // I do not own this
     
-    int m_channel;
-    size_t m_windowSize;
-    WindowType m_windowType;
-    size_t m_windowOverlap;
-    float m_gain;
-    size_t m_maxFrequency;
-    ColourScale m_colourScale;
-    ColourScheme m_colourScheme;
+    int            m_channel;
+    size_t         m_windowSize;
+    WindowType     m_windowType;
+    size_t         m_windowOverlap;
+    float          m_gain;
+    size_t         m_maxFrequency;
+    ColourScale    m_colourScale;
+    ColourScheme   m_colourScheme;
     FrequencyScale m_frequencyScale;
 
     class CacheFillThread : public QThread