Ignore empty KDM email addresses (#818).
[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)
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         for (int i = -11; i <= -1; ++i) {
81                 _utc_offset->Append (wxString::Format (_("UTC%d"), i));
82         }
83         _utc_offset->Append (_("UTC"));
84         for (int i = 1; i <= 12; ++i) {
85                 _utc_offset->Append (wxString::Format (_("UTC+%d"), i));
86         }
87
88         _utc_offset->SetSelection (utc_offset + 11);
89
90         overall_sizer->Layout ();
91         overall_sizer->SetSizeHints (this);
92 }
93
94 string
95 CinemaDialog::name () const
96 {
97         return wx_to_std (_name->GetValue());
98 }
99
100 void
101 CinemaDialog::set_emails (vector<string> e)
102 {
103         _emails = e;
104 }
105
106 vector<string>
107 CinemaDialog::get_emails () const
108 {
109         return _emails;
110 }
111
112 list<string>
113 CinemaDialog::emails () const
114 {
115         list<string> e;
116         copy (_emails.begin(), _emails.end(), back_inserter (e));
117         return e;
118 }
119
120 int
121 CinemaDialog::utc_offset () const
122 {
123         return _utc_offset->GetSelection() - 11;
124 }