Support ISDCF naming convention version 9.
[dcpomatic.git] / src / wx / isdcf_metadata_dialog.h
1 /*
2     Copyright (C) 2012-2014 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/textctrl.h>
21 #include <boost/shared_ptr.hpp>
22 #include "lib/isdcf_metadata.h"
23 #include "table_dialog.h"
24
25 class wxSpinCtrl;
26 class Film;
27
28 class ISDCFMetadataDialog : public TableDialog
29 {
30 public:
31         ISDCFMetadataDialog (wxWindow *, ISDCFMetadata);
32
33         ISDCFMetadata isdcf_metadata () const;
34
35 private:
36         wxSpinCtrl* _content_version;
37         wxTextCtrl* _audio_language;
38         wxTextCtrl* _subtitle_language;
39         wxTextCtrl* _territory;
40         wxTextCtrl* _rating;
41         wxTextCtrl* _studio;
42         wxTextCtrl* _facility;
43         wxTextCtrl* _package_type;
44         wxCheckBox* _temp_version;
45         wxCheckBox* _pre_release;
46         wxCheckBox* _red_band;
47         wxTextCtrl* _chain;
48         wxCheckBox* _two_d_version_of_three_d;
49         wxTextCtrl* _mastered_luminance;
50 };