Set up OV/VF in name according to whether DCP content has been referenced.
[dcpomatic.git] / src / wx / isdcf_metadata_dialog.cc
1 /*
2     Copyright (C) 2012-2015 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 "isdcf_metadata_dialog.h"
21 #include "wx_util.h"
22 #include "lib/film.h"
23 #include <wx/wx.h>
24 #include <wx/sizer.h>
25 #include <wx/spinctrl.h>
26
27 using boost::shared_ptr;
28
29 /** @param threed true if the film is in 3D */
30 ISDCFMetadataDialog::ISDCFMetadataDialog (wxWindow* parent, ISDCFMetadata dm, bool threed)
31         : TableDialog (parent, _("ISDCF name"), 2, true)
32 {
33         add (_("Content version"), true);
34         _content_version = add (new wxSpinCtrl (this, wxID_ANY));
35
36         add (_("Audio Language (e.g. EN)"), true);
37         _audio_language = add (new wxTextCtrl (this, wxID_ANY));
38
39         add (_("Subtitle Language (e.g. FR)"), true);
40         _subtitle_language = add (new wxTextCtrl (this, wxID_ANY));
41
42         add (_("Territory (e.g. UK)"), true);
43         _territory = add (new wxTextCtrl (this, wxID_ANY));
44
45         add (_("Rating (e.g. 15)"), true);
46         _rating = add (new wxTextCtrl (this, wxID_ANY));
47
48         add (_("Studio (e.g. TCF)"), true);
49         _studio = add (new wxTextCtrl (this, wxID_ANY));
50
51         add (_("Facility (e.g. DLA)"), true);
52         _facility = add (new wxTextCtrl (this, wxID_ANY));
53
54         _temp_version = add (new wxCheckBox (this, wxID_ANY, _("Temp version")));
55         add_spacer ();
56
57         _pre_release = add (new wxCheckBox (this, wxID_ANY, _("Pre-release")));
58         add_spacer ();
59
60         _red_band = add (new wxCheckBox (this, wxID_ANY, _("Red band")));
61         add_spacer ();
62
63         add (_("Chain"), true);
64         _chain = add (new wxTextCtrl (this, wxID_ANY));
65
66         _two_d_version_of_three_d = add (new wxCheckBox (this, wxID_ANY, _("2D version of content available in 3D")));
67         add_spacer ();
68
69         if (threed) {
70                 _two_d_version_of_three_d->Enable (false);
71         }
72
73         add (_("Mastered luminance (e.g. 14fl)"), true);
74         _mastered_luminance = add (new wxTextCtrl (this, wxID_ANY));
75
76         _content_version->SetRange (1, 1024);
77
78         _content_version->SetValue (dm.content_version);
79         _audio_language->SetValue (std_to_wx (dm.audio_language));
80         _subtitle_language->SetValue (std_to_wx (dm.subtitle_language));
81         _territory->SetValue (std_to_wx (dm.territory));
82         _rating->SetValue (std_to_wx (dm.rating));
83         _studio->SetValue (std_to_wx (dm.studio));
84         _facility->SetValue (std_to_wx (dm.facility));
85         _temp_version->SetValue (dm.temp_version);
86         _pre_release->SetValue (dm.pre_release);
87         _red_band->SetValue (dm.red_band);
88         _chain->SetValue (std_to_wx (dm.chain));
89         _two_d_version_of_three_d->SetValue (dm.two_d_version_of_three_d);
90         _mastered_luminance->SetValue (std_to_wx (dm.mastered_luminance));
91
92         layout ();
93 }
94
95 ISDCFMetadata
96 ISDCFMetadataDialog::isdcf_metadata () const
97 {
98         ISDCFMetadata dm;
99
100         dm.content_version = _content_version->GetValue ();
101         dm.audio_language = wx_to_std (_audio_language->GetValue ());
102         dm.subtitle_language = wx_to_std (_subtitle_language->GetValue ());
103         dm.territory = wx_to_std (_territory->GetValue ());
104         dm.rating = wx_to_std (_rating->GetValue ());
105         dm.studio = wx_to_std (_studio->GetValue ());
106         dm.facility = wx_to_std (_facility->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 }