add the ability to use cairo scaling to warp the rendering of the main clock text
[ardour.git] / gtk2_ardour / fft_result.h
index 2042b2d0429ae25bb946a20b7228f9b6c84bfc73..ddf2bb18424fdd04568b4b817960dbb013685fde 100644 (file)
@@ -21,7 +21,6 @@
 #ifndef __ardour_fft_result_h
 #define __ardour_fft_result_h
 
-#include "ardour/types.h"
 #include <fftw3.h>
 
 #include <gdkmm/color.h>
@@ -33,7 +32,7 @@ class FFTGraph;
 class FFTResult
 {
        public:
-               
+
                ~FFTResult();
 
                void analyzeWindow(float *window);
@@ -44,15 +43,15 @@ class FFTResult
                float avgAt(int x);
                float maxAt(int x);
                float minAt(int x);
-               
+
                float minimum() const { return _minimum; }
                float maximum() const { return _maximum; }
-               
+
                Gdk::Color get_color() const { return _color; }
-               
+
        private:
                FFTResult(FFTGraph *graph, Gdk::Color color, std::string trackname);
-               
+
                int     _averages;
 
                float*  _data_avg;
@@ -68,10 +67,10 @@ class FFTResult
                float   _maximum;
 
                FFTGraph *_graph;
-               
+
                Gdk::Color _color;
                std::string _trackname;
-               
+
        friend class FFTGraph;
 };