Tidy up some initialisation.
[dcpomatic.git] / src / wx / text_panel.cc
index ec4904afd608abafbe0c1e4a30d99b369175563a..a3e8a2c63be44fe039f58242fc6b9bb0e74a6b1b 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2020 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
-#include "text_panel.h"
-#include "film_editor.h"
-#include "wx_util.h"
-#include "text_view.h"
+#include "check_box.h"
 #include "content_panel.h"
-#include "fonts_dialog.h"
 #include "dcp_text_track_dialog.h"
-#include "subtitle_appearance_dialog.h"
-#include "static_text.h"
-#include "check_box.h"
 #include "dcpomatic_button.h"
+#include "dcpomatic_spin_ctrl.h"
+#include "film_editor.h"
 #include "film_viewer.h"
-#include "lib/job_manager.h"
-#include "lib/ffmpeg_content.h"
-#include "lib/string_text_file_content.h"
-#include "lib/ffmpeg_subtitle_stream.h"
+#include "fonts_dialog.h"
+#include "language_tag_widget.h"
+#include "static_text.h"
+#include "subtitle_appearance_dialog.h"
+#include "text_panel.h"
+#include "text_view.h"
+#include "wx_util.h"
+#include "lib/analyse_subtitles_job.h"
+#include "lib/dcp_content.h"
 #include "lib/dcp_subtitle_content.h"
-#include "lib/string_text_file_decoder.h"
 #include "lib/dcp_subtitle_decoder.h"
-#include "lib/dcp_content.h"
-#include "lib/text_content.h"
 #include "lib/decoder_factory.h"
-#include "lib/analyse_subtitles_job.h"
+#include "lib/ffmpeg_content.h"
+#include "lib/ffmpeg_subtitle_stream.h"
+#include "lib/job_manager.h"
+#include "lib/string_text_file_content.h"
+#include "lib/string_text_file_decoder.h"
 #include "lib/subtitle_analysis.h"
+#include "lib/text_content.h"
 #include <wx/spinctrl.h>
 
+
 using std::vector;
 using std::string;
 using std::list;
@@ -53,16 +56,11 @@ using boost::optional;
 using std::dynamic_pointer_cast;
 using boost::bind;
 
+
 /** @param t Original text type of the content, if known */
 TextPanel::TextPanel (ContentPanel* p, TextType t)
        : ContentSubPanel (p, std_to_wx(text_type_to_name(t)))
-       , _outline_subtitles (0)
-       , _dcp_track_label (0)
-       , _dcp_track (0)
-       , _text_view (0)
-       , _fonts_dialog (0)
        , _original_type (t)
-       , _loading_analysis (false)
 {
        wxString refer = _("Use this DCP's subtitle as OV and make VF");
        if (t == TextType::CLOSED_CAPTION) {
@@ -92,22 +90,22 @@ TextPanel::TextPanel (ContentPanel* p, TextType t)
 
        _offset_label = create_label (this, _("Offset"), true);
        _x_offset_label = create_label (this, _("X"), true);
-       _x_offset = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(spin_width, -1));
+       _x_offset = new SpinCtrl (this, spin_width);
        _x_offset_pc_label = new StaticText (this, _("%"));
        _y_offset_label = create_label (this, _("Y"), true);
-       _y_offset = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(spin_width, -1));
+       _y_offset = new SpinCtrl (this, spin_width);
        _y_offset_pc_label = new StaticText (this, _("%"));
 
        _scale_label = create_label (this, _("Scale"), true);
        _x_scale_label = create_label (this, _("X"), true);
-       _x_scale = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(spin_width, -1));
+       _x_scale = new SpinCtrl (this, spin_width);
        _x_scale_pc_label = new StaticText (this, _("%"));
        _y_scale_label = create_label (this, S_("Coord|Y"), true);
-       _y_scale = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(spin_width, -1));
+       _y_scale = new SpinCtrl (this, spin_width);
        _y_scale_pc_label = new StaticText (this, _("%"));
 
        _line_spacing_label = create_label (this, _("Line spacing"), true);
-       _line_spacing = new wxSpinCtrl (this);
+       _line_spacing = new SpinCtrl (this, spin_width);
        _line_spacing_pc_label = new StaticText (this, _("%"));
 
        _stream_label = create_label (this, _("Stream"), true);
@@ -119,9 +117,9 @@ TextPanel::TextPanel (ContentPanel* p, TextType t)
 
        _x_offset->SetRange (-100, 100);
        _y_offset->SetRange (-100, 100);
