Move video filters controls into advanced content dialogue (#1748).
[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
22 #include "content_advanced_dialog.h"
23 #include "dcpomatic_button.h"
24 #include "filter_dialog.h"
25 #include "static_text.h"
26 #include "wx_util.h"
27 #include "lib/content.h"
28 #include "lib/filter.h"
29 #include "lib/ffmpeg_content.h"
30 #include "lib/video_content.h"
31 #include <wx/gbsizer.h>
32 #include <boost/bind.hpp>
33
34
35 using std::string;
36 using std::vector;
37 using boost::bind;
38 using boost::dynamic_pointer_cast;
39 using boost::shared_ptr;
40
41
42
43 ContentAdvancedDialog::ContentAdvancedDialog (wxWindow* parent, shared_ptr<Content> content)
44         : wxDialog (parent, wxID_ANY, _("Advanced content settings"))
45         , _content (content)
46 {
47         wxGridBagSizer* sizer = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
48
49         int r = 0;
50
51         wxClientDC dc (this);
52         wxSize size = dc.GetTextExtent (wxT ("A quite long name"));
53 #ifdef __WXGTK3__
54         size.SetWidth (size.GetWidth() + 64);
55 #endif
56         size.SetHeight (-1);
57
58         add_label_to_sizer (sizer, this, _("Video filters"), true, wxGBPosition(r, 0));
59         _filters = new StaticText (this, _("None"), wxDefaultPosition, size);
60         _filters_button = new Button (this, _("Edit..."));
61         wxBoxSizer* filters = new wxBoxSizer (wxHORIZONTAL);
62         filters->Add (_filters, 1, wxALL | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_GAP);
63         filters->Add (_filters_button, 0, wxALL, DCPOMATIC_SIZER_GAP);
64         sizer->Add (filters, wxGBPosition(r, 1));
65         ++r;
66
67         wxCheckBox* ignore_video = new wxCheckBox (this, wxID_ANY, _("Ignore this content's video and use only audio, subtitles and closed captions"));
68         sizer->Add (ignore_video, wxGBPosition(r, 0), wxGBSpan(1, 2));
69         ++r;
70
71         wxSizer* overall = new wxBoxSizer (wxVERTICAL);
72         overall->Add (sizer, 1, wxALL, DCPOMATIC_DIALOG_BORDER);
73         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
74         if (buttons) {
75                 overall->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
76         }
77
78         SetSizerAndFit (overall);
79
80         ignore_video->Enable (static_cast<bool>(_content->video));
81         ignore_video->SetValue (_content->video ? !content->video->use() : false);
82         setup_filters ();
83
84         ignore_video->Bind (wxEVT_CHECKBOX, bind(&ContentAdvancedDialog::ignore_video_changed, this, _1));
85         _filters_button->Bind (wxEVT_BUTTON, bind(&ContentAdvancedDialog::edit_filters, this));
86 }
87
88
89 void
90 ContentAdvancedDialog::ignore_video_changed (wxCommandEvent& ev)
91 {
92          if (_content->video) {
93                  _content->video->set_use (!ev.IsChecked());
94          }
95 }
96
97
98 void
99 ContentAdvancedDialog::setup_filters ()
100 {
101         shared_ptr<FFmpegContent> fcs = dynamic_pointer_cast<FFmpegContent>(_content);
102         if (!fcs) {
103                 checked_set (_filters, _("None"));
104                 _filters->Enable (false);
105                 _filters_button->Enable (false);
106                 return;
107         }
108
109         string p = Filter::ffmpeg_string (fcs->filters());
110         if (p.empty()) {
111                 checked_set (_filters, _("None"));
112         } else {
113                 if (p.length() > 25) {
114                         p = p.substr(0, 25) + "...";
115                 }
116                 checked_set (_filters, p);
117         }
118 }
119
120
121 void
122 ContentAdvancedDialog::edit_filters ()
123 {
124         shared_ptr<FFmpegContent> fcs = dynamic_pointer_cast<FFmpegContent>(_content);
125         if (!fcs) {
126                 return;
127         }
128
129         FilterDialog* d = new FilterDialog (this, fcs->filters());
130         d->ActiveChanged.connect (bind(&ContentAdvancedDialog::filters_changed, this, _1));
131         d->ShowModal ();
132         d->Destroy ();
133 }
134
135
136 void
137 ContentAdvancedDialog::filters_changed (vector<Filter const *> filters)
138 {
139         shared_ptr<FFmpegContent> fcs = dynamic_pointer_cast<FFmpegContent>(_content);
140         if (!fcs) {
141                 return;
142         }
143
144         fcs->set_filters (filters);
145         setup_filters ();
146 }
147