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