-       _x_scale->SetRange (10, 1000);
-       _y_scale->SetRange (10, 1000);
-       _line_spacing->SetRange (10, 1000);
+       _x_scale->SetRange (0, 1000);
+       _y_scale->SetRange (0, 1000);
+       _line_spacing->SetRange (0, 1000);
 
        _reference->Bind                (wxEVT_CHECKBOX, boost::bind (&TextPanel::reference_clicked, this));
        _use->Bind                      (wxEVT_CHECKBOX, boost::bind (&TextPanel::use_toggled, this));
@@ -141,6 +139,7 @@ TextPanel::TextPanel (ContentPanel* p, TextType t)
        content_selection_changed ();
 }
 
+
 void
 TextPanel::setup_visibility ()
 {
@@ -148,34 +147,62 @@ TextPanel::setup_visibility ()
        case TextType::OPEN_SUBTITLE:
                if (_dcp_track_label) {
                        _dcp_track_label->Destroy ();
-                       _dcp_track_label = 0;
+                       _dcp_track_label = nullptr;
                }
                if (_dcp_track) {
                        _dcp_track->Destroy ();
-                       _dcp_track = 0;
+                       _dcp_track = nullptr;
                }
                if (!_outline_subtitles) {
                        _outline_subtitles = new CheckBox (this, _("Show subtitle area"));
                        _outline_subtitles->Bind (wxEVT_CHECKBOX, boost::bind (&TextPanel::outline_subtitles_changed, this));
                        _grid->Add (_outline_subtitles, wxGBPosition(_outline_subtitles_row, 0), wxGBSpan(1, 2));
                }
-
+               if (!_language) {
+                       _language_label = create_label (this, _("Language"), true);
+                       add_label_to_sizer (_grid, _language_label, true, wxGBPosition(_ccap_track_or_language_row, 0));
+                       _language_sizer = new wxBoxSizer (wxHORIZONTAL);
+                       _language = new LanguageTagWidget (this, _("Language of these subtitles"), boost::none, wxString("en-US-"));
+                       _language->Changed.connect (boost::bind(&TextPanel::language_changed, this));
+                       _language_sizer->Add (_language->sizer(), 1, wxRIGHT, DCPOMATIC_SIZER_GAP);
+                       _language_type = new wxChoice (this, wxID_ANY);
+                       /// TRANSLATORS: Main and Additional here are a choice for whether a set of subtitles is in the "main" language of the
+                       /// film or an "additional" language.
+                       _language_type->Append (_("Main"));
+                       _language_type->Append (_("Additional"));
+                       _language_type->Bind (wxEVT_CHOICE, boost::bind(&TextPanel::language_is_additional_changed, this));
+                       _language_sizer->Add (_language_type, 0);
+                       _grid->Add (_language_sizer, wxGBPosition(_ccap_track_or_language_row, 1), wxGBSpan(1, 2));
+                       film_content_changed (TextContentProperty::LANGUAGE);
+                       film_content_changed (TextContentProperty::LANGUAGE_IS_ADDITIONAL);
+               }
                break;
        case TextType::CLOSED_CAPTION:
+               if (_language_label) {
+                       _language_label->Destroy ();
+                       _language_label = nullptr;
+                       _grid->Remove (_language->sizer());
+                       delete _language;
+                       _grid->Remove (_language_sizer);
+                       _language_sizer = nullptr;
+                       _language = nullptr;
+                       _language_type->Destroy ();
+                       _language_type = nullptr;
+               }
                if (!_dcp_track_label) {
                        _dcp_track_label = create_label (this, _("CCAP track"), true);
-                       add_label_to_sizer (_grid, _dcp_track_label, true, wxGBPosition(_ccap_track_row, 0));
+                       add_label_to_sizer (_grid, _dcp_track_label, true, wxGBPosition(_ccap_track_or_language_row, 0));
                }
                if (!_dcp_track) {
                        _dcp_track = new wxChoice (this, wxID_ANY);
                        _dcp_track->Bind (wxEVT_CHOICE, boost::bind(&TextPanel::dcp_track_changed, this));
-                       _grid->Add (_dcp_track, wxGBPosition(_ccap_track_row, 1), wxDefaultSpan, wxEXPAND);
+                       _grid->Add (_dcp_track, wxGBPosition(_ccap_track_or_language_row, 1), wxDefaultSpan, wxEXPAND);
                        update_dcp_tracks ();
                        film_content_changed (TextContentProperty::DCP_TRACK);
                }
                if (_outline_subtitles) {
                        _outline_subtitles->Destroy ();
-                       _outline_subtitles = 0;
+                       _outline_subtitles = nullptr;
                        clear_outline_subtitles ();
                }
                break;
@@ -186,6 +213,7 @@ TextPanel::setup_visibility ()
        _grid->Layout ();
 }
 
