Cleanup: replace some list with vector.
[dcpomatic.git] / src / wx / cinema_dialog.cc
1 /*
2     Copyright (C) 2012-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 "cinema_dialog.h"
23 #include "wx_util.h"
24 #include "lib/dcpomatic_assert.h"
25 #include "lib/util.h"
26
27
28 using std::back_inserter;
29 using std::copy;
30 using std::cout;
31 using std::string;
32 using std::vector;
33 using boost::bind;
34 #if BOOST_VERSION >= 106100
35 using namespace boost::placeholders;
36 #endif
37
38
39 CinemaDialog::CinemaDialog(wxWindow* parent, wxString title, string name, vector<string> emails, string notes, int utc_offset_hour, int utc_offset_minute)
40         : wxDialog (parent, wxID_ANY, title)
41 {
42         auto overall_sizer = new wxBoxSizer (wxVERTICAL);
43         SetSizer (overall_sizer);
44
45         auto sizer = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
46         int r = 0;
47
48         add_label_to_sizer (sizer, this, _("Name"), true, wxGBPosition(r, 0));
49         _name = new wxTextCtrl (this, wxID_ANY, std_to_wx(name), wxDefaultPosition, wxSize(500, -1));
50         sizer->Add (_name, wxGBPosition(r, 1));
51         ++r;
52
53         add_label_to_sizer (sizer, this, _("UTC offset (time zone)"), true, wxGBPosition(r, 0));
54         _utc_offset = new wxChoice (this, wxID_ANY);
55         sizer->Add (_utc_offset, wxGBPosition(r, 1));
56         ++r;
57
58         add_label_to_sizer (sizer, this, _("Notes"), true, wxGBPosition(r, 0));
59         _notes = new wxTextCtrl (this, wxID_ANY, std_to_wx(notes), wxDefaultPosition, wxSize(500, -1));
60         sizer->Add (_notes, wxGBPosition(r, 1));
61         ++r;
62
63         add_label_to_sizer (sizer, this, _("Email addresses for KDM delivery"), false, wxGBPosition(r, 0), wxGBSpan(1, 2));
64         ++r;
65
66         copy (emails.begin(), emails.end(), back_inserter (_emails));
67
68         vector<EditableListColumn> columns;
69         columns.push_back (EditableListColumn(_("Address"), 500, true));
70         _email_list = new EditableList<string, EmailDialog> (
71                 this, columns, bind(&CinemaDialog::emails, this), bind (&CinemaDialog::set_emails, this, _1), [](string s, int) {
72                         return s;
73                 }, EditableListTitle::INVISIBLE, EditableListButton::NEW | EditableListButton::EDIT | EditableListButton::REMOVE
74                 );
75
76         sizer->Add (_email_list, wxGBPosition(r, 0), wxGBSpan(1, 2), wxEXPAND);
77         ++r;
78
79         overall_sizer->Add (sizer, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
80
81         auto buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
82         if (buttons) {
83                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
84         }
85
86         /* Default to UTC */
87         size_t sel = get_offsets (_offsets);
88         for (size_t i = 0; i < _offsets.size(); ++i) {
89                 _utc_offset->Append (_offsets[i].name);
90                 if (_offsets[i].hour == utc_offset_hour && _offsets[i].minute == utc_offset_minute) {
91                         sel = i;
92                 }
93         }
94
95         _utc_offset->SetSelection (sel);
96
97         overall_sizer->Layout ();
98         overall_sizer->SetSizeHints (this);
99
100         _name->SetFocus ();
101 }
102
103
104 string
105 CinemaDialog::name () const
106 {
107         return wx_to_std (_name->GetValue());
108 }
109
110
111 void
112 CinemaDialog::set_emails (vector<string> e)
113 {
114         _emails = e;
115 }
116
117
118 vector<string>
119 CinemaDialog::emails() const
120 {
121         return _emails;
122 }
123
124
125 int
126 CinemaDialog::utc_offset_hour () const
127 {
128         int const sel = _utc_offset->GetSelection();
129         if (sel < 0 || sel > int(_offsets.size())) {
130                 return 0;
131         }
132
133         return _offsets[sel].hour;
134 }
135
136
137 int
138 CinemaDialog::utc_offset_minute () const
139 {
140         int const sel = _utc_offset->GetSelection();
141         if (sel < 0 || sel > int(_offsets.size())) {
142                 return 0;
143         }
144
145         return _offsets[sel].minute;
146 }
147
148
149 string
150 CinemaDialog::notes () const
151 {
152         return wx_to_std (_notes->GetValue());
153 }