Correctly update when there is no selected DCP track.
[dcpomatic.git] / src / wx / text_panel.cc
1 /*
2     Copyright (C) 2012-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 "text_panel.h"
22 #include "film_editor.h"
23 #include "wx_util.h"
24 #include "text_view.h"
25 #include "content_panel.h"
26 #include "fonts_dialog.h"
27 #include "dcp_text_track_dialog.h"
28 #include "subtitle_appearance_dialog.h"
29 #include "lib/ffmpeg_content.h"
30 #include "lib/string_text_file_content.h"
31 #include "lib/ffmpeg_subtitle_stream.h"
32 #include "lib/dcp_subtitle_content.h"
33 #include "lib/string_text_file_decoder.h"
34 #include "lib/dcp_subtitle_decoder.h"
35 #include "lib/dcp_content.h"
36 #include "lib/text_content.h"
37 #include "lib/decoder_factory.h"
38 #include <wx/spinctrl.h>
39 #include <boost/foreach.hpp>
40
41 using std::vector;
42 using std::string;
43 using std::list;
44 using std::cout;
45 using boost::shared_ptr;
46 using boost::optional;
47 using boost::dynamic_pointer_cast;
48
49 /** @param t Original text type of the content, if known */
50 TextPanel::TextPanel (ContentPanel* p, TextType t)
51         : ContentSubPanel (p, std_to_wx(text_type_to_name(t)))
52         , _text_view (0)
53         , _fonts_dialog (0)
54         , _original_type (t)
55 {
56         wxBoxSizer* reference_sizer = new wxBoxSizer (wxVERTICAL);
57
58         wxString refer = _("Use this DCP's subtitle as OV and make VF");
59         if (t == TEXT_CLOSED_CAPTION) {
60                 refer = _("Use this DCP's closed caption as OV and make VF");
61         }
62
63         _reference = new wxCheckBox (this, wxID_ANY, refer);
64         reference_sizer->Add (_reference, 0, wxLEFT | wxRIGHT | wxTOP, DCPOMATIC_SIZER_GAP);
65
66         _reference_note = new wxStaticText (this, wxID_ANY, _(""));
67         _reference_note->Wrap (200);
68         reference_sizer->Add (_reference_note, 0, wxLEFT | wxRIGHT, DCPOMATIC_SIZER_GAP);
69         wxFont font = _reference_note->GetFont();
70         font.SetStyle(wxFONTSTYLE_ITALIC);
71         font.SetPointSize(font.GetPointSize() - 1);
72         _reference_note->SetFont(font);
73
74         _sizer->Add (reference_sizer);
75
76         wxGridBagSizer* grid = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
77         _sizer->Add (grid, 0, wxALL, 8);
78         int r = 0;
79
80         wxBoxSizer* use = new wxBoxSizer (wxHORIZONTAL);
81         _use = new wxCheckBox (this, wxID_ANY, _("Use as"));
82         use->Add (_use, 0, wxEXPAND | wxRIGHT, DCPOMATIC_SIZER_GAP);
83         _type = new wxChoice (this, wxID_ANY);
84         _type->Append (_("open subtitles"));
85         _type->Append (_("closed captions"));
86         use->Add (_type, 1, wxEXPAND, 0);
87         grid->Add (use, wxGBPosition (r, 0), wxGBSpan (1, 2));
88         ++r;
89
90         _burn = new wxCheckBox (this, wxID_ANY, _("Burn subtitles into image"));
91         grid->Add (_burn, wxGBPosition (r, 0), wxGBSpan (1, 2));
92         ++r;
93
94         add_label_to_sizer (grid, this, _("Offset"), true, wxGBPosition (r, 0));
95         wxBoxSizer* offset = new wxBoxSizer (wxHORIZONTAL);
96         add_label_to_sizer (offset, this, _("X"), true);
97         _x_offset = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(64, -1));
98         offset->Add (_x_offset, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP);
99         wxStaticText* pc = new wxStaticText (this, wxID_ANY, _("%"));
100         offset->Add (pc, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP * 2);
101         add_label_to_sizer (offset, this, _("Y"), true);
102         _y_offset = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(64, -1));
103         offset->Add (_y_offset, 0);
104         add_label_to_sizer (offset, this, _("%"), false);
105         grid->Add (offset, wxGBPosition (r, 1));
106         ++r;
107
108         add_label_to_sizer (grid, this, _("Scale"), true, wxGBPosition (r, 0));
109         wxBoxSizer* scale = new wxBoxSizer (wxHORIZONTAL);
110         add_label_to_sizer (scale, this, _("X"), true);
111         _x_scale = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(64, -1));
112         scale->Add (_x_scale, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP);
113         pc = new wxStaticText (this, wxID_ANY, _("%"));
114         scale->Add (pc, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP * 2);
115         add_label_to_sizer (scale, this, _("Y"), true);
116         _y_scale = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(64, -1));
117         scale->Add (_y_scale, 0);
118         add_label_to_sizer (scale, this, _("%"), false);
119         grid->Add (scale, wxGBPosition (r, 1));
120         ++r;
121
122         {
123                 add_label_to_sizer (grid, this, _("Line spacing"), true, wxGBPosition (r, 0));
124                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
125                 _line_spacing = new wxSpinCtrl (this);
126                 s->Add (_line_spacing);
127                 add_label_to_sizer (s, this, _("%"), false);
128                 grid->Add (s, wxGBPosition (r, 1));
129                 ++r;
130         }
131
132         add_label_to_sizer (grid, this, _("DCP track"), true, wxGBPosition(r, 0));
133         _dcp_track = new wxChoice (this, wxID_ANY);
134         grid->Add (_dcp_track, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND);
135         ++r;
136
137         add_label_to_sizer (grid, this, _("Language"), true, wxGBPosition (r, 0));
138         _language = new wxTextCtrl (this, wxID_ANY);
139         grid->Add (_language, wxGBPosition (r, 1));
140         ++r;
141
142         add_label_to_sizer (grid, this, _("Stream"), true, wxGBPosition (r, 0));
143         _stream = new wxChoice (this, wxID_ANY);
144         grid->Add (_stream, wxGBPosition (r, 1));
145         ++r;
146
147         {
148                 wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
149
150                 _text_view_button = new wxButton (this, wxID_ANY, _("View..."));
151                 s->Add (_text_view_button, 1, wxALL, DCPOMATIC_SIZER_GAP);
152                 _fonts_dialog_button = new wxButton (this, wxID_ANY, _("Fonts..."));
153                 s->Add (_fonts_dialog_button, 1, wxALL, DCPOMATIC_SIZER_GAP);
154                 _appearance_dialog_button = new wxButton (this, wxID_ANY, _("Appearance..."));
155                 s->Add (_appearance_dialog_button, 1, wxALL, DCPOMATIC_SIZER_GAP);
156
157                 grid->Add (s, wxGBPosition (r, 0), wxGBSpan (1, 2));
158                 ++r;
159         }
160
161         _x_offset->SetRange (-100, 100);
162         _y_offset->SetRange (-100, 100);
163         _x_scale->SetRange (10, 1000);
164         _y_scale->SetRange (10, 1000);
165         _line_spacing->SetRange (10, 1000);
166
167         update_dcp_tracks ();
168
169         content_selection_changed ();
170
171         _reference->Bind                (wxEVT_CHECKBOX, boost::bind (&TextPanel::reference_clicked, this));
172         _use->Bind                      (wxEVT_CHECKBOX, boost::bind (&TextPanel::use_toggled, this));
173         _type->Bind                     (wxEVT_CHOICE,   boost::bind (&TextPanel::type_changed, this));
174         _burn->Bind                     (wxEVT_CHECKBOX, boost::bind (&TextPanel::burn_toggled, this));
175         _x_offset->Bind                 (wxEVT_SPINCTRL, boost::bind (&TextPanel::x_offset_changed, this));
176         _y_offset->Bind                 (wxEVT_SPINCTRL, boost::bind (&TextPanel::y_offset_changed, this));
177         _x_scale->Bind                  (wxEVT_SPINCTRL, boost::bind (&TextPanel::x_scale_changed, this));
178         _y_scale->Bind                  (wxEVT_SPINCTRL, boost::bind (&TextPanel::y_scale_changed, this));
179         _line_spacing->Bind             (wxEVT_SPINCTRL, boost::bind (&TextPanel::line_spacing_changed, this));
180         _dcp_track->Bind                (wxEVT_CHOICE,   boost::bind (&TextPanel::dcp_track_changed, this));
181         _language->Bind                 (wxEVT_TEXT,     boost::bind (&TextPanel::language_changed, this));
182         _stream->Bind                   (wxEVT_CHOICE,   boost::bind (&TextPanel::stream_changed, this));
183         _text_view_button->Bind         (wxEVT_BUTTON,   boost::bind (&TextPanel::text_view_clicked, this));
184         _fonts_dialog_button->Bind      (wxEVT_BUTTON,   boost::bind (&TextPanel::fonts_dialog_clicked, this));
185         _appearance_dialog_button->Bind (wxEVT_BUTTON,   boost::bind (&TextPanel::appearance_dialog_clicked, this));
186 }
187
188 void
189 TextPanel::update_dcp_track_selection ()
190 {
191         optional<DCPTextTrack> selected;
192         bool many = false;
193         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_text()) {
194                 shared_ptr<TextContent> t = i->text_of_original_type(_original_type);
195                 if (t) {
196                         optional<DCPTextTrack> dt = t->dcp_track();
197                         if (dt && selected && *dt != *selected) {
198                                 many = true;
199                         } else if (!selected) {
200                                 selected = dt;
201                         }
202                 }
203         }
204
205         int n = 0;
206         BOOST_FOREACH (DCPTextTrack i, _parent->film()->closed_caption_tracks()) {
207                 if (!many && selected && *selected == i) {
208                         _dcp_track->SetSelection (n);
209                 }
210                 ++n;
211         }
212
213         if (!selected || many) {
214                 _dcp_track->SetSelection (wxNOT_FOUND);
215         }
216 }
217
218 void
219 TextPanel::update_dcp_tracks ()
220 {
221         _dcp_track->Clear ();
222         BOOST_FOREACH (DCPTextTrack i, _parent->film()->closed_caption_tracks()) {
223                 _dcp_track->Append (std_to_wx(i.summary()));
224         }
225
226         if (_parent->film()->closed_caption_tracks().size() < 6) {
227                 _dcp_track->Append (_("Add new..."));
228         }
229
230         update_dcp_track_selection ();
231 }
232
233 void
234 TextPanel::dcp_track_changed ()
235 {
236         optional<DCPTextTrack> track;
237
238         if (_dcp_track->GetSelection() == int(_dcp_track->GetCount()) - 1) {
239                 DCPTextTrackDialog* d = new DCPTextTrackDialog (this);
240                 if (d->ShowModal() == wxID_OK) {
241                         track = d->get();
242                 }
243                 d->Destroy ();
244         } else {
245                 /* Find the DCPTextTrack that was selected */
246                 BOOST_FOREACH (DCPTextTrack i, _parent->film()->closed_caption_tracks()) {
247                         if (i.summary() == wx_to_std(_dcp_track->GetStringSelection())) {
248                                 track = i;
249                         }
250                 }
251         }
252
253         if (track) {
254                 BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_text()) {
255                         shared_ptr<TextContent> t = i->text_of_original_type(_original_type);
256                         if (t && t->type() == TEXT_CLOSED_CAPTION) {
257                                 t->set_dcp_track(*track);
258                         }
259                 }
260         }
261
262         update_dcp_tracks ();
263 }
264
265 void
266 TextPanel::film_changed (Film::Property property)
267 {
268         if (property == Film::CONTENT || property == Film::REEL_TYPE) {
269                 setup_sensitivity ();
270         }
271 }
272
273 void
274 TextPanel::film_content_changed (int property)
275 {
276         FFmpegContentList fc = _parent->selected_ffmpeg ();
277         ContentList sc = _parent->selected_text ();
278
279         shared_ptr<FFmpegContent> fcs;
280         if (fc.size() == 1) {
281                 fcs = fc.front ();
282         }
283
284         shared_ptr<Content> scs;
285         if (sc.size() == 1) {
286                 scs = sc.front ();
287         }
288
289         shared_ptr<TextContent> text;
290         if (scs) {
291                 text = scs->text_of_original_type(_original_type);
292         }
293
294         if (property == FFmpegContentProperty::SUBTITLE_STREAMS) {
295                 _stream->Clear ();
296                 if (fcs) {
297                         vector<shared_ptr<FFmpegSubtitleStream> > s = fcs->subtitle_streams ();
298                         for (vector<shared_ptr<FFmpegSubtitleStream> >::iterator i = s.begin(); i != s.end(); ++i) {
299                                 _stream->Append (std_to_wx ((*i)->name), new wxStringClientData (std_to_wx ((*i)->identifier ())));
300                         }
301
302                         if (fcs->subtitle_stream()) {
303                                 checked_set (_stream, fcs->subtitle_stream()->identifier ());
304                         } else {
305                                 _stream->SetSelection (wxNOT_FOUND);
306                         }
307                 }
308                 setup_sensitivity ();
309         } else if (property == TextContentProperty::USE) {
310                 checked_set (_use, text ? text->use() : false);
311                 setup_sensitivity ();
312         } else if (property == TextContentProperty::TYPE) {
313                 if (text) {
314                         switch (text->type()) {
315                         case TEXT_OPEN_SUBTITLE:
316                                 _type->SetSelection (0);
317                                 break;
318                         case TEXT_CLOSED_CAPTION:
319                                 _type->SetSelection (1);
320                                 break;
321                         default:
322                                 DCPOMATIC_ASSERT (false);
323                         }
324                 } else {
325                         _type->SetSelection (0);
326                 }
327                 setup_sensitivity ();
328                 update_dcp_track_selection ();
329         } else if (property == TextContentProperty::BURN) {
330                 checked_set (_burn, text ? text->burn() : false);
331         } else if (property == TextContentProperty::X_OFFSET) {
332                 checked_set (_x_offset, text ? lrint (text->x_offset() * 100) : 0);
333         } else if (property == TextContentProperty::Y_OFFSET) {
334                 checked_set (_y_offset, text ? lrint (text->y_offset() * 100) : 0);
335         } else if (property == TextContentProperty::X_SCALE) {
336                 checked_set (_x_scale, text ? lrint (text->x_scale() * 100) : 100);
337         } else if (property == TextContentProperty::Y_SCALE) {
338                 checked_set (_y_scale, text ? lrint (text->y_scale() * 100) : 100);
339         } else if (property == TextContentProperty::LINE_SPACING) {
340                 checked_set (_line_spacing, text ? lrint (text->line_spacing() * 100) : 100);
341         } else if (property == TextContentProperty::LANGUAGE) {
342                 checked_set (_language, text ? text->language() : "");
343         } else if (property == TextContentProperty::DCP_TRACK) {
344                 update_dcp_track_selection ();
345         } else if (property == DCPContentProperty::REFERENCE_TEXT) {
346                 if (scs) {
347                         shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (scs);
348                         checked_set (_reference, dcp ? dcp->reference_text(_original_type) : false);
349                 } else {
350                         checked_set (_reference, false);
351                 }
352
353                 setup_sensitivity ();
354         } else if (property == DCPContentProperty::TEXTS) {
355                 setup_sensitivity ();
356         }
357 }
358
359 void
360 TextPanel::use_toggled ()
361 {
362         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_text()) {
363                 i->text_of_original_type(_original_type)->set_use (_use->GetValue());
364         }
365 }
366
367 /** @return the text type that is currently selected in the drop-down */
368 TextType
369 TextPanel::current_type () const
370 {
371         switch (_type->GetSelection()) {
372         case 0:
373                 return TEXT_OPEN_SUBTITLE;
374         case 1:
375                 return TEXT_CLOSED_CAPTION;
376         }
377
378         return TEXT_UNKNOWN;
379 }
380
381 void
382 TextPanel::type_changed ()
383 {
384         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_text()) {
385                 i->text_of_original_type(_original_type)->set_type (current_type ());
386         }
387 }
388
389 void
390 TextPanel::burn_toggled ()
391 {
392         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_text ()) {
393                 i->text_of_original_type(_original_type)->set_burn (_burn->GetValue());
394         }
395 }
396
397 void
398 TextPanel::setup_sensitivity ()
399 {
400         int any_subs = 0;
401         int ffmpeg_subs = 0;
402         ContentList sel = _parent->selected_text ();
403         BOOST_FOREACH (shared_ptr<Content> i, sel) {
404                 /* These are the content types that could include subtitles */
405                 shared_ptr<const FFmpegContent> fc = boost::dynamic_pointer_cast<const FFmpegContent> (i);
406                 shared_ptr<const StringTextFileContent> sc = boost::dynamic_pointer_cast<const StringTextFileContent> (i);
407                 shared_ptr<const DCPContent> dc = boost::dynamic_pointer_cast<const DCPContent> (i);
408                 shared_ptr<const DCPSubtitleContent> dsc = boost::dynamic_pointer_cast<const DCPSubtitleContent> (i);
409                 if (fc) {
410                         if (!fc->text.empty()) {
411                                 ++ffmpeg_subs;
412                                 ++any_subs;
413                         }
414                 } else if (sc || dc || dsc) {
415                         /* XXX: in the future there could be bitmap subs from DCPs */
416                         ++any_subs;
417                 }
418         }
419
420         /* Decide whether we can reference these subs */
421
422         shared_ptr<DCPContent> dcp;
423         if (sel.size() == 1) {
424                 dcp = dynamic_pointer_cast<DCPContent> (sel.front ());
425         }
426
427         string why_not;
428         bool const can_reference = dcp && dcp->can_reference_text (_original_type, why_not);
429         setup_refer_button (_reference, _reference_note, dcp, can_reference, why_not);
430
431         bool const reference = _reference->GetValue ();
432
433         TextType const type = current_type ();
434
435         /* Set up sensitivity */
436         _use->Enable (!reference && any_subs > 0);
437         bool const use = _use->GetValue ();
438         _type->Enable (!reference && any_subs > 0 && use);
439         _burn->Enable (!reference && any_subs > 0 && use && type == TEXT_OPEN_SUBTITLE);
440         _x_offset->Enable (!reference && any_subs > 0 && use && type == TEXT_OPEN_SUBTITLE);
441         _y_offset->Enable (!reference && any_subs > 0 && use && type == TEXT_OPEN_SUBTITLE);
442         _x_scale->Enable (!reference && any_subs > 0 && use && type == TEXT_OPEN_SUBTITLE);
443         _y_scale->Enable (!reference && any_subs > 0 && use && type == TEXT_OPEN_SUBTITLE);
444         _line_spacing->Enable (!reference && use && type == TEXT_OPEN_SUBTITLE);
445         _dcp_track->Enable (!reference && any_subs > 0 && use && type == TEXT_CLOSED_CAPTION);
446         _language->Enable (!reference && any_subs > 0 && use);
447         _stream->Enable (!reference && ffmpeg_subs == 1);
448         _text_view_button->Enable (!reference);
449         _fonts_dialog_button->Enable (!reference && type == TEXT_OPEN_SUBTITLE);
450         _appearance_dialog_button->Enable (!reference && any_subs > 0 && use && type == TEXT_OPEN_SUBTITLE);
451 }
452
453 void
454 TextPanel::stream_changed ()
455 {
456         FFmpegContentList fc = _parent->selected_ffmpeg ();
457         if (fc.size() != 1) {
458                 return;
459         }
460
461         shared_ptr<FFmpegContent> fcs = fc.front ();
462
463         vector<shared_ptr<FFmpegSubtitleStream> > a = fcs->subtitle_streams ();
464         vector<shared_ptr<FFmpegSubtitleStream> >::iterator i = a.begin ();
465         string const s = string_client_data (_stream->GetClientObject (_stream->GetSelection ()));
466         while (i != a.end() && (*i)->identifier () != s) {
467                 ++i;
468         }
469
470         if (i != a.end ()) {
471                 fcs->set_subtitle_stream (*i);
472         }
473 }
474
475 void
476 TextPanel::x_offset_changed ()
477 {
478         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_text ()) {
479                 i->text_of_original_type(_original_type)->set_x_offset (_x_offset->GetValue() / 100.0);
480         }
481 }
482
483 void
484 TextPanel::y_offset_changed ()
485 {
486         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_text ()) {
487                 i->text_of_original_type(_original_type)->set_y_offset (_y_offset->GetValue() / 100.0);
488         }
489 }
490
491 void
492 TextPanel::x_scale_changed ()
493 {
494         ContentList c = _parent->selected_text ();
495         if (c.size() == 1) {
496                 c.front()->text_of_original_type(_original_type)->set_x_scale (_x_scale->GetValue() / 100.0);
497         }
498 }
499
500 void
501 TextPanel::y_scale_changed ()
502 {
503         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_text ()) {
504                 i->text_of_original_type(_original_type)->set_y_scale (_y_scale->GetValue() / 100.0);
505         }
506 }
507
508 void
509 TextPanel::line_spacing_changed ()
510 {
511         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_text ()) {
512                 i->text_of_original_type(_original_type)->set_line_spacing (_line_spacing->GetValue() / 100.0);
513         }
514 }
515
516 void
517 TextPanel::language_changed ()
518 {
519         BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_text ()) {
520                 i->text_of_original_type(_original_type)->set_language (wx_to_std (_language->GetValue()));
521         }
522 }
523
524 void
525 TextPanel::content_selection_changed ()
526 {
527         film_content_changed (FFmpegContentProperty::SUBTITLE_STREAMS);
528         film_content_changed (TextContentProperty::USE);
529         film_content_changed (TextContentProperty::BURN);
530         film_content_changed (TextContentProperty::X_OFFSET);
531         film_content_changed (TextContentProperty::Y_OFFSET);
532         film_content_changed (TextContentProperty::X_SCALE);
533         film_content_changed (TextContentProperty::Y_SCALE);
534         film_content_changed (TextContentProperty::LINE_SPACING);
535         film_content_changed (TextContentProperty::LANGUAGE);
536         film_content_changed (TextContentProperty::FONTS);
537         film_content_changed (TextContentProperty::TYPE);
538         film_content_changed (TextContentProperty::DCP_TRACK);
539         film_content_changed (DCPContentProperty::REFERENCE_TEXT);
540 }
541
542 void
543 TextPanel::text_view_clicked ()
544 {
545         if (_text_view) {
546                 _text_view->Destroy ();
547                 _text_view = 0;
548         }
549
550         ContentList c = _parent->selected_text ();
551         DCPOMATIC_ASSERT (c.size() == 1);
552
553         shared_ptr<Decoder> decoder = decoder_factory (c.front(), _parent->film()->log(), false);
554
555         if (decoder) {
556                 _text_view = new TextView (this, _parent->film(), c.front(), c.front()->text_of_original_type(_original_type), decoder, _parent->film_viewer());
557                 _text_view->Show ();
558         }
559 }
560
561 void
562 TextPanel::fonts_dialog_clicked ()
563 {
564         if (_fonts_dialog) {
565                 _fonts_dialog->Destroy ();
566                 _fonts_dialog = 0;
567         }
568
569         ContentList c = _parent->selected_text ();
570         DCPOMATIC_ASSERT (c.size() == 1);
571
572         _fonts_dialog = new FontsDialog (this, c.front(), c.front()->text_of_original_type(_original_type));
573         _fonts_dialog->Show ();
574 }
575
576 void
577 TextPanel::reference_clicked ()
578 {
579         ContentList c = _parent->selected ();
580         if (c.size() != 1) {
581                 return;
582         }
583
584         shared_ptr<DCPContent> d = dynamic_pointer_cast<DCPContent> (c.front ());
585         if (!d) {
586                 return;
587         }
588
589         d->set_reference_text (_original_type, _reference->GetValue ());
590 }
591
592 void
593 TextPanel::appearance_dialog_clicked ()
594 {
595         ContentList c = _parent->selected_text ();
596         DCPOMATIC_ASSERT (c.size() == 1);
597
598         SubtitleAppearanceDialog* d = new SubtitleAppearanceDialog (this, c.front(), c.front()->text_of_original_type(_original_type));
599         if (d->ShowModal () == wxID_OK) {
600                 d->apply ();
601         }
602         d->Destroy ();
603 }