4b13a67d2cc74570ca64480886adab6e0f4146d0
[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 "wx_util.h"
23 #include "lib/content.h"
24 #include "lib/video_content.h"
25 #include <wx/gbsizer.h>
26 #include <boost/bind.hpp>
27
28 using boost::bind;
29 using boost::shared_ptr;
30
31 ContentAdvancedDialog::ContentAdvancedDialog (wxWindow* parent, shared_ptr<Content> content)
32         : wxDialog (parent, wxID_ANY, _("Advanced content settings"))
33         , _content (content)
34 {
35         wxGridBagSizer* sizer = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
36
37         int r = 0;
38         wxCheckBox* ignore_video = new wxCheckBox (this, wxID_ANY, _("Ignore this content's video and use only audio, subtitles and closed captions"));
39         sizer->Add (ignore_video, wxGBPosition(r, 0), wxGBSpan(1, 2));
40         ++r;
41
42         wxSizer* overall = new wxBoxSizer (wxVERTICAL);
43         overall->Add (sizer, 1, wxALL, DCPOMATIC_DIALOG_BORDER);
44         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
45         if (buttons) {
46                 overall->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
47         }
48
49         SetSizerAndFit (overall);
50
51         ignore_video->Enable (static_cast<bool>(_content->video));
52         ignore_video->SetValue (_content->video ? !content->video->use() : false);
53
54         ignore_video->Bind (wxEVT_CHECKBOX, bind(&ContentAdvancedDialog::ignore_video_changed, this, _1));
55 }
56
57
58 void
59 ContentAdvancedDialog::ignore_video_changed (wxCommandEvent& ev)
60 {
61          if (_content->video) {
62                  _content->video->set_use (!ev.IsChecked());
63          }
64 }
65
66