5410f6cec003f7fcedf35c7a817ec927f3952b5d
[dcpomatic.git] / src / wx / kdm_dialog.cc
1 /*
2     Copyright (C) 2012 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 <wx/treectrl.h>
21 #include <wx/datectrl.h>
22 #include <wx/timectrl.h>
23 #include <wx/stdpaths.h>
24 #include <wx/listctrl.h>
25 #include "lib/cinema.h"
26 #include "lib/config.h"
27 #include "lib/film.h"
28 #include "kdm_dialog.h"
29 #include "cinema_dialog.h"
30 #include "screen_dialog.h"
31 #include "wx_util.h"
32 #ifdef DCPOMATIC_USE_OWN_DIR_PICKER
33 #include "dir_picker_ctrl.h"
34 #else
35 #include <wx/filepicker.h>
36 #endif
37
38 using std::string;
39 using std::map;
40 using std::list;
41 using std::pair;
42 using std::cout;
43 using std::make_pair;
44 using boost::shared_ptr;
45
46 KDMDialog::KDMDialog (wxWindow* parent, boost::shared_ptr<const Film> film)
47         : wxDialog (parent, wxID_ANY, _("Make KDMs"))
48 {
49         wxBoxSizer* vertical = new wxBoxSizer (wxVERTICAL);
50         wxBoxSizer* targets = new wxBoxSizer (wxHORIZONTAL);
51         
52         _targets = new wxTreeCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTR_HIDE_ROOT | wxTR_MULTIPLE | wxTR_HAS_BUTTONS);
53         targets->Add (_targets, 1, wxEXPAND | wxALL, 6);
54
55         _root = _targets->AddRoot ("Foo");
56
57         list<shared_ptr<Cinema> > c = Config::instance()->cinemas ();
58         for (list<shared_ptr<Cinema> >::iterator i = c.begin(); i != c.end(); ++i) {
59                 add_cinema (*i);
60         }
61
62         _targets->ExpandAll ();
63
64         wxBoxSizer* target_buttons = new wxBoxSizer (wxVERTICAL);
65
66         _add_cinema = new wxButton (this, wxID_ANY, _("Add Cinema..."));
67         target_buttons->Add (_add_cinema, 1, wxEXPAND, 6);
68         _edit_cinema = new wxButton (this, wxID_ANY, _("Edit Cinema..."));
69         target_buttons->Add (_edit_cinema, 1, wxEXPAND, 6);
70         _remove_cinema = new wxButton (this, wxID_ANY, _("Remove Cinema"));
71         target_buttons->Add (_remove_cinema, 1, wxEXPAND, 6);
72         
73         _add_screen = new wxButton (this, wxID_ANY, _("Add Screen..."));
74         target_buttons->Add (_add_screen, 1, wxEXPAND, 6);
75         _edit_screen = new wxButton (this, wxID_ANY, _("Edit Screen..."));
76         target_buttons->Add (_edit_screen, 1, wxEXPAND, 6);
77         _remove_screen = new wxButton (this, wxID_ANY, _("Remove Screen"));
78         target_buttons->Add (_remove_screen, 1, wxEXPAND, 6);
79
80         targets->Add (target_buttons, 0, 0, 6);
81
82         vertical->Add (targets, 1, wxEXPAND | wxALL, 6);
83
84         wxFlexGridSizer* table = new wxFlexGridSizer (3, 2, 6);
85         add_label_to_sizer (table, this, _("From"), true);
86         _from_date = new wxDatePickerCtrl (this, wxID_ANY);
87         table->Add (_from_date, 1, wxEXPAND);
88         _from_time = new wxTimePickerCtrl (this, wxID_ANY);
89         table->Add (_from_time, 1, wxEXPAND);
90         
91         add_label_to_sizer (table, this, _("Until"), true);
92         _until_date = new wxDatePickerCtrl (this, wxID_ANY);
93         table->Add (_until_date, 1, wxEXPAND);
94         _until_time = new wxTimePickerCtrl (this, wxID_ANY);
95         table->Add (_until_time, 1, wxEXPAND);
96
97         vertical->Add (table, 0, wxEXPAND | wxALL, 6);
98
99         _dcps = new wxListCtrl (this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT | wxLC_SINGLE_SEL);
100         wxListItem ip;
101         ip.SetId (0);
102         ip.SetText (_("DCP"));
103         ip.SetWidth (400);
104         _dcps->InsertColumn (0, ip);
105         vertical->Add (_dcps, 0, wxEXPAND | wxALL, 6);
106         
107         list<boost::filesystem::path> dcps = film->dcps ();
108         for (list<boost::filesystem::path>::const_iterator i = dcps.begin(); i != dcps.end(); ++i) {
109                 wxListItem item;
110                 int const n = _dcps->GetItemCount ();
111                 item.SetId (n);
112                 _dcps->InsertItem (item);
113                 _dcps->SetItem (n, 0, std_to_wx (i->string ()));
114
115                 if (dcps.size() == 1 || i->string() == film->dcp_name ()) {
116                         _dcps->SetItemState (n, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED);
117                 }
118         }
119         
120         table = new wxFlexGridSizer (3, 2, 6);
121
122         _write_to = new wxRadioButton (this, wxID_ANY, _("Write to"));
123         table->Add (_write_to, 1, wxEXPAND);
124
125 #ifdef DCPOMATIC_USE_OWN_DIR_PICKER
126         _folder = new DirPickerCtrl (this); 
127 #else   
128         _folder = new wxDirPickerCtrl (this, wxID_ANY);
129 #endif
130
131         _folder->SetPath (wxStandardPaths::Get().GetDocumentsDir());
132         
133         table->Add (_folder, 1, wxEXPAND);
134         table->AddSpacer (0);
135
136         _email = new wxRadioButton (this, wxID_ANY, _("Send by email"));
137         table->Add (_email, 1, wxEXPAND);
138         table->AddSpacer (0);
139         
140         vertical->Add (table, 0, wxEXPAND | wxALL, 6);
141
142         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
143         if (buttons) {
144                 vertical->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
145         }
146
147         _targets->Bind       (wxEVT_COMMAND_TREE_SEL_CHANGED, boost::bind (&KDMDialog::setup_sensitivity, this));
148
149         _add_cinema->Bind    (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::add_cinema_clicked, this));
150         _edit_cinema->Bind   (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::edit_cinema_clicked, this));
151         _remove_cinema->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::remove_cinema_clicked, this));
152
153         _add_screen->Bind    (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::add_screen_clicked, this));
154         _edit_screen->Bind   (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::edit_screen_clicked, this));
155         _remove_screen->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::remove_screen_clicked, this));
156
157         _dcps->Bind          (wxEVT_COMMAND_LIST_ITEM_SELECTED,   boost::bind (&KDMDialog::setup_sensitivity, this));
158         _dcps->Bind          (wxEVT_COMMAND_LIST_ITEM_DESELECTED, boost::bind (&KDMDialog::setup_sensitivity, this));
159
160         _write_to->Bind      (wxEVT_COMMAND_RADIOBUTTON_SELECTED, boost::bind (&KDMDialog::setup_sensitivity, this));
161         _email->Bind         (wxEVT_COMMAND_RADIOBUTTON_SELECTED, boost::bind (&KDMDialog::setup_sensitivity, this));
162
163         setup_sensitivity ();
164         
165         SetSizer (vertical);
166         vertical->Layout ();
167         vertical->SetSizeHints (this);
168 }
169
170 list<pair<wxTreeItemId, shared_ptr<Cinema> > >
171 KDMDialog::selected_cinemas () const
172 {
173         wxArrayTreeItemIds s;
174         _targets->GetSelections (s);
175
176         list<pair<wxTreeItemId, shared_ptr<Cinema> > > c;
177         for (size_t i = 0; i < s.GetCount(); ++i) {
178                 map<wxTreeItemId, shared_ptr<Cinema> >::const_iterator j = _cinemas.find (s[i]);
179                 if (j != _cinemas.end ()) {
180                         c.push_back (make_pair (j->first, j->second));
181                 }
182         }
183
184         return c;
185 }
186
187 list<pair<wxTreeItemId, shared_ptr<Screen> > >
188 KDMDialog::selected_screens () const
189 {
190         wxArrayTreeItemIds s;
191         _targets->GetSelections (s);
192
193         list<pair<wxTreeItemId, shared_ptr<Screen> > > c;
194         for (size_t i = 0; i < s.GetCount(); ++i) {
195                 map<wxTreeItemId, shared_ptr<Screen> >::const_iterator j = _screens.find (s[i]);
196                 if (j != _screens.end ()) {
197                         c.push_back (make_pair (j->first, j->second));
198                 }
199         }
200
201         return c;
202 }
203
204 void
205 KDMDialog::setup_sensitivity ()
206 {
207         bool const sc = selected_cinemas().size() == 1;
208         bool const ss = selected_screens().size() == 1;
209         bool const sd = _dcps->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED) != -1;
210         
211         _edit_cinema->Enable (sc);
212         _remove_cinema->Enable (sc);
213         
214         _add_screen->Enable (sc);
215         _edit_screen->Enable (ss);
216         _remove_screen->Enable (ss);
217
218         wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK));
219         ok->Enable ((sc || ss) && sd);
220
221         _folder->Enable (_write_to->GetValue ());
222 }
223
224 void
225 KDMDialog::add_cinema (shared_ptr<Cinema> c)
226 {
227         _cinemas[_targets->AppendItem (_root, std_to_wx (c->name))] = c;
228
229         list<shared_ptr<Screen> > sc = c->screens ();
230         for (list<shared_ptr<Screen> >::iterator i = sc.begin(); i != sc.end(); ++i) {
231                 add_screen (c, *i);
232         }
233 }
234
235 void
236 KDMDialog::add_screen (shared_ptr<Cinema> c, shared_ptr<Screen> s)
237 {
238         map<wxTreeItemId, shared_ptr<Cinema> >::const_iterator i = _cinemas.begin();
239         while (i != _cinemas.end() && i->second != c) {
240                 ++i;
241         }
242
243         if (i == _cinemas.end()) {
244                 return;
245         }
246
247         _screens[_targets->AppendItem (i->first, std_to_wx (s->name))] = s;
248 }
249
250 void
251 KDMDialog::add_cinema_clicked ()
252 {
253         CinemaDialog* d = new CinemaDialog (this, "Add Cinema");
254         d->ShowModal ();
255
256         shared_ptr<Cinema> c (new Cinema (d->name(), d->email()));
257         Config::instance()->add_cinema (c);
258         add_cinema (c);
259
260         Config::instance()->write ();
261         
262         d->Destroy ();
263 }
264
265 void
266 KDMDialog::edit_cinema_clicked ()
267 {
268         if (selected_cinemas().size() != 1) {
269                 return;
270         }
271
272         pair<wxTreeItemId, shared_ptr<Cinema> > c = selected_cinemas().front();
273         
274         CinemaDialog* d = new CinemaDialog (this, "Edit cinema", c.second->name, c.second->email);
275         d->ShowModal ();
276
277         c.second->name = d->name ();
278         c.second->email = d->email ();
279         _targets->SetItemText (c.first, std_to_wx (d->name()));
280
281         Config::instance()->write ();
282
283         d->Destroy ();  
284 }
285
286 void
287 KDMDialog::remove_cinema_clicked ()
288 {
289         if (selected_cinemas().size() != 1) {
290                 return;
291         }
292
293         pair<wxTreeItemId, shared_ptr<Cinema> > c = selected_cinemas().front();
294
295         Config::instance()->remove_cinema (c.second);
296         _targets->Delete (c.first);
297
298         Config::instance()->write ();   
299 }
300
301 void
302 KDMDialog::add_screen_clicked ()
303 {
304         if (selected_cinemas().size() != 1) {
305                 return;
306         }
307
308         shared_ptr<Cinema> c = selected_cinemas().front().second;
309         
310         ScreenDialog* d = new ScreenDialog (this, "Add Screen");
311         if (d->ShowModal () != wxID_OK) {
312                 return;
313         }
314
315         shared_ptr<Screen> s (new Screen (d->name(), d->certificate()));
316         c->add_screen (s);
317         add_screen (c, s);
318
319         Config::instance()->write ();
320
321         d->Destroy ();
322 }
323
324 void
325 KDMDialog::edit_screen_clicked ()
326 {
327         if (selected_screens().size() != 1) {
328                 return;
329         }
330
331         pair<wxTreeItemId, shared_ptr<Screen> > s = selected_screens().front();
332         
333         ScreenDialog* d = new ScreenDialog (this, "Edit screen", s.second->name, s.second->certificate);
334         d->ShowModal ();
335
336         s.second->name = d->name ();
337         s.second->certificate = d->certificate ();
338         _targets->SetItemText (s.first, std_to_wx (d->name()));
339
340         Config::instance()->write ();
341
342         d->Destroy ();
343 }
344
345 void
346 KDMDialog::remove_screen_clicked ()
347 {
348         if (selected_screens().size() != 1) {
349                 return;
350         }
351
352         pair<wxTreeItemId, shared_ptr<Screen> > s = selected_screens().front();
353
354         map<wxTreeItemId, shared_ptr<Cinema> >::iterator i = _cinemas.begin ();
355         list<shared_ptr<Screen> > sc = i->second->screens ();
356         while (i != _cinemas.end() && find (sc.begin(), sc.end(), s.second) == sc.end()) {
357                 ++i;
358         }
359
360         if (i == _cinemas.end()) {
361                 return;
362         }
363
364         i->second->remove_screen (s.second);
365         _targets->Delete (s.first);
366
367         Config::instance()->write ();
368 }
369
370 list<shared_ptr<Screen> >
371 KDMDialog::screens () const
372 {
373         list<shared_ptr<Screen> > s;
374
375         list<pair<wxTreeItemId, shared_ptr<Cinema> > > cinemas = selected_cinemas ();
376         for (list<pair<wxTreeItemId, shared_ptr<Cinema> > >::iterator i = cinemas.begin(); i != cinemas.end(); ++i) {
377                 list<shared_ptr<Screen> > sc = i->second->screens ();
378                 for (list<shared_ptr<Screen> >::const_iterator j = sc.begin(); j != sc.end(); ++j) {
379                         s.push_back (*j);
380                 }
381         }
382
383         list<pair<wxTreeItemId, shared_ptr<Screen> > > screens = selected_screens ();
384         for (list<pair<wxTreeItemId, shared_ptr<Screen> > >::iterator i = screens.begin(); i != screens.end(); ++i) {
385                 s.push_back (i->second);
386         }
387
388         s.sort ();
389         s.unique ();
390
391         return s;
392 }
393
394 boost::posix_time::ptime
395 KDMDialog::from () const
396 {
397         return posix_time (_from_date, _from_time);
398 }
399
400 boost::posix_time::ptime
401 KDMDialog::posix_time (wxDatePickerCtrl* date_picker, wxTimePickerCtrl* time_picker)
402 {
403         wxDateTime const date = date_picker->GetValue ();
404         wxDateTime const time = time_picker->GetValue ();
405         return boost::posix_time::ptime (
406                 boost::gregorian::date (date.GetYear(), date.GetMonth() + 1, date.GetDay()),
407                 boost::posix_time::time_duration (time.GetHour(), time.GetMinute(), time.GetSecond())
408                 );
409 }
410
411 boost::posix_time::ptime
412 KDMDialog::until () const
413 {
414         return posix_time (_until_date, _until_time);
415 }
416
417 boost::filesystem::path
418 KDMDialog::dcp () const
419 {
420         int const item = _dcps->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
421         assert (item >= 0);
422         return wx_to_std (_dcps->GetItemText (item));
423 }
424
425 boost::filesystem::path
426 KDMDialog::directory () const
427 {
428         return wx_to_std (_folder->GetPath ());
429 }
430
431 bool
432 KDMDialog::write_to () const
433 {
434         return _write_to->GetValue ();
435 }