summaryrefslogtreecommitdiff
path: root/src/wx/audio_plot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/audio_plot.h')
-rw-r--r--src/wx/audio_plot.h15
1 files changed, 5 insertions, 10 deletions
diff --git a/src/wx/audio_plot.h b/src/wx/audio_plot.h
index 094f8e1b0..7eedd8ffe 100644
--- a/src/wx/audio_plot.h
+++ b/src/wx/audio_plot.h
@@ -23,6 +23,8 @@
#include "lib/util.h"
#include "lib/audio_analysis.h"
+class Metrics;
+
class AudioPlot : public wxPanel
{
public:
@@ -39,6 +41,9 @@ public:
private:
void paint ();
+ void plot_peak (wxGraphicsPath &, int, Metrics const &) const;
+ void plot_rms (wxGraphicsPath &, int, Metrics const &) const;
+ float y_for_linear (float, Metrics const &) const;
boost::shared_ptr<AudioAnalysis> _analysis;
bool _channel_visible[MAX_AUDIO_CHANNELS];
@@ -48,16 +53,6 @@ private:
int _smoothing;
std::vector<wxColour> _colours;
- void plot_peak (wxGraphicsPath &, int) const;
- void plot_rms (wxGraphicsPath &, int) const;
- float y_for_linear (float) const;
-
- double _db_label_width;
- int _height;
- int _y_origin;
- float _x_scale;
- float _y_scale;
-
wxString _message;
static const int _minimum;