Restore ISDCF subtitle language option as an override (#1536).
[dcpomatic.git] / src / wx / isdcf_metadata_dialog.cc
1 /*
2     Copyright (C) 2012-2019 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 "isdcf_metadata_dialog.h"
22 #include "wx_util.h"
23 #include "check_box.h"
24 #include "lib/film.h"
25 #include <wx/wx.h>
26 #include <wx/sizer.h>
27 #include <wx/spinctrl.h>
28
29 using boost::shared_ptr;
30
31 /** @param parent Parent window.
32  *  @param dm Initial ISDCF metadata.
33  *  @param threed true if the film is in 3D.
34  */
35 ISDCFMetadataDialog::ISDCFMetadataDialog (wxWindow* parent, ISDCFMetadata dm, bool threed)
36         : TableDialog (parent, _("ISDCF name"), 2, 1, true)
37 {
38         add (_("Content version"), true);
39         _content_version = add (new wxSpinCtrl (this, wxID_ANY));
40
41         add (_("Audio Language (e.g. EN)"), true);
42         _audio_language = add (new wxTextCtrl (this, wxID_ANY));
43
44         _enable_subtitle_language = add (new wxCheckBox(this, wxID_ANY, _("Subtitle language (e.g. FR)")));
45         _subtitle_language = add (new wxTextCtrl(this, wxID_ANY));
46
47         wxStaticText* subtitle_note = add (_("(use this to override languages specified\nin the 'timed text' tab)"), false);
48         wxFont font = subtitle_note->GetFont();
49         font.SetStyle (wxFONTSTYLE_ITALIC);
50         font.SetPointSize (font.GetPointSize() - 1);
51         subtitle_note->SetFont (font);
52         add_spacer ();
53
54         add (_("Territory (e.g. UK)"), true);
55         _territory = add (new wxTextCtrl (this, wxID_ANY));
56
57         add (_("Rating (e.g. 15)"), true);
58         _rating = add (new wxTextCtrl (this, wxID_ANY));
59
60         add (_("Studio (e.g. TCF)"), true);
61         _studio = add (new wxTextCtrl (this, wxID_ANY));
62
63         add (_("Facility (e.g. DLA)"), true);
64         _facility = add (new wxTextCtrl (this, wxID_ANY));
65
66         _temp_version = add (new CheckBox(this, _("Temp version")));
67         add_spacer ();
68
69         _pre_release = add (new CheckBox(this, _("Pre-release")));
70         add_spacer ();
71
72         _red_band = add (new CheckBox(this, _("Red band")));
73         add_spacer ();
74
75         add (_("Chain"), true);
76         _chain = add (new wxTextCtrl (this, wxID_ANY));
77
78         _two_d_version_of_three_d = add (new CheckBox(this, _("2D version of content available in 3D")));
79         add_spacer ();
80
81         if (threed) {
82                 _two_d_version_of_three_d->Enable (false);
83         }
84
85         add (_("Mastered luminance (e.g. 14fl)"), true);
86         _mastered_luminance = add (new wxTextCtrl (this, wxID_ANY));
87
88         _content_version->SetRange (1, 1024);
89
90         _content_version->SetValue (dm.content_version);
91         _audio_language->SetValue (std_to_wx (dm.audio_language));
92         _enable_subtitle_language->SetValue (static_cast<bool>(dm.subtitle_language));
93         _subtitle_language->SetValue (std_to_wx(dm.subtitle_language.get_value_or("")));
94         _territory->SetValue (std_to_wx (dm.territory));
95         _rating->SetValue (std_to_wx (dm.rating));
96         _studio->SetValue (std_to_wx (dm.studio));
97         _facility->SetValue (std_to_wx (dm.facility));
98         _temp_version->SetValue (dm.temp_version);
99         _pre_release->SetValue (dm.pre_release);
100         _red_band->SetValue (dm.red_band);
101         _chain->SetValue (std_to_wx (dm.chain));
102         _two_d_version_of_three_d->SetValue (dm.two_d_version_of_three_d);
103         _mastered_luminance->SetValue (std_to_wx (dm.mastered_luminance));
104
105         _enable_subtitle_language->Bind (wxEVT_CHECKBOX, boost::bind(&ISDCFMetadataDialog::setup_sensitivity, this));
106
107         setup_sensitivity ();
108
109         layout ();
110 }
111
112 void
113 ISDCFMetadataDialog::setup_sensitivity ()
114 {
115         _subtitle_language->Enable (_enable_subtitle_language->GetValue());
116 }
117
118 ISDCFMetadata
119 ISDCFMetadataDialog::isdcf_metadata () const
120 {
121         ISDCFMetadata dm;
122
123         dm.content_version = _content_version->GetValue ();
124         dm.audio_language = wx_to_std (_audio_language->GetValue ());
125         if (_enable_subtitle_language->GetValue()) {
126                 dm.subtitle_language = wx_to_std (_subtitle_language->GetValue());
127         }
128         dm.territory = wx_to_std (_territory->GetValue ());
129         dm.rating = wx_to_std (_rating->GetValue ());
130         dm.studio = wx_to_std (_studio->GetValue ());
131         dm.facility = wx_to_std (_facility->GetValue ());
132         dm.temp_version = _temp_version->GetValue ();
133         dm.pre_release = _pre_release->GetValue ();
134         dm.red_band = _red_band->GetValue ();
135         dm.chain = wx_to_std (_chain->GetValue ());
136         dm.two_d_version_of_three_d = _two_d_version_of_three_d->GetValue ();
137         dm.mastered_luminance = wx_to_std (_mastered_luminance->GetValue ());
138
139         return dm;
140 }