No-op; fix GPL address and use the explicit-program-name version.
[dcpomatic.git] / src / wx / cinema_dialog.cc
1 /*
2     Copyright (C) 2012-2016 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 "cinema_dialog.h"
22 #include "wx_util.h"
23 #include "lib/dcpomatic_assert.h"
24 #include "lib/util.h"
25 #include <boost/foreach.hpp>
26
27 using std::string;
28 using std::vector;
29 using std::copy;
30 using std::back_inserter;
31 using std::list;
32 using std::cout;
33 using boost::bind;
34
35 static string
36 column (string s)
37 {
38         return s;
39 }
40
41 CinemaDialog::CinemaDialog (wxWindow* parent, wxString title, string name, list<string> emails, string notes, int utc_offset_hour, int utc_offset_minute)
42         : wxDialog (parent, wxID_ANY, title)
43 {
44         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
45         SetSizer (overall_sizer);
46
47         wxGridBagSizer* sizer = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
48         int r = 0;
49
50         add_label_to_sizer (sizer, this, _("Name"), true, wxGBPosition (r, 0));
51         _name = new wxTextCtrl (this, wxID_ANY, std_to_wx (name), wxDefaultPosition, wxSize (500, -1));
52         sizer->Add (_name, wxGBPosition (r, 1));
53         ++r;
54
55         add_label_to_sizer (sizer, this, _("UTC offset (time zone)"), true, wxGBPosition (r, 0));
56         _utc_offset = new wxChoice (this, wxID_ANY);
57         sizer->Add (_utc_offset, wxGBPosition (r, 1));
58         ++r;
59
60         add_label_to_sizer (sizer, this, _("Notes"), true, wxGBPosition (r, 0));
61         _notes = new wxTextCtrl (this, wxID_ANY, std_to_wx (notes), wxDefaultPosition, wxSize (500, -1));
62         sizer->Add (_notes, wxGBPosition (r, 1));
63         ++r;
64
65         add_label_to_sizer (sizer, this, _("Email addresses for KDM delivery"), false, wxGBPosition (r, 0), wxGBSpan (1, 2));
66         ++r;
67
68         copy (emails.begin(), emails.end(), back_inserter (_emails));
69
70         vector<string> columns;
71         columns.push_back (wx_to_std (_("Address")));
72         _email_list = new EditableList<string, EmailDialog> (
73                 this, columns, bind (&CinemaDialog::get_emails, this), bind (&CinemaDialog::set_emails, this, _1), bind (&string_not_empty, _1), bind (&column, _1)
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         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
82         if (buttons) {
83                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
84         }
85
86         _offsets.push_back (Offset (_("UTC-11"),  -11,  0));
87         _offsets.push_back (Offset (_("UTC-10"),  -10,  0));
88         _offsets.push_back (Offset (_("UTC-9"),    -9,  0));
89         _offsets.push_back (Offset (_("UTC-8"),    -8,  0));
90         _offsets.push_back (Offset (_("UTC-7"),    -7,  0));
91         _offsets.push_back (Offset (_("UTC-6"),    -6,  0));
92         _offsets.push_back (Offset (_("UTC-5"),    -5,  0));
93         _offsets.push_back (Offset (_("UTC-4:30"), -4, 30));
94         _offsets.push_back (Offset (_("UTC-4"),    -4,  0));
95         _offsets.push_back (Offset (_("UTC-3:30"), -3, 30));
96         _offsets.push_back (Offset (_("UTC-3"),    -3,  0));
97         _offsets.push_back (Offset (_("UTC-2"),    -2,  0));
98         _offsets.push_back (Offset (_("UTC-1"),    -1,  0));
99         _offsets.push_back (Offset (_("UTC")  ,     0,  0));
100         _offsets.push_back (Offset (_("UTC+1"),     1,  0));
101         _offsets.push_back (Offset (_("UTC+2"),     2,  0));
102         _offsets.push_back (Offset (_("UTC+3"),     3,  0));
103         _offsets.push_back (Offset (_("UTC+4"),     4,  0));
104         _offsets.push_back (Offset (_("UTC+5"),     5,  0));
105         _offsets.push_back (Offset (_("UTC+6"),     6,  0));
106         _offsets.push_back (Offset (_("UTC+7"),     7,  0));
107         _offsets.push_back (Offset (_("UTC+8"),     8,  0));
108         _offsets.push_back (Offset (_("UTC+9"),     9,  0));
109         _offsets.push_back (Offset (_("UTC+10"),   10,  0));
110         _offsets.push_back (Offset (_("UTC+11"),   11,  0));
111         _offsets.push_back (Offset (_("UTC+12"),   12,  0));
112
113         /* Default to UTC */
114         size_t sel = 13;
115         for (size_t i = 0; i < _offsets.size(); ++i) {
116                 _utc_offset->Append (_offsets[i].name);
117                 if (_offsets[i].hour == utc_offset_hour && _offsets[i].minute == utc_offset_minute) {
118                         sel = i;
119                 }
120         }
121
122         _utc_offset->SetSelection (sel);
123
124         overall_sizer->Layout ();
125         overall_sizer->SetSizeHints (this);
126 }
127
128 string
129 CinemaDialog::name () const
130 {
131         return wx_to_std (_name->GetValue());
132 }
133
134 void
135 CinemaDialog::set_emails (vector<string> e)
136 {
137         _emails = e;
138 }
139
140 vector<string>
141 CinemaDialog::get_emails () const
142 {
143         return _emails;
144 }
145
146 list<string>
147 CinemaDialog::emails () const
148 {
149         list<string> e;
150         copy (_emails.begin(), _emails.end(), back_inserter (e));
151         return e;
152 }
153
154 int
155 CinemaDialog::utc_offset_hour () const
156 {
157         int const sel = _utc_offset->GetSelection();
158         if (sel < 0 || sel > int (_offsets.size())) {
159                 return 0;
160         }
161
162         return _offsets[sel].hour;
163 }
164
165 int
166 CinemaDialog::utc_offset_minute () const
167 {
168         int const sel = _utc_offset->GetSelection();
169         if (sel < 0 || sel > int (_offsets.size())) {
170                 return 0;
171         }
172
173         return _offsets[sel].minute;
174 }
175
176 string
177 CinemaDialog::notes () const
178 {
179         return wx_to_std (_notes->GetValue ());
180 }