Supporters update.
[dcpomatic.git] / src / wx / audio_panel.h
1 /*
2     Copyright (C) 2012-2022 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "content_sub_panel.h"
23 #include "content_widget.h"
24 #include "timecode.h"
25 #include "lib/audio_mapping.h"
26
27
28 class AudioDialog;
29 class AudioMappingView;
30 class CheckBox;
31 class LanguageTagWidget;
32 class wxButton;
33 class wxChoice;
34 class wxSpinCtrlDouble;
35 class wxStaticText;
36
37
38 class AudioPanel : public ContentSubPanel
39 {
40 public:
41         explicit AudioPanel (ContentPanel *);
42
43         void create () override;
44         void film_changed(FilmProperty) override;
45         void film_content_changed (int) override;
46         void content_selection_changed () override;
47         void set_film (std::shared_ptr<Film>);
48
49 private:
50         void show_clicked ();
51         void gain_calculate_button_clicked ();
52         void mapping_changed (AudioMapping);
53         void setup_description ();
54         void setup_peak ();
55         void active_jobs_changed (boost::optional<std::string>, boost::optional<std::string>);
56         void setup_sensitivity ();
57         void reference_clicked ();
58         void add_to_grid () override;
59         boost::optional<float> peak () const;
60         void fade_in_changed ();
61         void fade_out_changed ();
62         void use_same_fades_as_video_changed ();
63
64         CheckBox* _reference;
65         wxStaticText* _reference_note;
66         wxButton* _show;
67         wxStaticText* _gain_label;
68         wxStaticText* _gain_db_label;
69         ContentSpinCtrlDouble<AudioContent>* _gain;
70         wxButton* _gain_calculate_button;
71         wxStaticText* _peak;
72         wxStaticText* _delay_label;
73         wxStaticText* _delay_ms_label;
74         ContentSpinCtrl<AudioContent>* _delay;
75         wxStaticText* _fade_in_label;
76         Timecode<dcpomatic::ContentTime>* _fade_in;
77         wxStaticText* _fade_out_label;
78         Timecode<dcpomatic::ContentTime>* _fade_out;
79         CheckBox* _use_same_fades_as_video;
80         AudioMappingView* _mapping;
81         wxStaticText* _description;
82         wx_ptr<AudioDialog> _audio_dialog;
83
84         boost::signals2::scoped_connection _mapping_connection;
85         boost::signals2::scoped_connection _active_jobs_connection;
86
87         static std::map<boost::filesystem::path, float> _peak_cache;
88 };