Use studio and facility from Interop/SMPTE metadata rather than ISDCF.
[dcpomatic.git] / src / wx / metadata_dialog.cc
1 /*
2     Copyright (C) 2021 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
22 #include "dcpomatic_button.h"
23 #include "full_language_tag_dialog.h"
24 #include "metadata_dialog.h"
25 #include "wx_util.h"
26 #include "lib/film.h"
27 #include <boost/bind.hpp>
28 #include <boost/weak_ptr.hpp>
29 #include <wx/notebook.h>
30 #include <wx/wx.h>
31
32
33 using std::weak_ptr;
34
35
36 MetadataDialog::MetadataDialog (wxWindow* parent, weak_ptr<Film> weak_film)
37         : wxDialog (parent, wxID_ANY, _("Metadata"))
38         , WeakFilm (weak_film)
39 {
40
41 }
42
43
44 void
45 MetadataDialog::setup ()
46 {
47         auto notebook = new wxNotebook (this, wxID_ANY);
48
49         auto prepare = [notebook](std::function<void (wxPanel*, wxSizer*)> setup, wxString name) {
50                 auto panel = new wxPanel (notebook, wxID_ANY);
51                 auto sizer = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
52                 sizer->AddGrowableCol (1, 1);
53                 setup (panel, sizer);
54                 auto overall_sizer = new wxBoxSizer (wxVERTICAL);
55                 overall_sizer->Add (sizer, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
56                 panel->SetSizer (overall_sizer);
57                 notebook->AddPage (panel, name);
58         };
59
60         prepare (boost::bind(&MetadataDialog::setup_standard, this, _1, _2), _("Standard"));
61         prepare (boost::bind(&MetadataDialog::setup_advanced, this, _1, _2), _("Advanced"));
62
63         auto overall_sizer = new wxBoxSizer (wxVERTICAL);
64         overall_sizer->Add (notebook, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
65
66         auto buttons = CreateSeparatedButtonSizer (wxCLOSE);
67         if (buttons) {
68                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
69         }
70
71         SetSizer (overall_sizer);
72         overall_sizer->Layout ();
73         overall_sizer->SetSizeHints (this);
74
75         _enable_facility->Bind (wxEVT_CHECKBOX, boost::bind(&MetadataDialog::enable_facility_changed, this));
76         _facility->Bind (wxEVT_TEXT, boost::bind(&MetadataDialog::facility_changed, this));
77         _enable_studio->Bind (wxEVT_CHECKBOX, boost::bind(&MetadataDialog::enable_studio_changed, this));
78         _studio->Bind (wxEVT_TEXT, boost::bind(&MetadataDialog::studio_changed, this));
79
80         _film_changed_connection = film()->Change.connect(boost::bind(&MetadataDialog::film_changed, this, _1, _2));
81
82         film_changed (ChangeType::DONE, Film::Property::RELEASE_TERRITORY);
83         film_changed (ChangeType::DONE, Film::Property::FACILITY);
84         film_changed (ChangeType::DONE, Film::Property::STUDIO);
85
86         setup_sensitivity ();
87 }
88
89
90 void
91 MetadataDialog::film_changed (ChangeType type, Film::Property property)
92 {
93         if (type != ChangeType::DONE) {
94                 return;
95         }
96
97         if (property == Film::Property::RELEASE_TERRITORY) {
98                 auto rt = film()->release_territory();
99                 checked_set (_enable_release_territory, static_cast<bool>(rt));
100                 if (rt) {
101                         _release_territory = *rt;
102                         checked_set (_release_territory_text, std_to_wx(*dcp::LanguageTag::get_subtag_description(*_release_territory)));
103                 }
104         } else if (property == Film::Property::FACILITY) {
105                 checked_set (_enable_facility, static_cast<bool>(film()->facility()));
106                 if (film()->facility()) {
107                         checked_set (_facility, *film()->facility());
108                 }
109         } else if (property == Film::Property::STUDIO) {
110                 checked_set (_enable_studio, static_cast<bool>(film()->studio()));
111                 if (film()->studio()) {
112                         checked_set (_studio, *film()->studio());
113                 }
114         }
115 }
116
117
118 void
119 MetadataDialog::setup_standard (wxPanel* panel, wxSizer* sizer)
120 {
121         _enable_release_territory = new wxCheckBox (panel, wxID_ANY, _("Release territory"));
122         sizer->Add (_enable_release_territory, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_GAP);
123         {
124                 auto s = new wxBoxSizer (wxHORIZONTAL);
125                 _release_territory_text = new wxStaticText (panel, wxID_ANY, wxT(""));
126                 s->Add (_release_territory_text, 1, wxLEFT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP);
127                 _edit_release_territory = new Button (panel, _("Edit..."));
128                 s->Add (_edit_release_territory, 0, wxLEFT, DCPOMATIC_SIZER_GAP);
129                 sizer->Add (s, 0, wxEXPAND);
130         }
131
132         _edit_release_territory->Bind (wxEVT_BUTTON, boost::bind(&MetadataDialog::edit_release_territory, this));
133         _enable_release_territory->Bind (wxEVT_CHECKBOX, boost::bind(&MetadataDialog::enable_release_territory_changed, this));
134 }
135
136
137 void
138 MetadataDialog::edit_release_territory ()
139 {
140         DCPOMATIC_ASSERT (film()->release_territory());
141         auto d = new RegionSubtagDialog(this, *film()->release_territory());
142         d->ShowModal ();
143         auto tag = d->get();
144         if (tag) {
145                 _release_territory = *tag;
146                 film()->set_release_territory(*tag);
147         }
148         d->Destroy ();
149 }
150
151
152 void
153 MetadataDialog::setup_sensitivity ()
154 {
155         auto const enabled = _enable_release_territory->GetValue();
156         _release_territory_text->Enable (enabled);
157         _edit_release_territory->Enable (enabled);
158         _facility->Enable (_enable_facility->GetValue());
159         _studio->Enable (_enable_studio->GetValue());
160 }
161
162
163 void
164 MetadataDialog::enable_release_territory_changed ()
165 {
166         setup_sensitivity ();
167         if (_enable_release_territory->GetValue()) {
168                 film()->set_release_territory (_release_territory.get_value_or(dcp::LanguageTag::RegionSubtag("US")));
169         } else {
170                 film()->set_release_territory ();
171         }
172 }
173
174
175 void
176 MetadataDialog::setup_advanced (wxPanel* panel, wxSizer* sizer)
177 {
178         _enable_facility = new wxCheckBox (panel, wxID_ANY, _("Facility"));
179         sizer->Add (_enable_facility, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL);
180         _facility = new wxTextCtrl (panel, wxID_ANY);
181         sizer->Add (_facility, 1, wxEXPAND);
182
183         _enable_studio = new wxCheckBox (panel, wxID_ANY, _("Studio"));
184         sizer->Add (_enable_studio, 0, wxRIGHT | wxALIGN_CENTER_VERTICAL);
185         _studio = new wxTextCtrl (panel, wxID_ANY);
186         sizer->Add (_studio, 1, wxEXPAND);
187 }
188
189
190 void
191 MetadataDialog::facility_changed ()
192 {
193         film()->set_facility (wx_to_std(_facility->GetValue()));
194 }
195
196
197 void
198 MetadataDialog::enable_facility_changed ()
199 {
200         setup_sensitivity ();
201         if (_enable_facility->GetValue()) {
202                 film()->set_facility (wx_to_std(_facility->GetValue()));
203         } else {
204                 film()->set_facility ();
205         }
206 }
207
208
209 void
210 MetadataDialog::studio_changed ()
211 {
212         film()->set_studio (wx_to_std(_studio->GetValue()));
213 }
214
215
216 void
217 MetadataDialog::enable_studio_changed ()
218 {
219         setup_sensitivity ();
220         if (_enable_studio->GetValue()) {
221                 film()->set_studio (wx_to_std(_studio->GetValue()));
222         } else {
223                 film()->set_studio ();
224         }
225 }
226
227