+
 void
 TextPanel::add_to_grid ()
 {
@@ -243,14 +271,14 @@ TextPanel::add_to_grid ()
 
        {
                add_label_to_sizer (_grid, _line_spacing_label, true, wxGBPosition (r, 0));
-               wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
+               auto s = new wxBoxSizer (wxHORIZONTAL);
                s->Add (_line_spacing);
                add_label_to_sizer (s, _line_spacing_pc_label, false, 0, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL);
                _grid->Add (s, wxGBPosition (r, 1));
                ++r;
        }
 
-       _ccap_track_row = r;
+       _ccap_track_or_language_row = r;
        ++r;
 
        add_label_to_sizer (_grid, _stream_label, true, wxGBPosition (r, 0));
@@ -264,13 +292,14 @@ TextPanel::add_to_grid ()
                s->Add (_fonts_dialog_button, 1, wxALL, DCPOMATIC_SIZER_GAP);
                s->Add (_appearance_dialog_button, 1, wxALL, DCPOMATIC_SIZER_GAP);
 
-               _grid->Add (s, wxGBPosition (r, 0), wxGBSpan (1, 2));
+               _grid->Add (s, wxGBPosition(r, 0), wxGBSpan(1, 2));
                ++r;
        }
 
        setup_visibility ();
 }
 
+
 void
 TextPanel::update_dcp_track_selection ()
 {
@@ -303,6 +332,7 @@ TextPanel::update_dcp_track_selection ()
        }
 }
 
+
 void
 TextPanel::update_dcp_tracks ()
 {
@@ -325,6 +355,7 @@ TextPanel::update_dcp_tracks ()
        update_dcp_track_selection ();
 }
 
+
 void
 TextPanel::dcp_track_changed ()
 {
@@ -357,6 +388,7 @@ TextPanel::dcp_track_changed ()
        update_dcp_tracks ();
 }
 
+
 void
 TextPanel::film_changed (Film::Property property)
 {
@@ -365,6 +397,7 @@ TextPanel::film_changed (Film::Property property)
        }
 }
 
+
 void
 TextPanel::film_content_changed (int property)
 {
@@ -443,6 +476,14 @@ TextPanel::film_content_changed (int property)
                if (_dcp_track) {
                        update_dcp_track_selection ();
                }
+       } else if (property == TextContentProperty::LANGUAGE) {
+               if (_language) {
+                       _language->set (text ? text->language() : boost::none);
+               }
+       } else if (property == TextContentProperty::LANGUAGE_IS_ADDITIONAL) {
+               if (_language_type) {
+                       _language_type->SetSelection (text ? (text->language_is_additional() ? 1 : 0) : 0);
+               }
        } else if (property == DCPContentProperty::REFERENCE_TEXT) {
                if (scs) {
                        auto dcp = dynamic_pointer_cast<DCPContent> (scs);
@@ -459,6 +500,7 @@ TextPanel::film_content_changed (int property)
        }
 }
 
+
 void
 TextPanel::use_toggled ()
 {
@@ -467,6 +509,7 @@ TextPanel::use_toggled ()
        }
 }
 
+
 /** @return the text type that is currently selected in the drop-down */
 TextType
 TextPanel::current_type () const
@@ -481,6 +524,7 @@ TextPanel::current_type () const
        return TextType::UNKNOWN;
 }
 
+
 void
 TextPanel::type_changed ()
 {
@@ -491,6 +535,7 @@ TextPanel::type_changed ()
        setup_visibility ();
 }
 
+
 void
 TextPanel::burn_toggled ()
 {
@@ -499,6 +544,7 @@ TextPanel::burn_toggled ()
        }
 }
 
