Support ISDCF naming convention version 9.
[dcpomatic.git] / src / wx / isdcf_metadata_dialog.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <wx/wx.h>
21 #include <wx/sizer.h>
22 #include <wx/spinctrl.h>
23 #include "lib/film.h"
24 #include "isdcf_metadata_dialog.h"
25 #include "wx_util.h"
26
27 using boost::shared_ptr;
28
29 ISDCFMetadataDialog::ISDCFMetadataDialog (wxWindow* parent, ISDCFMetadata dm)
30         : TableDialog (parent, _("ISDCF name"), 2, true)
31 {
32         add (_("Content version"), true);
33         _content_version = add (new wxSpinCtrl (this, wxID_ANY));
34
35         add (_("Audio Language (e.g. EN)"), true);
36         _audio_language = add (new wxTextCtrl (this, wxID_ANY));
37
38         add (_("Subtitle Language (e.g. FR)"), true);
39         _subtitle_language = add (new wxTextCtrl (this, wxID_ANY));
40         
41         add (_("Territory (e.g. UK)"), true);
42         _territory = add (new wxTextCtrl (this, wxID_ANY));
43
44         add (_("Rating (e.g. 15)"), true);
45         _rating = add (new wxTextCtrl (this, wxID_ANY));
46
47         add (_("Studio (e.g. TCF)"), true);
48         _studio = add (new wxTextCtrl (this, wxID_ANY));
49
50         add (_("Facility (e.g. DLA)"), true);
51         _facility = add (new wxTextCtrl (this, wxID_ANY));
52
53         add (_("Package Type (e.g. OV)"), true);
54         _package_type = add (new wxTextCtrl (this, wxID_ANY));
55
56         _temp_version = add (new wxCheckBox (this, wxID_ANY, _("Temp version")));
57         add_spacer ();
58
59         _pre_release = add (new wxCheckBox (this, wxID_ANY, _("Pre-release")));
60         add_spacer ();
61
62         _red_band = add (new wxCheckBox (this, wxID_ANY, _("Red band")));
63         add_spacer ();
64
65         add (_("Chain"), true);
66         _chain = add (new wxTextCtrl (this, wxID_ANY));
67
68         _two_d_version_of_three_d = add (new wxCheckBox (this, wxID_ANY, _("2D version of content available in 3D")));
69         add_spacer ();
70
71         add (_("Mastered luminance (e.g. 4fl)"), true);
72         _mastered_luminance = add (new wxTextCtrl (this, wxID_ANY));
73         
74         _content_version->SetRange (1, 1024);
75
76         _content_version->SetValue (dm.content_version);
77         _audio_language->SetValue (std_to_wx (dm.audio_language));
78         _subtitle_language->SetValue (std_to_wx (dm.subtitle_language));
79         _territory->SetValue (std_to_wx (dm.territory));
80         _rating->SetValue (std_to_wx (dm.rating));
81         _studio->SetValue (std_to_wx (dm.studio));
82         _facility->SetValue (std_to_wx (dm.facility));
83         _package_type->SetValue (std_to_wx (dm.package_type));
84         _temp_version->SetValue (dm.temp_version);
85         _pre_release->SetValue (dm.pre_release);
86         _red_band->SetValue (dm.red_band);
87         _chain->SetValue (std_to_wx (dm.chain));
88         _two_d_version_of_three_d->SetValue (dm.two_d_version_of_three_d);
89         _mastered_luminance->SetValue (std_to_wx (dm.mastered_luminance));
90
91         layout ();
92 }
93
94 ISDCFMetadata
95 ISDCFMetadataDialog::isdcf_metadata () const
96 {
97         ISDCFMetadata dm;
98
99         dm.content_version = _content_version->GetValue ();
100         dm.audio_language = wx_to_std (_audio_language->GetValue ());
101         dm.subtitle_language = wx_to_std (_subtitle_language->GetValue ());
102         dm.territory = wx_to_std (_territory->GetValue ());
103         dm.rating = wx_to_std (_rating->GetValue ());
104         dm.studio = wx_to_std (_studio->GetValue ());
105         dm.facility = wx_to_std (_facility->GetValue ());
106         dm.package_type = wx_to_std (_package_type->GetValue ());
107         dm.temp_version = _temp_version->GetValue ();
108         dm.pre_release = _pre_release->GetValue ();
109         dm.red_band = _red_band->GetValue ();
110         dm.chain = wx_to_std (_chain->GetValue ());
111         dm.two_d_version_of_three_d = _two_d_version_of_three_d->GetValue ();
112         dm.mastered_luminance = wx_to_std (_mastered_luminance->GetValue ());
113
114         return dm;
115 }