Select active channels on opening audio analysis (#802).
[dcpomatic.git] / src / wx / audio_dialog.h
1 /*
2     Copyright (C) 2013-2016 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "lib/film.h"
21 #include "lib/audio_analysis.h"
22 #include "lib/playlist.h"
23 #include <wx/wx.h>
24 #include <boost/shared_ptr.hpp>
25 #include <boost/signals2.hpp>
26
27 class AudioPlot;
28 class Film;
29
30 class AudioDialog : public wxDialog
31 {
32 public:
33         AudioDialog (wxWindow *, boost::shared_ptr<Film> film, boost::shared_ptr<AudioContent> content = boost::shared_ptr<AudioContent> ());
34
35         bool Show (bool show = true);
36
37 private:
38         void content_changed (int);
39         void channel_clicked (wxCommandEvent &);
40         void type_clicked (wxCommandEvent &);
41         void smoothing_changed ();
42         void try_to_load_analysis ();
43         void analysis_finished ();
44         void setup_statistics ();
45
46         boost::shared_ptr<AudioAnalysis> _analysis;
47         boost::weak_ptr<Film> _film;
48         boost::weak_ptr<AudioContent> _content;
49         int _channels;
50         boost::shared_ptr<const Playlist> _playlist;
51         AudioPlot* _plot;
52         wxStaticText* _sample_peak;
53         wxStaticText* _true_peak;
54         wxStaticText* _integrated_loudness;
55         wxStaticText* _loudness_range;
56         wxCheckBox* _channel_checkbox[MAX_DCP_AUDIO_CHANNELS];
57         wxCheckBox* _type_checkbox[AudioPoint::COUNT];
58         wxSlider* _smoothing;
59         boost::signals2::scoped_connection _film_connection;
60         boost::signals2::scoped_connection _analysis_finished_connection;
61 };