Basic implementation of extra subtitle-scan job to run when the
[dcpomatic.git] / src / wx / subtitle_appearance_dialog.cc
1 /*
2     Copyright (C) 2015-2018 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 "subtitle_appearance_dialog.h"
22 #include "rgba_colour_picker.h"
23 #include "static_text.h"
24 #include "check_box.h"
25 #include "dcpomatic_button.h"
26 #include "lib/string_text_file_content.h"
27 #include "lib/text_content.h"
28 #include "lib/ffmpeg_subtitle_stream.h"
29 #include "lib/ffmpeg_content.h"
30 #include "lib/examine_ffmpeg_subtitles_job.h"
31 #include "lib/job_manager.h"
32 #include <wx/wx.h>
33 #include <wx/clrpicker.h>
34 #include <wx/spinctrl.h>
35 #include <wx/gbsizer.h>
36
37 using std::map;
38 using std::string;
39 using boost::shared_ptr;
40 using boost::bind;
41 using boost::dynamic_pointer_cast;
42 using boost::optional;
43
44 int const SubtitleAppearanceDialog::NONE = 0;
45 int const SubtitleAppearanceDialog::OUTLINE = 1;
46 int const SubtitleAppearanceDialog::SHADOW = 2;
47
48 SubtitleAppearanceDialog::SubtitleAppearanceDialog (wxWindow* parent, shared_ptr<const Film> film, shared_ptr<Content> content, shared_ptr<TextContent> caption)
49         : wxDialog (parent, wxID_ANY, _("Caption appearance"))
50         , _film (film)
51         , _finding (0)
52         , _content (content)
53         , _caption (caption)
54 {
55         shared_ptr<FFmpegContent> ff = dynamic_pointer_cast<FFmpegContent> (content);
56         if (ff) {
57                 _stream = ff->subtitle_stream ();
58                 /* XXX: assuming that all FFmpeg streams have bitmap subs */
59                 if (_stream->colours().empty()) {
60                         _job_manager_connection = JobManager::instance()->ActiveJobsChanged.connect(boost::bind(&SubtitleAppearanceDialog::active_jobs_changed, this, _1));
61                         JobManager::instance()->add(shared_ptr<Job>(new ExamineFFmpegSubtitlesJob(film, ff)));
62                 }
63         }
64
65         _overall_sizer = new wxBoxSizer (wxVERTICAL);
66         SetSizer (_overall_sizer);
67
68         _table = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
69
70         _overall_sizer->Add (_table, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
71
72         int r = 0;
73
74         add_label_to_sizer (_table, this, _("Colour"), true, wxGBPosition (r, 0));
75         _force_colour = set_to (_colour = new wxColourPickerCtrl (this, wxID_ANY), r);
76
77         add_label_to_sizer (_table, this, _("Effect"), true, wxGBPosition (r, 0));
78         _force_effect = set_to (_effect = new wxChoice (this, wxID_ANY), r);
79
80         add_label_to_sizer (_table, this, _("Effect colour"), true, wxGBPosition (r, 0));
81         _force_effect_colour = set_to (_effect_colour = new wxColourPickerCtrl (this, wxID_ANY), r);
82
83         add_label_to_sizer (_table, this, _("Outline width"), true, wxGBPosition (r, 0));
84         _outline_width = new wxSpinCtrl (this, wxID_ANY);
85         _table->Add (_outline_width, wxGBPosition (r, 1));
86         ++r;
87
88         add_label_to_sizer (_table, this, _("Fade in time"), true, wxGBPosition (r, 0));
89         _force_fade_in = set_to (_fade_in = new Timecode<ContentTime> (this), r);
90
91         add_label_to_sizer (_table, this, _("Fade out time"), true, wxGBPosition (r, 0));
92         _force_fade_out = set_to (_fade_out = new Timecode<ContentTime> (this), r);
93
94         if (_stream) {
95                 _colours_panel = new wxScrolled<wxPanel> (this);
96                 _colours_panel->EnableScrolling (false, true);
97                 _colours_panel->ShowScrollbars (wxSHOW_SB_NEVER, wxSHOW_SB_ALWAYS);
98                 _colours_panel->SetScrollRate (0, 16);
99
100                 _colour_table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
101                 _colour_table->AddGrowableCol (1, 1);
102
103                 wxStaticText* t = new StaticText (_colours_panel, "");
104                 t->SetLabelMarkup (_("<b>Original colour</b>"));
105                 _colour_table->Add (t, 1, wxEXPAND);
106                 t = new StaticText (_colours_panel, "", wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE_HORIZONTAL);
107                 t->SetLabelMarkup (_("<b>New colour</b>"));
108                 _colour_table->Add (t, 1, wxALIGN_CENTER);
109
110                 add_colours ();
111
112                 _colours_panel->SetSizer (_colour_table);
113
114                 /* XXX: still assuming that all FFmpeg streams have bitmap subs */
115                 if (_stream->colours().empty()) {
116                         _finding = new wxStaticText(this, wxID_ANY, _("Finding the colours in these subtitles..."));
117                         _overall_sizer->Add (_finding, 0, wxALL, DCPOMATIC_DIALOG_BORDER);
118                         _colours_panel->Show (false);
119                 }
120
121                 _overall_sizer->Add (_colours_panel, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
122
123                 wxButton* restore = new Button (this, _("Restore to original colours"));
124                 restore->Bind (wxEVT_BUTTON, bind (&SubtitleAppearanceDialog::restore, this));
125                 _overall_sizer->Add (restore, 0, wxALL, DCPOMATIC_SIZER_X_GAP);
126         }
127
128         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
129         if (buttons) {
130                 _overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
131         }
132
133         _overall_sizer->Layout ();
134         _overall_sizer->SetSizeHints (this);
135
136         /* Keep these Appends() up to date with NONE/OUTLINE/SHADOW variables */
137         _effect->Append (_("None"));
138         _effect->Append (_("Outline"));
139         _effect->Append (_("Shadow"));;
140
141         optional<dcp::Colour> colour = _caption->colour();
142         _force_colour->SetValue (static_cast<bool>(colour));
143         if (colour) {
144                 _colour->SetColour (wxColour (colour->r, colour->g, colour->b));
145         } else {
146                 _colour->SetColour (wxColour (255, 255, 255));
147         }
148
149         optional<dcp::Effect> effect = _caption->effect();
150         _force_effect->SetValue (static_cast<bool>(effect));
151         if (effect) {
152                 switch (*effect) {
153                 case dcp::NONE:
154                         _effect->SetSelection (NONE);
155                         break;
156                 case dcp::BORDER:
157                         _effect->SetSelection (OUTLINE);
158                         break;
159                 case dcp::SHADOW:
160                         _effect->SetSelection (SHADOW);
161                         break;
162                 }
163         } else {
164                 _effect->SetSelection (NONE);
165         }
166
167         optional<dcp::Colour> effect_colour = _caption->effect_colour();
168         _force_effect_colour->SetValue (static_cast<bool>(effect_colour));
169         if (effect_colour) {
170                 _effect_colour->SetColour (wxColour (effect_colour->r, effect_colour->g, effect_colour->b));
171         } else {
172                 _effect_colour->SetColour (wxColour (0, 0, 0));
173         }
174
175         optional<ContentTime> fade_in = _caption->fade_in();
176         _force_fade_in->SetValue (static_cast<bool>(fade_in));
177         if (fade_in) {
178                 _fade_in->set (*fade_in, _content->active_video_frame_rate(film));
179         } else {
180                 _fade_in->set (ContentTime(), _content->active_video_frame_rate(film));
181         }
182
183         optional<ContentTime> fade_out = _caption->fade_out();
184         _force_fade_out->SetValue (static_cast<bool>(fade_out));
185         if (fade_out) {
186                 _fade_out->set (*fade_out, _content->active_video_frame_rate(film));
187         } else {
188                 _fade_out->set (ContentTime(), _content->active_video_frame_rate(film));
189         }
190
191         _outline_width->SetValue (_caption->outline_width ());
192
193         _force_colour->Bind (wxEVT_CHECKBOX, bind (&SubtitleAppearanceDialog::setup_sensitivity, this));
194         _force_effect_colour->Bind (wxEVT_CHECKBOX, bind (&SubtitleAppearanceDialog::setup_sensitivity, this));
195         _force_effect->Bind (wxEVT_CHECKBOX, bind (&SubtitleAppearanceDialog::setup_sensitivity, this));
196         _force_fade_in->Bind (wxEVT_CHECKBOX, bind (&SubtitleAppearanceDialog::setup_sensitivity, this));
197         _force_fade_out->Bind (wxEVT_CHECKBOX, bind (&SubtitleAppearanceDialog::setup_sensitivity, this));
198         _effect->Bind (wxEVT_CHOICE, bind (&SubtitleAppearanceDialog::setup_sensitivity, this));
199         _content_connection = _content->Change.connect (bind (&SubtitleAppearanceDialog::content_change, this, _1));
200
201         setup_sensitivity ();
202 }
203
204 void
205 SubtitleAppearanceDialog::content_change (ChangeType type)
206 {
207         if (type == CHANGE_TYPE_DONE) {
208                 setup_sensitivity ();
209         }
210 }
211
212 wxCheckBox*
213 SubtitleAppearanceDialog::set_to (wxWindow* w, int& r)
214 {
215         wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
216         wxCheckBox* set_to = new CheckBox (this, _("Set to"));
217         s->Add (set_to, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, 8);
218         s->Add (w, 0, wxALIGN_CENTER_VERTICAL);
219         _table->Add (s, wxGBPosition (r, 1));
220         ++r;
221         return set_to;
222 }
223
224 void
225 SubtitleAppearanceDialog::apply ()
226 {
227         shared_ptr<const Film> film = _film.lock ();
228
229         if (_force_colour->GetValue ()) {
230                 wxColour const c = _colour->GetColour ();
231                 _caption->set_colour (dcp::Colour (c.Red(), c.Green(), c.Blue()));
232         } else {
233                 _caption->unset_colour ();
234         }
235         if (_force_effect->GetValue()) {
236                 switch (_effect->GetSelection()) {
237                 case NONE:
238                         _caption->set_effect (dcp::NONE);
239                         break;
240                 case OUTLINE:
241                         _caption->set_effect (dcp::BORDER);
242                         break;
243                 case SHADOW:
244                         _caption->set_effect (dcp::SHADOW);
245                         break;
246                 }
247         } else {
248                 _caption->unset_effect ();
249         }
250         if (_force_effect_colour->GetValue ()) {
251                 wxColour const ec = _effect_colour->GetColour ();
252                 _caption->set_effect_colour (dcp::Colour (ec.Red(), ec.Green(), ec.Blue()));
253         } else {
254                 _caption->unset_effect_colour ();
255         }
256         if (_force_fade_in->GetValue ()) {
257                 _caption->set_fade_in (_fade_in->get(_content->active_video_frame_rate(film)));
258         } else {
259                 _caption->unset_fade_in ();
260         }
261         if (_force_fade_out->GetValue ()) {
262                 _caption->set_fade_out (_fade_out->get(_content->active_video_frame_rate(film)));
263         } else {
264                 _caption->unset_fade_out ();
265         }
266         _caption->set_outline_width (_outline_width->GetValue ());
267
268         if (_stream) {
269                 for (map<RGBA, RGBAColourPicker*>::const_iterator i = _pickers.begin(); i != _pickers.end(); ++i) {
270                         _stream->set_colour (i->first, i->second->colour ());
271                 }
272         }
273
274         shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (_content);
275         if (fc) {
276                 fc->signal_subtitle_stream_changed ();
277         }
278 }
279
280 void
281 SubtitleAppearanceDialog::restore ()
282 {
283         for (map<RGBA, RGBAColourPicker*>::const_iterator i = _pickers.begin(); i != _pickers.end(); ++i) {
284                 i->second->set (i->first);
285         }
286 }
287
288 void
289 SubtitleAppearanceDialog::setup_sensitivity ()
290 {
291         _colour->Enable (_force_colour->GetValue ());
292         _effect_colour->Enable (_force_effect_colour->GetValue ());
293         _effect->Enable (_force_effect->GetValue ());
294         _fade_in->Enable (_force_fade_in->GetValue ());
295         _fade_out->Enable (_force_fade_out->GetValue ());
296
297         bool const can_outline_width = _effect->GetSelection() == OUTLINE && _caption->burn ();
298         _outline_width->Enable (can_outline_width);
299         if (can_outline_width) {
300                 _outline_width->UnsetToolTip ();
301         } else {
302                 _outline_width->SetToolTip (_("Outline width cannot be set unless you are burning in captions"));
303         }
304 }
305
306 void
307 SubtitleAppearanceDialog::active_jobs_changed (optional<string> last)
308 {
309         if (last && *last == "examine_subtitles") {
310                 _colours_panel->Show (true);
311                 if (_finding) {
312                         _finding->Show (false);
313                 }
314                 add_colours ();
315                 _overall_sizer->Layout ();
316                 _overall_sizer->SetSizeHints (this);
317         }
318 }
319
320 void
321 SubtitleAppearanceDialog::add_colours ()
322 {
323         map<RGBA, RGBA> colours = _stream->colours ();
324         for (map<RGBA, RGBA>::const_iterator i = colours.begin(); i != colours.end(); ++i) {
325                 wxPanel* from = new wxPanel (_colours_panel, wxID_ANY);
326                 from->SetBackgroundColour (wxColour (i->first.r, i->first.g, i->first.b, i->first.a));
327                 _colour_table->Add (from, 1, wxEXPAND);
328                 RGBAColourPicker* to = new RGBAColourPicker (_colours_panel, i->second);
329                 _colour_table->Add (to, 1, wxEXPAND);
330                 _pickers[i->first] = to;
331         }
332 }