Use wx 2.9 binding API.
[dcpomatic.git] / src / wx / audio_panel.cc
1 /*
2     Copyright (C) 2012-2013 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 <boost/lexical_cast.hpp>
21 #include <wx/spinctrl.h>
22 #include "lib/config.h"
23 #include "lib/sound_processor.h"
24 #include "audio_dialog.h"
25 #include "audio_panel.h"
26 #include "audio_mapping_view.h"
27 #include "wx_util.h"
28 #include "gain_calculator_dialog.h"
29 #include "film_editor.h"
30
31 using std::vector;
32 using std::cout;
33 using std::string;
34 using boost::dynamic_pointer_cast;
35 using boost::lexical_cast;
36 using boost::shared_ptr;
37
38 AudioPanel::AudioPanel (FilmEditor* e)
39         : FilmEditorPanel (e, _("Audio"))
40         , _audio_dialog (0)
41 {
42         wxFlexGridSizer* grid = new wxFlexGridSizer (3, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
43         _sizer->Add (grid, 0, wxALL, 8);
44
45         _show = new wxButton (this, wxID_ANY, _("Show Audio..."));
46         grid->Add (_show, 1);
47         grid->AddSpacer (0);
48         grid->AddSpacer (0);
49
50         add_label_to_sizer (grid, this, _("Audio Gain"), true);
51         {
52                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
53                 _gain = new wxSpinCtrl (this);
54                 s->Add (_gain, 1);
55                 add_label_to_sizer (s, this, _("dB"), false);
56                 grid->Add (s, 1);
57         }
58         
59         _gain_calculate_button = new wxButton (this, wxID_ANY, _("Calculate..."));
60         grid->Add (_gain_calculate_button);
61
62         add_label_to_sizer (grid, this, _("Audio Delay"), false);
63         {
64                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
65                 _delay = new wxSpinCtrl (this);
66                 s->Add (_delay, 1);
67                 /// TRANSLATORS: this is an abbreviation for milliseconds, the unit of time
68                 add_label_to_sizer (s, this, _("ms"), false);
69                 grid->Add (s);
70         }
71
72         grid->AddSpacer (0);
73
74         add_label_to_sizer (grid, this, _("Audio Stream"), true);
75         _stream = new wxChoice (this, wxID_ANY);
76         grid->Add (_stream, 1, wxEXPAND);
77         _description = new wxStaticText (this, wxID_ANY, wxT (""));
78         grid->AddSpacer (0);
79         
80         grid->Add (_description, 1, wxALIGN_CENTER_VERTICAL | wxLEFT, 8);
81         grid->AddSpacer (0);
82         grid->AddSpacer (0);
83         
84         _mapping = new AudioMappingView (this);
85         _sizer->Add (_mapping, 1, wxEXPAND | wxALL, 6);
86
87         _gain->SetRange (-60, 60);
88         _delay->SetRange (-1000, 1000);
89
90         _delay->Bind                 (wxEVT_COMMAND_SPINCTRL_UPDATED, boost::bind (&AudioPanel::delay_changed, this));
91         _stream->Bind                (wxEVT_COMMAND_CHOICE_SELECTED,  boost::bind (&AudioPanel::stream_changed, this));
92         _show->Bind                  (wxEVT_COMMAND_BUTTON_CLICKED,   boost::bind (&AudioPanel::show_clicked, this));
93         _gain->Bind                  (wxEVT_COMMAND_SPINCTRL_UPDATED, boost::bind (&AudioPanel::gain_changed, this));
94         _gain_calculate_button->Bind (wxEVT_COMMAND_BUTTON_CLICKED,   boost::bind (&AudioPanel::gain_calculate_button_clicked, this));
95
96         _mapping->Changed.connect (boost::bind (&AudioPanel::mapping_changed, this, _1));
97 }
98
99
100 void
101 AudioPanel::film_changed (Film::Property property)
102 {
103         switch (property) {
104         case Film::AUDIO_CHANNELS:
105                 _mapping->set_channels (_editor->film()->audio_channels ());
106                 _sizer->Layout ();
107                 break;
108         default:
109                 break;
110         }
111 }
112
113 void
114 AudioPanel::film_content_changed (shared_ptr<Content> c, int property)
115 {
116         shared_ptr<AudioContent> ac = dynamic_pointer_cast<AudioContent> (c);
117         shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (c);
118
119         if (_audio_dialog && _editor->selected_audio_content()) {
120                 _audio_dialog->set_content (_editor->selected_audio_content ());
121         }
122         
123         if (property == AudioContentProperty::AUDIO_GAIN) {
124                 checked_set (_gain, ac ? ac->audio_gain() : 0);
125         } else if (property == AudioContentProperty::AUDIO_DELAY) {
126                 checked_set (_delay, ac ? ac->audio_delay() : 0);
127         } else if (property == AudioContentProperty::AUDIO_MAPPING) {
128                 _mapping->set (ac ? ac->audio_mapping () : AudioMapping ());
129                 _sizer->Layout ();
130         } else if (property == FFmpegContentProperty::AUDIO_STREAMS) {
131                 _stream->Clear ();
132                 if (fc) {
133                         vector<shared_ptr<FFmpegAudioStream> > a = fc->audio_streams ();
134                         for (vector<shared_ptr<FFmpegAudioStream> >::iterator i = a.begin(); i != a.end(); ++i) {
135                                 _stream->Append (std_to_wx ((*i)->name), new wxStringClientData (std_to_wx (lexical_cast<string> ((*i)->id))));
136                         }
137                         
138                         if (fc->audio_stream()) {
139                                 checked_set (_stream, lexical_cast<string> (fc->audio_stream()->id));
140                         }
141                 }
142         }
143 }
144
145 void
146 AudioPanel::gain_changed ()
147 {
148         shared_ptr<AudioContent> ac = _editor->selected_audio_content ();
149         if (!ac) {
150                 return;
151         }
152
153         ac->set_audio_gain (_gain->GetValue ());
154 }
155
156 void
157 AudioPanel::delay_changed ()
158 {
159         shared_ptr<AudioContent> ac = _editor->selected_audio_content ();
160         if (!ac) {
161                 return;
162         }
163
164         ac->set_audio_delay (_delay->GetValue ());
165 }
166
167 void
168 AudioPanel::gain_calculate_button_clicked ()
169 {
170         GainCalculatorDialog* d = new GainCalculatorDialog (this);
171         d->ShowModal ();
172
173         if (d->wanted_fader() == 0 || d->actual_fader() == 0) {
174                 d->Destroy ();
175                 return;
176         }
177         
178         _gain->SetValue (
179                 Config::instance()->sound_processor()->db_for_fader_change (
180                         d->wanted_fader (),
181                         d->actual_fader ()
182                         )
183                 );
184
185         /* This appears to be necessary, as the change is not signalled,
186            I think.
187         */
188         gain_changed ();
189         
190         d->Destroy ();
191 }
192
193 void
194 AudioPanel::show_clicked ()
195 {
196         if (_audio_dialog) {
197                 _audio_dialog->Destroy ();
198                 _audio_dialog = 0;
199         }
200
201         shared_ptr<Content> c = _editor->selected_content ();
202         if (!c) {
203                 return;
204         }
205
206         shared_ptr<AudioContent> ac = dynamic_pointer_cast<AudioContent> (c);
207         if (!ac) {
208                 return;
209         }
210         
211         _audio_dialog = new AudioDialog (this);
212         _audio_dialog->Show ();
213         _audio_dialog->set_content (ac);
214 }
215
216 void
217 AudioPanel::stream_changed ()
218 {
219         shared_ptr<Content> c = _editor->selected_content ();
220         if (!c) {
221                 return;
222         }
223         
224         shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (c);
225         if (!fc) {
226                 return;
227         }
228         
229         vector<shared_ptr<FFmpegAudioStream> > a = fc->audio_streams ();
230         vector<shared_ptr<FFmpegAudioStream> >::iterator i = a.begin ();
231         string const s = string_client_data (_stream->GetClientObject (_stream->GetSelection ()));
232         while (i != a.end() && lexical_cast<string> ((*i)->id) != s) {
233                 ++i;
234         }
235
236         if (i != a.end ()) {
237                 fc->set_audio_stream (*i);
238         }
239
240         if (!fc->audio_stream ()) {
241                 _description->SetLabel (wxT (""));
242         } else {
243                 wxString s;
244                 if (fc->audio_channels() == 1) {
245                         s << _("1 channel");
246                 } else {
247                         s << fc->audio_channels() << wxT (" ") << _("channels");
248                 }
249                 s << wxT (", ") << fc->content_audio_frame_rate() << _("Hz");
250                 _description->SetLabel (s);
251         }
252 }
253
254 void
255 AudioPanel::mapping_changed (AudioMapping m)
256 {
257         shared_ptr<AudioContent> c = _editor->selected_audio_content ();
258         if (!c) {
259                 return;
260         }
261
262         c->set_audio_mapping (m);
263 }
264