Supporters update.
[dcpomatic.git] / src / wx / smpte_metadata_dialog.h
1 /*
2     Copyright (C) 2019-2021 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
22 #include "editable_list.h"
23 #include "full_language_tag_dialog.h"
24 #include "metadata_dialog.h"
25 #include "lib/film_property.h"
26 #include <dcp/language_tag.h>
27 #include <dcp/types.h>
28 #include <dcp/warnings.h>
29 LIBDCP_DISABLE_WARNINGS
30 #include <wx/wx.h>
31 LIBDCP_ENABLE_WARNINGS
32 #include <vector>
33
34
35 class ContentVersionDialog;
36 class Film;
37 class LanguageTagDialog;
38 class LanguageTagWidget;
39
40
41 class SMPTEMetadataDialog : public MetadataDialog
42 {
43 public:
44         SMPTEMetadataDialog (wxWindow* parent, std::weak_ptr<Film> film);
45
46         void setup () override;
47
48 private:
49         void setup_standard (wxPanel* parent, wxSizer* sizer) override;
50         void setup_advanced (wxPanel* parent, wxSizer* sizer) override;
51         void film_changed(ChangeType type, FilmProperty property) override;
52         void setup_sensitivity () override;
53
54         std::vector<std::string> content_versions () const;
55         void set_content_versions (std::vector<std::string> v);
56         void name_language_changed (dcp::LanguageTag tag);
57         void version_number_changed ();
58         void status_changed ();
59         void distributor_changed ();
60         void enable_distributor_changed ();
61
62         LanguageTagWidget* _name_language;
63         wxSpinCtrl* _version_number;
64         wxChoice* _status;
65         CheckBox* _enable_distributor;
66         wxTextCtrl* _distributor;
67         EditableList<std::string, ContentVersionDialog>* _content_versions;
68 };