diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-02-27 12:31:23 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-02-27 12:31:23 +0000 |
| commit | 298395454530a7bbcd2ea333d57dff8be8468bba (patch) | |
| tree | d95d2208d2b77683d7e9d3a4ae7441ef871e3c90 /src/wx/audio_plot.h | |
| parent | e8c1880a2b9a40eb11ee259feee3edd799139a43 (diff) | |
| parent | cc3900735839ff4b0da0c046b5c606c440ba917a (diff) | |
Merge branch '2.0' of ssh://carlh.dyndns.org/home/carl/git/dcpomatic into 2.0
Diffstat (limited to 'src/wx/audio_plot.h')
| -rw-r--r-- | src/wx/audio_plot.h | 15 |
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; |
