Use ISDCF rather than DCI when talking about the digital cinema
[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         _content_version->SetRange (1, 1024);
57
58         _content_version->SetValue (dm.content_version);
59         _audio_language->SetValue (std_to_wx (dm.audio_language));
60         _subtitle_language->SetValue (std_to_wx (dm.subtitle_language));
61         _territory->SetValue (std_to_wx (dm.territory));
62         _rating->SetValue (std_to_wx (dm.rating));
63         _studio->SetValue (std_to_wx (dm.studio));
64         _facility->SetValue (std_to_wx (dm.facility));
65         _package_type->SetValue (std_to_wx (dm.package_type));
66
67         layout ();
68 }
69
70 ISDCFMetadata
71 ISDCFMetadataDialog::isdcf_metadata () const
72 {
73         ISDCFMetadata dm;
74
75         dm.content_version = _content_version->GetValue ();
76         dm.audio_language = wx_to_std (_audio_language->GetValue ());
77         dm.subtitle_language = wx_to_std (_subtitle_language->GetValue ());
78         dm.territory = wx_to_std (_territory->GetValue ());
79         dm.rating = wx_to_std (_rating->GetValue ());
80         dm.studio = wx_to_std (_studio->GetValue ());
81         dm.facility = wx_to_std (_facility->GetValue ());
82         dm.package_type = wx_to_std (_package_type->GetValue ());
83
84         return dm;
85 }