C++11 tidying.
[dcpomatic.git] / src / wx / interop_metadata_dialog.cc
1 /*
2     Copyright (C) 2020-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 "interop_metadata_dialog.h"
24 #include "language_tag_widget.h"
25 #include "rating_dialog.h"
26 #include "lib/film.h"
27 #include <dcp/types.h>
28 #include <wx/gbsizer.h>
29
30
31 using std::string;
32 using std::vector;
33 using std::weak_ptr;
34 using std::shared_ptr;
35 #if BOOST_VERSION >= 106100
36 using namespace boost::placeholders;
37 #endif
38
39
40 InteropMetadataDialog::InteropMetadataDialog (wxWindow* parent, weak_ptr<Film> film)
41         : MetadataDialog (parent, film)
42 {
43
44 }
45
46 void
47 InteropMetadataDialog::setup_standard (wxPanel* panel, wxSizer* sizer)
48 {
49         MetadataDialog::setup_standard (panel, sizer);
50
51         {
52                 int flags = wxALIGN_TOP | wxLEFT | wxRIGHT | wxTOP;
53 #ifdef __WXOSX__
54                 flags |= wxALIGN_RIGHT;
55 #endif
56                 auto m = create_label (panel, _("Ratings"), true);
57                 sizer->Add (m, 0, flags, DCPOMATIC_SIZER_GAP);
58         }
59
60         vector<EditableListColumn> columns;
61         columns.push_back (EditableListColumn(_("Agency"), 200, true));
62         columns.push_back (EditableListColumn(_("Label"), 50, true));
63         _ratings = new EditableList<dcp::Rating, RatingDialog> (
64                 panel,
65                 columns,
66                 boost::bind(&InteropMetadataDialog::ratings, this),
67                 boost::bind(&InteropMetadataDialog::set_ratings, this, _1),
68                 [](dcp::Rating r, int c) {
69                         if (c == 0) {
70                                 return r.agency;
71                         }
72                         return r.label;
73                 },
74                 true,
75                 false
76                 );
77         sizer->Add (_ratings, 1, wxEXPAND);
78
79         add_label_to_sizer (sizer, panel, _("Content version"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL);
80         _content_version = new wxTextCtrl (panel, wxID_ANY);
81         sizer->Add (_content_version, 1, wxEXPAND);
82
83         auto cv = film()->content_versions();
84         _content_version->SetValue (std_to_wx(cv.empty() ? "" : cv[0]));
85
86         _content_version->Bind (wxEVT_TEXT, boost::bind(&InteropMetadataDialog::content_version_changed, this));
87         _content_version->SetFocus ();
88 }
89
90
91 vector<dcp::Rating>
92 InteropMetadataDialog::ratings () const
93 {
94         return film()->ratings ();
95 }
96
97
98 void
99 InteropMetadataDialog::set_ratings (vector<dcp::Rating> r)
100 {
101         film()->set_ratings (r);
102 }
103
104
105 void
106 InteropMetadataDialog::content_version_changed ()
107 {
108         film()->set_content_versions ({ wx_to_std(_content_version->GetValue()) });
109 }