Support CPL metadata.
[dcpomatic.git] / src / wx / smpte_metadata_dialog.h
1 /*
2     Copyright (C) 2019-2020 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 "editable_list.h"
22 #include "lib/film.h"
23 #include <dcp/types.h>
24 #include <wx/wx.h>
25 #include <boost/shared_ptr.hpp>
26 #include <boost/weak_ptr.hpp>
27 #include <vector>
28
29
30 class Film;
31 class RatingDialog;
32 class ContentVersionDialog;
33
34
35 class SMPTEMetadataDialog : public wxDialog
36 {
37 public:
38         SMPTEMetadataDialog (wxWindow* parent, boost::weak_ptr<Film> film);
39
40 private:
41         std::vector<dcp::Rating> ratings () const;
42         void set_ratings (std::vector<dcp::Rating> r);
43         std::vector<std::string> content_versions () const;
44         void set_content_versions (std::vector<std::string> v);
45         void edit_name_language ();
46         void edit_release_territory ();
47         void version_number_changed ();
48         void status_changed ();
49         void chain_changed ();
50         void distributor_changed ();
51         void facility_changed ();
52         void luminance_changed ();
53         void film_changed (ChangeType type, Film::Property property);
54         boost::shared_ptr<Film> film () const;
55
56         boost::weak_ptr<Film> _film;
57         wxStaticText* _name_language;
58         wxStaticText* _release_territory;
59         wxSpinCtrl* _version_number;
60         wxChoice* _status;
61         wxTextCtrl* _chain;
62         wxTextCtrl* _distributor;
63         wxTextCtrl* _facility;
64         wxSpinCtrlDouble* _luminance_value;
65         wxChoice* _luminance_unit;
66         EditableList<dcp::Rating, RatingDialog>* _ratings;
67         EditableList<std::string, ContentVersionDialog>* _content_versions;
68
69         boost::signals2::scoped_connection _film_changed_connection;
70 };