ea390c1bbf47002d16dac3ecdd38d190e40a4c1d
[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)
36         : TableDialog (parent, _("ISDCF name"), 2, 1, true)
37 {
38         add (_("Mastered luminance (e.g. 14fl)"), true);
39         _mastered_luminance = add (new wxTextCtrl (this, wxID_ANY));
40
41         _mastered_luminance->SetValue (std_to_wx (dm.mastered_luminance));
42
43         layout ();
44 }
45
46
47 ISDCFMetadata
48 ISDCFMetadataDialog::isdcf_metadata () const
49 {
50         ISDCFMetadata dm;
51
52         dm.mastered_luminance = wx_to_std (_mastered_luminance->GetValue ());
53
54         return dm;
55 }