c97047c737c164487e9c68ae916ee5281cdb0e6f
[dcpomatic.git] / src / wx / content_advanced_dialog.cc
1 /*
2     Copyright (C) 2020 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 #include "content_advanced_dialog.h"
22 #include "lib/content.h"
23 #include "lib/video_content.h"
24 #include <boost/bind.hpp>
25
26 using boost::bind;
27 using boost::shared_ptr;
28
29 ContentAdvancedDialog::ContentAdvancedDialog (wxWindow* parent, shared_ptr<Content> content)
30         : TableDialog (parent, _("Advanced content settings"), 2, 0, false)
31         , _content (content)
32 {
33         wxCheckBox* ignore_video = new wxCheckBox (this, wxID_ANY, _("Ignore this content's video and use only audio, subtitles and closed captions"));
34         add (ignore_video);
35         add_spacer ();
36
37         layout ();
38
39         ignore_video->Enable (static_cast<bool>(_content->video));
40         ignore_video->SetValue (_content->video ? !content->video->use() : false);
41
42         ignore_video->Bind (wxEVT_CHECKBOX, bind(&ContentAdvancedDialog::ignore_video_changed, this, _1));
43 }
44
45
46 void
47 ContentAdvancedDialog::ignore_video_changed (wxCommandEvent& ev)
48 {
49          if (_content->video) {
50                  _content->video->set_use (!ev.IsChecked());
51          }
52 }
53
54