Fix alignment.
[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 <wx/wx.h>
30 #include <vector>
31
32
33 class Film;
34 class RatingDialog;
35 class ContentVersionDialog;
36 class LanguageTagWidget;
37 class LanguageTagDialog;
38
39
40 class SMPTEMetadataDialog : public MetadataDialog
41 {
42 public:
43         SMPTEMetadataDialog (wxWindow* parent, std::weak_ptr<Film> film);
44
45         void setup () override;
46
47 private:
48         void setup_standard (wxPanel* parent, wxSizer* sizer) override;
49         void setup_advanced (wxPanel* parent, wxSizer* sizer) override;
50         void film_changed (ChangeType type, Film::Property property) override;
51         void setup_sensitivity () override;
52
53         std::vector<dcp::Rating> ratings () const;
54         void set_ratings (std::vector<dcp::Rating> r);
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         wxCheckBox* _enable_distributor;
67         wxTextCtrl* _distributor;
68         EditableList<dcp::Rating, RatingDialog>* _ratings;
69         EditableList<std::string, ContentVersionDialog>* _content_versions;
70 };