Use content version from Interop (or version number from SMPTE metadata)
[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 std::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 (_("Territory (e.g. UK)"), true);
39         _territory = add (new wxTextCtrl (this, wxID_ANY));
40
41         add (_("Rating (e.g. 15)"), true);
42         _rating = add (new wxTextCtrl (this, wxID_ANY));
43
44         add (_("Studio (e.g. TCF)"), true);
45         _studio = add (new wxTextCtrl (this, wxID_ANY));
46
47         add (_("Facility (e.g. DLA)"), true);
48         _facility = add (new wxTextCtrl (this, wxID_ANY));
49
50         _temp_version = add (new CheckBox(this, _("Temp version")));
51         add_spacer ();
52
53         _pre_release = add (new CheckBox(this, _("Pre-release")));
54         add_spacer ();
55
56         _red_band = add (new CheckBox(this, _("Red band")));
57         add_spacer ();
58
59         add (_("Chain"), true);
60         _chain = add (new wxTextCtrl (this, wxID_ANY));
61
62         _two_d_version_of_three_d = add (new CheckBox(this, _("2D version of content available in 3D")));
63         add_spacer ();
64
65         if (threed) {
66                 _two_d_version_of_three_d->Enable (false);
67         }
68
69         add (_("Mastered luminance (e.g. 14fl)"), true);
70         _mastered_luminance = add (new wxTextCtrl (this, wxID_ANY));
71
72         _territory->SetValue (std_to_wx (dm.territory));
73         _rating->SetValue (std_to_wx (dm.rating));
74         _studio->SetValue (std_to_wx (dm.studio));
75         _facility->SetValue (std_to_wx (dm.facility));
76         _temp_version->SetValue (dm.temp_version);
77         _pre_release->SetValue (dm.pre_release);
78         _red_band->SetValue (dm.red_band);
79         _chain->SetValue (std_to_wx (dm.chain));
80         _two_d_version_of_three_d->SetValue (dm.two_d_version_of_three_d);
81         _mastered_luminance->SetValue (std_to_wx (dm.mastered_luminance));
82
83         layout ();
84 }
85
86
87 ISDCFMetadata
88 ISDCFMetadataDialog::isdcf_metadata () const
89 {
90         ISDCFMetadata dm;
91
92         dm.territory = wx_to_std (_territory->GetValue ());
93         dm.rating = wx_to_std (_rating->GetValue ());
94         dm.studio = wx_to_std (_studio->GetValue ());
95         dm.facility = wx_to_std (_facility->GetValue ());
96         dm.temp_version = _temp_version->GetValue ();
97         dm.pre_release = _pre_release->GetValue ();
98         dm.red_band = _red_band->GetValue ();
99         dm.chain = wx_to_std (_chain->GetValue ());
100         dm.two_d_version_of_three_d = _two_d_version_of_three_d->GetValue ();
101         dm.mastered_luminance = wx_to_std (_mastered_luminance->GetValue ());
102
103         return dm;
104 }