Remove reference checkboxes from video/audio/text tabs.
[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 add_to_grid () override;
58         boost::optional<float> peak () const;
59         void fade_in_changed ();
60         void fade_out_changed ();
61         void use_same_fades_as_video_changed ();
62
63         wxButton* _show;
64         wxStaticText* _gain_label;
65         wxStaticText* _gain_db_label;
66         ContentSpinCtrlDouble<AudioContent>* _gain;
67         wxButton* _gain_calculate_button;
68         wxStaticText* _peak;
69         wxStaticText* _delay_label;
70         wxStaticText* _delay_ms_label;
71         ContentSpinCtrl<AudioContent>* _delay;
72         wxStaticText* _fade_in_label;
73         Timecode<dcpomatic::ContentTime>* _fade_in;
74         wxStaticText* _fade_out_label;
75         Timecode<dcpomatic::ContentTime>* _fade_out;
76         CheckBox* _use_same_fades_as_video;
77         AudioMappingView* _mapping;
78         wxStaticText* _description;
79         wx_ptr<AudioDialog> _audio_dialog;
80
81         boost::signals2::scoped_connection _mapping_connection;
82         boost::signals2::scoped_connection _active_jobs_connection;
83
84         static std::map<boost::filesystem::path, float> _peak_cache;
85 };