summaryrefslogtreecommitdiff
path: root/src/wx
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-08-23 01:31:20 +0100
committerCarl Hetherington <cth@carlh.net>2018-08-23 01:31:20 +0100
commit5aa057f73c9b5d0f2a4a1479bd75dee849250265 (patch)
treecbd67a37f15f442de6f81ff29c8caca6a468901a /src/wx
parent21e926ddb62165eaf85c719545135a50e93a0e08 (diff)
Basics of selecting 'tracks' for CCAPs.
Diffstat (limited to 'src/wx')
-rw-r--r--src/wx/dcp_text_track_dialog.cc41
-rw-r--r--src/wx/dcp_text_track_dialog.h40
-rw-r--r--src/wx/text_panel.cc90
-rw-r--r--src/wx/text_panel.h4
-rw-r--r--src/wx/wscript1
5 files changed, 176 insertions, 0 deletions
diff --git a/src/wx/dcp_text_track_dialog.cc b/src/wx/dcp_text_track_dialog.cc
new file mode 100644
index 000000000..d48b3be26
--- /dev/null
+++ b/src/wx/dcp_text_track_dialog.cc
@@ -0,0 +1,41 @@
+/*
+ Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+
+ This file is part of DCP-o-matic.
+
+ DCP-o-matic is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ DCP-o-matic is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+#include "dcp_text_track_dialog.h"
+#include <boost/algorithm/string.hpp>
+
+using std::string;
+
+DCPTextTrackDialog::DCPTextTrackDialog (wxWindow* parent)
+ : TableDialog (parent, _("DCP Text Track"), 2, 1, true)
+{
+ add (_("Name"), true);
+ add (_name = new wxTextCtrl (this, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(300, -1)));
+ add (_("Language"), true);
+ add (_language = new wxTextCtrl (this, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(150, -1)));
+
+ layout ();
+}
+
+DCPTextTrack
+DCPTextTrackDialog::get () const
+{
+ return DCPTextTrack(wx_to_std(_name->GetValue()), wx_to_std(_language->GetValue()));
+}
diff --git a/src/wx/dcp_text_track_dialog.h b/src/wx/dcp_text_track_dialog.h
new file mode 100644
index 000000000..dd4894aeb
--- /dev/null
+++ b/src/wx/dcp_text_track_dialog.h
@@ -0,0 +1,40 @@
+/*
+ Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+
+ This file is part of DCP-o-matic.
+
+ DCP-o-matic is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ DCP-o-matic is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+#ifndef DCPOMATIC_DCP_TEXT_TRACK_DIALOG_H
+#define DCPOMATIC_DCP_TEXT_TRACK_DIALOG_H
+
+#include "table_dialog.h"
+#include "wx_util.h"
+#include "lib/dcp_text_track.h"
+
+class DCPTextTrackDialog : public TableDialog
+{
+public:
+ DCPTextTrackDialog (wxWindow* parent);
+
+ DCPTextTrack get () const;
+
+private:
+ wxTextCtrl* _name;
+ wxTextCtrl* _language;
+};
+
+#endif
diff --git a/src/wx/text_panel.cc b/src/wx/text_panel.cc
index 8c9ac7d64..ef604f787 100644
--- a/src/wx/text_panel.cc
+++ b/src/wx/text_panel.cc
@@ -24,6 +24,7 @@
#include "text_view.h"
#include "content_panel.h"
#include "fonts_dialog.h"
+#include "dcp_text_track_dialog.h"
#include "subtitle_appearance_dialog.h"
#include "lib/ffmpeg_content.h"
#include "lib/string_text_file_content.h"
@@ -128,6 +129,11 @@ TextPanel::TextPanel (ContentPanel* p, TextType t)
++r;
}
+ add_label_to_sizer (grid, this, _("DCP track"), true, wxGBPosition(r, 0));
+ _dcp_track = new wxChoice (this, wxID_ANY);
+ grid->Add (_dcp_track, wxGBPosition(r, 1), wxDefaultSpan, wxEXPAND);
+ ++r;
+
add_label_to_sizer (grid, this, _("Language"), true, wxGBPosition (r, 0));
_language = new wxTextCtrl (this, wxID_ANY);
grid->Add (_language, wxGBPosition (r, 1));
@@ -158,6 +164,8 @@ TextPanel::TextPanel (ContentPanel* p, TextType t)
_y_scale->SetRange (10, 1000);
_line_spacing->SetRange (10, 1000);
+ update_dcp_tracks ();
+
content_selection_changed ();
_reference->Bind (wxEVT_CHECKBOX, boost::bind (&TextPanel::reference_clicked, this));
@@ -169,6 +177,7 @@ TextPanel::TextPanel (ContentPanel* p, TextType t)
_x_scale->Bind (wxEVT_SPINCTRL, boost::bind (&TextPanel::x_scale_changed, this));
_y_scale->Bind (wxEVT_SPINCTRL, boost::bind (&TextPanel::y_scale_changed, this));
_line_spacing->Bind (wxEVT_SPINCTRL, boost::bind (&TextPanel::line_spacing_changed, this));
+ _dcp_track->Bind (wxEVT_CHOICE, boost::bind (&TextPanel::dcp_track_changed, this));
_language->Bind (wxEVT_TEXT, boost::bind (&TextPanel::language_changed, this));
_stream->Bind (wxEVT_CHOICE, boost::bind (&TextPanel::stream_changed, this));
_text_view_button->Bind (wxEVT_BUTTON, boost::bind (&TextPanel::text_view_clicked, this));
@@ -177,6 +186,83 @@ TextPanel::TextPanel (ContentPanel* p, TextType t)
}
void
+TextPanel::update_dcp_track_selection ()
+{
+ optional<DCPTextTrack> selected;
+ bool many = false;
+ BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_text()) {
+ shared_ptr<TextContent> t = i->text_of_original_type(_original_type);
+ if (t) {
+ optional<DCPTextTrack> dt = t->dcp_track();
+ if (dt && selected && *dt != *selected) {
+ many = true;
+ } else if (!selected) {
+ selected = dt;
+ }
+ }
+ }
+
+ int n = 0;
+ BOOST_FOREACH (DCPTextTrack i, _parent->film()->closed_caption_tracks()) {
+ if (!many && selected && *selected == i) {
+ _dcp_track->SetSelection (n);
+ }
+ ++n;
+ }
+
+ if (many) {
+ _dcp_track->SetSelection (wxNOT_FOUND);
+ }
+}
+
+void
+TextPanel::update_dcp_tracks ()
+{
+ _dcp_track->Clear ();
+ BOOST_FOREACH (DCPTextTrack i, _parent->film()->closed_caption_tracks()) {
+ _dcp_track->Append (std_to_wx(i.summary()));
+ }
+
+ if (_parent->film()->closed_caption_tracks().size() < 6) {
+ _dcp_track->Append (_("Add new..."));
+ }
+
+ update_dcp_track_selection ();
+}
+
+void
+TextPanel::dcp_track_changed ()
+{
+ optional<DCPTextTrack> track;
+
+ if (_dcp_track->GetSelection() == int(_dcp_track->GetCount()) - 1) {
+ DCPTextTrackDialog* d = new DCPTextTrackDialog (this);
+ if (d->ShowModal() == wxID_OK) {
+ track = d->get();
+ }
+ d->Destroy ();
+ } else {
+ /* Find the DCPTextTrack that was selected */
+ BOOST_FOREACH (DCPTextTrack i, _parent->film()->closed_caption_tracks()) {
+ if (i.summary() == wx_to_std(_dcp_track->GetStringSelection())) {
+ track = i;
+ }
+ }
+ }
+
+ if (track) {
+ BOOST_FOREACH (shared_ptr<Content> i, _parent->selected_text()) {
+ shared_ptr<TextContent> t = i->text_of_original_type(_original_type);
+ if (t && t->type() == TEXT_CLOSED_CAPTION) {
+ t->set_dcp_track(*track);
+ }
+ }
+ }
+
+ update_dcp_tracks ();
+}
+
+void
TextPanel::film_changed (Film::Property property)
{
if (property == Film::CONTENT || property == Film::REEL_TYPE) {
@@ -253,6 +339,8 @@ TextPanel::film_content_changed (int property)
checked_set (_line_spacing, text ? lrint (text->line_spacing() * 100) : 100);
} else if (property == TextContentProperty::LANGUAGE) {
checked_set (_language, text ? text->language() : "");
+ } else if (property == TextContentProperty::DCP_TRACK) {
+ update_dcp_track_selection ();
} else if (property == DCPContentProperty::REFERENCE_TEXT) {
if (scs) {
shared_ptr<DCPContent> dcp = dynamic_pointer_cast<DCPContent> (scs);
@@ -353,6 +441,7 @@ TextPanel::setup_sensitivity ()
_x_scale->Enable (!reference && any_subs > 0 && use && type == TEXT_OPEN_SUBTITLE);
_y_scale->Enable (!reference && any_subs > 0 && use && type == TEXT_OPEN_SUBTITLE);
_line_spacing->Enable (!reference && use && type == TEXT_OPEN_SUBTITLE);
+ _dcp_track->Enable (!reference && any_subs > 0 && use && type == TEXT_CLOSED_CAPTION);
_language->Enable (!reference && any_subs > 0 && use);
_stream->Enable (!reference && ffmpeg_subs == 1);
_text_view_button->Enable (!reference);
@@ -445,6 +534,7 @@ TextPanel::content_selection_changed ()
film_content_changed (TextContentProperty::LANGUAGE);
film_content_changed (TextContentProperty::FONTS);
film_content_changed (TextContentProperty::TYPE);
+ film_content_changed (TextContentProperty::DCP_TRACK);
film_content_changed (DCPContentProperty::REFERENCE_TEXT);
}
diff --git a/src/wx/text_panel.h b/src/wx/text_panel.h
index 3d3483a46..349960f8e 100644
--- a/src/wx/text_panel.h
+++ b/src/wx/text_panel.h
@@ -43,6 +43,7 @@ private:
void x_scale_changed ();
void y_scale_changed ();
void line_spacing_changed ();
+ void dcp_track_changed ();
void language_changed ();
void stream_changed ();
void text_view_clicked ();
@@ -50,6 +51,8 @@ private:
void reference_clicked ();
void appearance_dialog_clicked ();
TextType current_type () const;
+ void update_dcp_tracks ();
+ void update_dcp_track_selection ();
void setup_sensitivity ();
@@ -63,6 +66,7 @@ private:
wxSpinCtrl* _x_scale;
wxSpinCtrl* _y_scale;
wxSpinCtrl* _line_spacing;
+ wxChoice* _dcp_track;
wxTextCtrl* _language;
wxChoice* _stream;
wxButton* _text_view_button;
diff --git a/src/wx/wscript b/src/wx/wscript
index 9400b63e2..91dc4ba87 100644
--- a/src/wx/wscript
+++ b/src/wx/wscript
@@ -52,6 +52,7 @@ sources = """
email_dialog.cc
image_sequence_dialog.cc
isdcf_metadata_dialog.cc
+ dcp_text_track_dialog.cc
dir_picker_ctrl.cc
dolby_doremi_certificate_panel.cc
download_certificate_dialog.cc