Add UTC-3:30 timezone to cinema (#831).
[dcpomatic.git] / src / wx / cinema_dialog.cc
1 /*
2     Copyright (C) 2012-2016 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "cinema_dialog.h"
21 #include "wx_util.h"
22 #include "lib/dcpomatic_assert.h"
23 #include "lib/util.h"
24 #include <boost/foreach.hpp>
25
26 using std::string;
27 using std::vector;
28 using std::copy;
29 using std::back_inserter;
30 using std::list;
31 using std::cout;
32 using boost::bind;
33
34 static string
35 column (string s)
36 {
37         return s;
38 }
39
40 CinemaDialog::CinemaDialog (wxWindow* parent, string title, string name, list<string> emails, int utc_offset_hour, int utc_offset_minute)
41         : wxDialog (parent, wxID_ANY, std_to_wx (title))
42 {
43         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
44         SetSizer (overall_sizer);
45
46         wxGridBagSizer* sizer = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
47         int r = 0;
48
49         add_label_to_sizer (sizer, this, _("Name"), true, wxGBPosition (r, 0));
50         _name = new wxTextCtrl (this, wxID_ANY, std_to_wx (name), wxDefaultPosition, wxSize (500, -1));
51         sizer->Add (_name, wxGBPosition (r, 1));
52         ++r;
53
54         add_label_to_sizer (sizer, this, _("UTC offset (time zone)"), true, wxGBPosition (r, 0));
55         _utc_offset = new wxChoice (this, wxID_ANY);
56         sizer->Add (_utc_offset, wxGBPosition (r, 1));
57         ++r;
58
59         add_label_to_sizer (sizer, this, _("Email addresses for KDM delivery"), false, wxGBPosition (r, 0), wxGBSpan (1, 2));
60         ++r;
61
62         copy (emails.begin(), emails.end(), back_inserter (_emails));
63
64         vector<string> columns;
65         columns.push_back (wx_to_std (_("Address")));
66         _email_list = new EditableList<string, EmailDialog> (
67                 this, columns, bind (&CinemaDialog::get_emails, this), bind (&CinemaDialog::set_emails, this, _1), bind (&string_not_empty, _1), bind (&column, _1)
68                 );
69
70         sizer->Add (_email_list, wxGBPosition (r, 0), wxGBSpan (1, 2), wxEXPAND);
71         ++r;
72
73         overall_sizer->Add (sizer, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
74
75         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
76         if (buttons) {
77                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
78         }
79
80         _offsets.push_back (Offset (_("UTC-11"),  -11,  0));
81         _offsets.push_back (Offset (_("UTC-10"),  -10,  0));
82         _offsets.push_back (Offset (_("UTC-9"),    -9,  0));
83         _offsets.push_back (Offset (_("UTC-8"),    -8,  0));
84         _offsets.push_back (Offset (_("UTC-7"),    -7,  0));
85         _offsets.push_back (Offset (_("UTC-6"),    -6,  0));
86         _offsets.push_back (Offset (_("UTC-5"),    -5,  0));
87         _offsets.push_back (Offset (_("UTC-4"),    -4,  0));
88         _offsets.push_back (Offset (_("UTC-3:30"), -3, 30));
89         _offsets.push_back (Offset (_("UTC-3"),    -3,  0));
90         _offsets.push_back (Offset (_("UTC-2"),    -2,  0));
91         _offsets.push_back (Offset (_("UTC-1"),    -1,  0));
92         _offsets.push_back (Offset (_("UTC")  ,     0,  0));
93         _offsets.push_back (Offset (_("UTC+1"),     1,  0));
94         _offsets.push_back (Offset (_("UTC+2"),     2,  0));
95         _offsets.push_back (Offset (_("UTC+3"),     3,  0));
96         _offsets.push_back (Offset (_("UTC+4"),     4,  0));
97         _offsets.push_back (Offset (_("UTC+5"),     5,  0));
98         _offsets.push_back (Offset (_("UTC+6"),     6,  0));
99         _offsets.push_back (Offset (_("UTC+7"),     7,  0));
100         _offsets.push_back (Offset (_("UTC+8"),     8,  0));
101         _offsets.push_back (Offset (_("UTC+9"),     9,  0));
102         _offsets.push_back (Offset (_("UTC+10"),   10,  0));
103         _offsets.push_back (Offset (_("UTC+11"),   11,  0));
104         _offsets.push_back (Offset (_("UTC+12"),   12,  0));
105
106         size_t sel;
107         for (size_t i = 0; i < _offsets.size(); ++i) {
108                 _utc_offset->Append (_offsets[i].name);
109                 if (_offsets[i].hour == utc_offset_hour && _offsets[i].minute == utc_offset_minute) {
110                         sel = i;
111                 }
112         }
113
114         _utc_offset->SetSelection (sel);
115
116         overall_sizer->Layout ();
117         overall_sizer->SetSizeHints (this);
118 }
119
120 string
121 CinemaDialog::name () const
122 {
123         return wx_to_std (_name->GetValue());
124 }
125
126 void
127 CinemaDialog::set_emails (vector<string> e)
128 {
129         _emails = e;
130 }
131
132 vector<string>
133 CinemaDialog::get_emails () const
134 {
135         return _emails;
136 }
137
138 list<string>
139 CinemaDialog::emails () const
140 {
141         list<string> e;
142         copy (_emails.begin(), _emails.end(), back_inserter (e));
143         return e;
144 }
145
146 int
147 CinemaDialog::utc_offset_hour () const
148 {
149         size_t const sel =  _utc_offset->GetSelection();
150         if (sel < 0 || sel > _offsets.size()) {
151                 return 0;
152         }
153
154         return _offsets[sel].hour;
155 }
156
157 int
158 CinemaDialog::utc_offset_minute () const
159 {
160         size_t const sel =  _utc_offset->GetSelection();
161         if (sel < 0 || sel > _offsets.size()) {
162                 return 0;
163         }
164
165         return _offsets[sel].minute;
166 }