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