af01dcbe8484988cc7d73c4712bb965b2c8d37cf
[dcpomatic.git] / src / wx / caption_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 "caption_appearance_dialog.h"
22 #include "rgba_colour_picker.h"
23 #include "lib/text_caption_file_content.h"
24 #include "lib/caption_content.h"
25 #include "lib/ffmpeg_subtitle_stream.h"
26 #include "lib/ffmpeg_content.h"
27 #include <wx/wx.h>
28 #include <wx/clrpicker.h>
29 #include <wx/spinctrl.h>
30 #include <wx/gbsizer.h>
31
32 using std::map;
33 using boost::shared_ptr;
34 using boost::bind;
35 using boost::dynamic_pointer_cast;
36 using boost::optional;
37
38 int const CaptionAppearanceDialog::NONE = 0;
39 int const CaptionAppearanceDialog::OUTLINE = 1;
40 int const CaptionAppearanceDialog::SHADOW = 2;
41
42 CaptionAppearanceDialog::CaptionAppearanceDialog (wxWindow* parent, shared_ptr<Content> content, shared_ptr<CaptionContent> caption)
43         : wxDialog (parent, wxID_ANY, _("Caption appearance"))
44         , _content (content)
45         , _caption (caption)
46 {
47         shared_ptr<FFmpegContent> ff = dynamic_pointer_cast<FFmpegContent> (content);
48         if (ff) {
49                 _stream = ff->subtitle_stream ();
50         }
51
52         wxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
53         SetSizer (overall_sizer);
54
55         _table = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
56
57         overall_sizer->Add (_table, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
58
59         int r = 0;
60
61         add_label_to_sizer (_table, this, _("Colour"), true, wxGBPosition (r, 0));
62         _force_colour = set_to (_colour = new wxColourPickerCtrl (this, wxID_ANY), r);
63
64         add_label_to_sizer (_table, this, _("Effect"), true, wxGBPosition (r, 0));
65         _force_effect = set_to (_effect = new wxChoice (this, wxID_ANY), r);
66
67         add_label_to_sizer (_table, this, _("Effect colour"), true, wxGBPosition (r, 0));
68         _force_effect_colour = set_to (_effect_colour = new wxColourPickerCtrl (this, wxID_ANY), r);
69
70         add_label_to_sizer (_table, this, _("Outline width"), true, wxGBPosition (r, 0));
71         _outline_width = new wxSpinCtrl (this, wxID_ANY);
72         _table->Add (_outline_width, wxGBPosition (r, 1));
73         ++r;
74
75         add_label_to_sizer (_table, this, _("Fade in time"), true, wxGBPosition (r, 0));
76         _force_fade_in = set_to (_fade_in = new Timecode<ContentTime> (this), r);
77
78         add_label_to_sizer (_table, this, _("Fade out time"), true, wxGBPosition (r, 0));
79         _force_fade_out = set_to (_fade_out = new Timecode<ContentTime> (this), r);
80
81         if (_stream) {
82                 wxScrolled<wxPanel>* colours_panel = new wxScrolled<wxPanel> (this);
83                 colours_panel->EnableScrolling (false, true);
84                 colours_panel->ShowScrollbars (wxSHOW_SB_NEVER, wxSHOW_SB_ALWAYS);
85                 colours_panel->SetScrollRate (0, 16);
86
87                 wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
88                 table->AddGrowableCol (1, 1);
89
90                 map<RGBA, RGBA> colours = _stream->colours ();
91
92                 wxStaticText* t = new wxStaticText (colours_panel, wxID_ANY, "");
93                 t->SetLabelMarkup (_("<b>Original colour</b>"));
94                 table->Add (t, 1, wxEXPAND);
95                 t = new wxStaticText (colours_panel, wxID_ANY, "", wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE_HORIZONTAL);
96                 t->SetLabelMarkup (_("<b>New colour</b>"));
97                 table->Add (t, 1, wxALIGN_CENTER);
98
99                 for (map<RGBA, RGBA>::const_iterator i = colours.begin(); i != colours.end(); ++i) {
100                         wxPanel* from = new wxPanel (colours_panel, wxID_ANY);
101                         from->SetBackgroundColour (wxColour (i->first.r, i->first.g, i->first.b, i->first.a));
102                         table->Add (from, 1, wxEXPAND);
103                         RGBAColourPicker* to = new RGBAColourPicker (colours_panel, i->second);
104                         table->Add (to, 1, wxEXPAND);
105                         _pickers[i->first] = to;
106                 }
107
108                 colours_panel->SetSizer (table);
109
110                 overall_sizer->Add (colours_panel, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
111
112                 wxButton* restore = new wxButton (this, wxID_ANY, _("Restore to original colours"));
113                 restore->Bind (wxEVT_BUTTON, bind (&CaptionAppearanceDialog::restore, this));
114                 overall_sizer->Add (restore, 0, wxALL, DCPOMATIC_SIZER_X_GAP);
115         }
116
117         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK);
118         if (buttons) {
119                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
120         }
121
122         overall_sizer->Layout ();
123         overall_sizer->SetSizeHints (this);
124
125         /* Keep these Appends() up to date with NONE/OUTLINE/SHADOW variables */
126         _effect->Append (_("None"));
127         _effect->Append (_("Outline"));
128         _effect->Append (_("Shadow"));;
129
130         optional<dcp::Colour> colour = _caption->colour();
131         _force_colour->SetValue (static_cast<bool>(colour));
132         if (colour) {
133                 _colour->SetColour (wxColour (colour->r, colour->g, colour->b));
134         } else {
135                 _colour->SetColour (wxColour (255, 255, 255));
136         }
137
138         optional<dcp::Effect> effect = _caption->effect();
139         _force_effect->SetValue (static_cast<bool>(effect));
140         if (effect) {
141                 switch (*effect) {
142                 case dcp::NONE:
143                         _effect->SetSelection (NONE);
144                         break;
145                 case dcp::BORDER:
146                         _effect->SetSelection (OUTLINE);
147                         break;
148                 case dcp::SHADOW:
149                         _effect->SetSelection (SHADOW);
150                         break;
151                 }
152         } else {
153                 _effect->SetSelection (NONE);
154         }
155
156         optional<dcp::Colour> effect_colour = _caption->effect_colour();
157         _force_effect_colour->SetValue (static_cast<bool>(effect_colour));
158         if (effect_colour) {
159                 _effect_colour->SetColour (wxColour (effect_colour->r, effect_colour->g, effect_colour->b));
160         } else {
161                 _effect_colour->SetColour (wxColour (0, 0, 0));
162         }
163
164         optional<ContentTime> fade_in = _caption->fade_in();
165         _force_fade_in->SetValue (static_cast<bool>(fade_in));
166         if (fade_in) {
167                 _fade_in->set (*fade_in, _content->active_video_frame_rate());
168         } else {
169                 _fade_in->set (ContentTime(), _content->active_video_frame_rate());
170         }
171
172         optional<ContentTime> fade_out = _caption->fade_out();
173         _force_fade_out->SetValue (static_cast<bool>(fade_out));
174         if (fade_out) {
175                 _fade_out->set (*fade_out, _content->active_video_frame_rate ());
176         } else {
177                 _fade_out->set (ContentTime(), _content->active_video_frame_rate ());
178         }
179
180         _outline_width->SetValue (_caption->outline_width ());
181
182         _force_colour->Bind (wxEVT_CHECKBOX, bind (&CaptionAppearanceDialog::setup_sensitivity, this));
183         _force_effect_colour->Bind (wxEVT_CHECKBOX, bind (&CaptionAppearanceDialog::setup_sensitivity, this));
184         _force_effect->Bind (wxEVT_CHECKBOX, bind (&CaptionAppearanceDialog::setup_sensitivity, this));
185         _force_fade_in->Bind (wxEVT_CHECKBOX, bind (&CaptionAppearanceDialog::setup_sensitivity, this));
186         _force_fade_out->Bind (wxEVT_CHECKBOX, bind (&CaptionAppearanceDialog::setup_sensitivity, this));
187         _effect->Bind (wxEVT_CHOICE, bind (&CaptionAppearanceDialog::setup_sensitivity, this));
188         _content_connection = _content->Changed.connect (bind (&CaptionAppearanceDialog::setup_sensitivity, this));
189
190         setup_sensitivity ();
191 }
192
193 wxCheckBox*
194 CaptionAppearanceDialog::set_to (wxWindow* w, int& r)
195 {
196         wxSizer* s = new wxBoxSizer (wxHORIZONTAL);
197         wxCheckBox* set_to = new wxCheckBox (this, wxID_ANY, _("Set to"));
198         s->Add (set_to, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, 8);
199         s->Add (w, 0, wxALIGN_CENTER_VERTICAL);
200         _table->Add (s, wxGBPosition (r, 1));
201         ++r;
202         return set_to;
203 }
204
205 void
206 CaptionAppearanceDialog::apply ()
207 {
208         if (_force_colour->GetValue ()) {
209                 wxColour const c = _colour->GetColour ();
210                 _caption->set_colour (dcp::Colour (c.Red(), c.Green(), c.Blue()));
211         } else {
212                 _caption->unset_colour ();
213         }
214         if (_force_effect->GetValue()) {
215                 switch (_effect->GetSelection()) {
216                 case NONE:
217                         _caption->set_effect (dcp::NONE);
218                         break;
219                 case OUTLINE:
220                         _caption->set_effect (dcp::BORDER);
221                         break;
222                 case SHADOW:
223                         _caption->set_effect (dcp::SHADOW);
224                         break;
225                 }
226         } else {
227                 _caption->unset_effect ();
228         }
229         if (_force_effect_colour->GetValue ()) {
230                 wxColour const ec = _effect_colour->GetColour ();
231                 _caption->set_effect_colour (dcp::Colour (ec.Red(), ec.Green(), ec.Blue()));
232         } else {
233                 _caption->unset_effect_colour ();
234         }
235         if (_force_fade_in->GetValue ()) {
236                 _caption->set_fade_in (_fade_in->get (_content->active_video_frame_rate ()));
237         } else {
238                 _caption->unset_fade_in ();
239         }
240         if (_force_fade_out->GetValue ()) {
241                 _caption->set_fade_out (_fade_out->get (_content->active_video_frame_rate ()));
242         } else {
243                 _caption->unset_fade_out ();
244         }
245         _caption->set_outline_width (_outline_width->GetValue ());
246
247         if (_stream) {
248                 for (map<RGBA, RGBAColourPicker*>::const_iterator i = _pickers.begin(); i != _pickers.end(); ++i) {
249                         _stream->set_colour (i->first, i->second->colour ());
250                 }
251         }
252
253         shared_ptr<FFmpegContent> fc = dynamic_pointer_cast<FFmpegContent> (_content);
254         if (fc) {
255                 fc->signal_subtitle_stream_changed ();
256         }
257 }
258
259 void
260 CaptionAppearanceDialog::restore ()
261 {
262         for (map<RGBA, RGBAColourPicker*>::const_iterator i = _pickers.begin(); i != _pickers.end(); ++i) {
263                 i->second->set (i->first);
264         }
265 }
266
267 void
268 CaptionAppearanceDialog::setup_sensitivity ()
269 {
270         _colour->Enable (_force_colour->GetValue ());
271         _effect_colour->Enable (_force_effect_colour->GetValue ());
272         _effect->Enable (_force_effect->GetValue ());
273         _fade_in->Enable (_force_fade_in->GetValue ());
274         _fade_out->Enable (_force_fade_out->GetValue ());
275
276         bool const can_outline_width = _effect->GetSelection() == OUTLINE && _caption->burn ();
277         _outline_width->Enable (can_outline_width);
278         if (can_outline_width) {
279                 _outline_width->UnsetToolTip ();
280         } else {
281                 _outline_width->SetToolTip (_("Outline width cannot be set unless you are burning in captions"));
282         }
283 }