+
 void
 TextPanel::setup_sensitivity ()
 {
@@ -510,10 +556,10 @@ TextPanel::setup_sensitivity ()
        auto sel = _parent->selected_text ();
        for (auto i: sel) {
                /* These are the content types that could include subtitles */
-               auto fc = std::dynamic_pointer_cast<const FFmpegContent> (i);
-               auto sc = std::dynamic_pointer_cast<const StringTextFileContent> (i);
-               auto dc = std::dynamic_pointer_cast<const DCPContent> (i);
-               auto dsc = std::dynamic_pointer_cast<const DCPSubtitleContent> (i);
+               auto fc = std::dynamic_pointer_cast<const FFmpegContent>(i);
+               auto sc = std::dynamic_pointer_cast<const StringTextFileContent>(i);
+               auto dc = std::dynamic_pointer_cast<const DCPContent>(i);
+               auto dsc = std::dynamic_pointer_cast<const DCPSubtitleContent>(i);
                if (fc) {
                        if (!fc->text.empty()) {
                                ++ffmpeg_subs;
@@ -532,7 +578,7 @@ TextPanel::setup_sensitivity ()
 
        shared_ptr<DCPContent> dcp;
        if (sel.size() == 1) {
-               dcp = dynamic_pointer_cast<DCPContent> (sel.front ());
+               dcp = dynamic_pointer_cast<DCPContent>(sel.front());
        }
 
        string why_not;
@@ -547,7 +593,7 @@ TextPanel::setup_sensitivity ()
 
        bool const reference = _reference->GetValue ();
 
-       TextType const type = current_type ();
+       auto const type = current_type ();
 
        /* Set up _type */
        _type->Clear ();
@@ -589,6 +635,7 @@ TextPanel::setup_sensitivity ()
        _appearance_dialog_button->Enable (!reference && any_subs > 0 && use && type == TextType::OPEN_SUBTITLE);
 }
 
+
 void
 TextPanel::stream_changed ()
 {
@@ -601,7 +648,7 @@ TextPanel::stream_changed ()
 
        auto a = fcs->subtitle_streams ();
        auto i = a.begin ();
-       auto const s = string_client_data (_stream->GetClientObject (_stream->GetSelection ()));
+       auto const s = string_client_data (_stream->GetClientObject(_stream->GetSelection()));
        while (i != a.end() && (*i)->identifier () != s) {
                ++i;
        }
@@ -611,6 +658,7 @@ TextPanel::stream_changed ()
        }
 }
 
+
 void
 TextPanel::x_offset_changed ()
 {
@@ -619,6 +667,7 @@ TextPanel::x_offset_changed ()
        }
 }
 
+
 void
 TextPanel::y_offset_changed ()
 {
@@ -627,6 +676,7 @@ TextPanel::y_offset_changed ()
        }
 }
 
+
 void
 TextPanel::x_scale_changed ()
 {
@@ -635,6 +685,7 @@ TextPanel::x_scale_changed ()
        }
 }
 
+
 void
 TextPanel::y_scale_changed ()
 {
@@ -643,6 +694,7 @@ TextPanel::y_scale_changed ()
        }
 }
 
+
 void
 TextPanel::line_spacing_changed ()
 {
@@ -651,6 +703,7 @@ TextPanel::line_spacing_changed ()
        }
 }
 
+
 void
 TextPanel::content_selection_changed ()
 {
@@ -665,15 +718,18 @@ TextPanel::content_selection_changed ()
        film_content_changed (TextContentProperty::FONTS);
        film_content_changed (TextContentProperty::TYPE);
        film_content_changed (TextContentProperty::DCP_TRACK);
+       film_content_changed (TextContentProperty::LANGUAGE);
+       film_content_changed (TextContentProperty::LANGUAGE_IS_ADDITIONAL);
        film_content_changed (DCPContentProperty::REFERENCE_TEXT);
 }
 
+
 void
 TextPanel::text_view_clicked ()
 {
        if (_text_view) {
                _text_view->Destroy ();
-               _text_view = 0;
+               _text_view = nullptr;
        }
 
        auto c = _parent->selected_text ();
@@ -687,6 +743,7 @@ TextPanel::text_view_clicked ()
        }
 }
 
+
 void
 TextPanel::fonts_dialog_clicked ()
 {
@@ -702,6 +759,7 @@ TextPanel::fonts_dialog_clicked ()
        _fonts_dialog->Show ();
 }
 
+
 void
 TextPanel::reference_clicked ()
 {
@@ -718,6 +776,7 @@ TextPanel::reference_clicked ()
        d->set_reference_text (_original_type, _reference->GetValue ());
 }
 
+
 void
 TextPanel::appearance_dialog_clicked ()
 {
@@ -732,7 +791,6 @@ TextPanel::appearance_dialog_clicked ()
 }
 
 
-
 /** The user has clicked on the outline subtitles check box */
 void
 TextPanel::outline_subtitles_changed ()
@@ -855,3 +913,27 @@ TextPanel::analysis_finished ()
        try_to_load_analysis ();
 }
 
+
+void
+TextPanel::language_changed ()
+{
+       for (auto i: _parent->selected_text()) {
+               auto t = i->text_of_original_type(_original_type);
+               if (t) {
+                       t->set_language (_language->get());
+               }
+       }
+}
+
+
+void
+TextPanel::language_is_additional_changed ()
+{
+       for (auto i: _parent->selected_text()) {
+               auto t = i->text_of_original_type(_original_type);
+               if (t) {
+                       t->set_language_is_additional (_language_type->GetSelection() == 1);
+               }
+       }
+}
+