macOS / new boost build fixes.
[dcpomatic.git] / src / wx / interop_metadata_dialog.cc
1 /*
2     Copyright (C) 2019 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 "interop_metadata_dialog.h"
22 #include "editable_list.h"
23 #include "rating_dialog.h"
24 #include "lib/film.h"
25 #include <dcp/types.h>
26 #include <wx/gbsizer.h>
27
28 using std::string;
29 using std::vector;
30 using boost::weak_ptr;
31 using boost::shared_ptr;
32 #if BOOST_VERSION >= 106100
33 using namespace boost::placeholders;
34 #endif
35
36
37 static string
38 column (dcp::Rating r, int c)
39 {
40         if (c == 0) {
41                 return r.agency;
42         }
43
44         return r.label;
45 }
46
47 InteropMetadataDialog::InteropMetadataDialog (wxWindow* parent, weak_ptr<Film> film)
48         : wxDialog (parent, wxID_ANY, _("Metadata"))
49         , _film (film)
50 {
51         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
52         SetSizer (overall_sizer);
53
54         wxFlexGridSizer* sizer = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
55         sizer->AddGrowableCol (1, 1);
56
57         {
58                 int flags = wxALIGN_TOP | wxLEFT | wxRIGHT | wxTOP;
59 #ifdef __WXOSX__
60                 flags |= wxALIGN_RIGHT;
61 #endif
62                 wxStaticText* m = create_label (this, _("Ratings"), true);
63                 sizer->Add (m, 0, flags, DCPOMATIC_SIZER_GAP);
64         }
65
66         vector<EditableListColumn> columns;
67         columns.push_back (EditableListColumn(_("Agency"), 200, true));
68         columns.push_back (EditableListColumn(_("Label"), 50, true));
69         _ratings = new EditableList<dcp::Rating, RatingDialog> (
70                 this,
71                 columns,
72                 boost::bind(&InteropMetadataDialog::ratings, this),
73                 boost::bind(&InteropMetadataDialog::set_ratings, this, _1),
74                 boost::bind(&column, _1, _2),
75                 true,
76                 false
77                 );
78         sizer->Add (_ratings, 1, wxEXPAND);
79
80         add_label_to_sizer (sizer, this, _("Content version"), true);
81         _content_version = new wxTextCtrl (this, wxID_ANY);
82         sizer->Add (_content_version, 1, wxEXPAND);
83
84         shared_ptr<Film> f = _film.lock();
85         DCPOMATIC_ASSERT (f);
86         vector<string> cv = f->content_versions();
87         _content_version->SetValue (std_to_wx(cv.empty() ? "" : cv[0]));
88
89         overall_sizer->Add (sizer, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
90
91         wxSizer* buttons = CreateSeparatedButtonSizer (wxCLOSE);
92         if (buttons) {
93                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
94         }
95
96         overall_sizer->Layout ();
97         overall_sizer->SetSizeHints (this);
98
99         _content_version->Bind (wxEVT_TEXT, boost::bind(&InteropMetadataDialog::content_version_changed, this));
100         _content_version->SetFocus ();
101 }
102
103 vector<dcp::Rating>
104 InteropMetadataDialog::ratings () const
105 {
106         shared_ptr<Film> film = _film.lock ();
107         DCPOMATIC_ASSERT (film);
108         return film->ratings ();
109 }
110
111 void
112 InteropMetadataDialog::set_ratings (vector<dcp::Rating> r)
113 {
114         shared_ptr<Film> film = _film.lock ();
115         DCPOMATIC_ASSERT (film);
116         film->set_ratings (r);
117 }
118
119 void
120 InteropMetadataDialog::content_version_changed ()
121 {
122         shared_ptr<Film> film = _film.lock ();
123         DCPOMATIC_ASSERT (film);
124         vector<string> cv;
125         cv.push_back (wx_to_std(_content_version->GetValue()));
126         film->set_content_versions (cv);
127 }