Default to write-to in KDM dialog.
[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         _write_to->SetValue (true);
153
154         _targets->Bind       (wxEVT_COMMAND_TREE_SEL_CHANGED, boost::bind (&KDMDialog::setup_sensitivity, this));
155
156         _add_cinema->Bind    (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::add_cinema_clicked, this));
157         _edit_cinema->Bind   (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::edit_cinema_clicked, this));
158         _remove_cinema->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::remove_cinema_clicked, this));
159
160         _add_screen->Bind    (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::add_screen_clicked, this));
161         _edit_screen->Bind   (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::edit_screen_clicked, this));
162         _remove_screen->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&KDMDialog::remove_screen_clicked, this));
163
164         _dcps->Bind          (wxEVT_COMMAND_LIST_ITEM_SELECTED,   boost::bind (&KDMDialog::setup_sensitivity, this));
165         _dcps->Bind          (wxEVT_COMMAND_LIST_ITEM_DESELECTED, boost::bind (&KDMDialog::setup_sensitivity, this));
166
167         _write_to->Bind      (wxEVT_COMMAND_RADIOBUTTON_SELECTED, boost::bind (&KDMDialog::setup_sensitivity, this));
168         _email->Bind         (wxEVT_COMMAND_RADIOBUTTON_SELECTED, boost::bind (&KDMDialog::setup_sensitivity, this));
169
170         setup_sensitivity ();
171         
172         SetSizer (vertical);
173         vertical->Layout ();
174         vertical->SetSizeHints (this);
175 }
176
177 list<pair<wxTreeItemId, shared_ptr<Cinema> > >
178 KDMDialog::selected_cinemas () const
179 {
180         wxArrayTreeItemIds s;
181         _targets->GetSelections (s);
182
183         list<pair<wxTreeItemId, shared_ptr<Cinema> > > c;
184         for (size_t i = 0; i < s.GetCount(); ++i) {
185                 map<wxTreeItemId, shared_ptr<Cinema> >::const_iterator j = _cinemas.find (s[i]);
186                 if (j != _cinemas.end ()) {
187                         c.push_back (make_pair (j->first, j->second));
188                 }
189         }
190
191         return c;
192 }
193
194 list<pair<wxTreeItemId, shared_ptr<Screen> > >
195 KDMDialog::selected_screens () const
196 {
197         wxArrayTreeItemIds s;
198         _targets->GetSelections (s);
199
200         list<pair<wxTreeItemId, shared_ptr<Screen> > > c;
201         for (size_t i = 0; i < s.GetCount(); ++i) {
202                 map<wxTreeItemId, shared_ptr<Screen> >::const_iterator j = _screens.find (s[i]);
203                 if (j != _screens.end ()) {
204                         c.push_back (make_pair (j->first, j->second));
205                 }
206         }
207
208         return c;
209 }
210
211 void
212 KDMDialog::setup_sensitivity ()
213 {
214         bool const sc = selected_cinemas().size() == 1;
215         bool const ss = selected_screens().size() == 1;
216         bool const sd = _dcps->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED) != -1;
217         
218         _edit_cinema->Enable (sc);
219         _remove_cinema->Enable (sc);
220         
221         _add_screen->Enable (sc);
222         _edit_screen->Enable (ss);
223         _remove_screen->Enable (ss);
224
225         wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK));
226         ok->Enable ((sc || ss) && sd);
227
228         _folder->Enable (_write_to->GetValue ());
229 }
230
231 void
232 KDMDialog::add_cinema (shared_ptr<Cinema> c)
233 {
234         _cinemas[_targets->AppendItem (_root, std_to_wx (c->name))] = c;
235
236         list<shared_ptr<Screen> > sc = c->screens ();
237         for (list<shared_ptr<Screen> >::iterator i = sc.begin(); i != sc.end(); ++i) {
238                 add_screen (c, *i);
239         }
240 }
241
242 void
243 KDMDialog::add_screen (shared_ptr<Cinema> c, shared_ptr<Screen> s)
244 {
245         map<wxTreeItemId, shared_ptr<Cinema> >::const_iterator i = _cinemas.begin();
246         while (i != _cinemas.end() && i->second != c) {
247                 ++i;
248         }
249
250         if (i == _cinemas.end()) {
251                 return;
252         }
253
254         _screens[_targets->AppendItem (i->first, std_to_wx (s->name))] = s;
255 }
256
257 void
258 KDMDialog::add_cinema_clicked ()
259 {
260         CinemaDialog* d = new CinemaDialog (this, "Add Cinema");
261         d->ShowModal ();
262
263         shared_ptr<Cinema> c (new Cinema (d->name(), d->email()));
264         Config::instance()->add_cinema (c);
265         add_cinema (c);
266
267         Config::instance()->write ();
268         
269         d->Destroy ();
270 }
271
272 void
273 KDMDialog::edit_cinema_clicked ()
274 {
275         if (selected_cinemas().size() != 1) {
276                 return;
277         }
278
279         pair<wxTreeItemId, shared_ptr<Cinema> > c = selected_cinemas().front();
280         
281         CinemaDialog* d = new CinemaDialog (this, "Edit cinema", c.second->name, c.second->email);
282         d->ShowModal ();
283
284         c.second->name = d->name ();
285         c.second->email = d->email ();
286         _targets->SetItemText (c.first, std_to_wx (d->name()));
287
288         Config::instance()->write ();
289
290         d->Destroy ();  
291 }
292
293 void
294 KDMDialog::remove_cinema_clicked ()
295 {
296         if (selected_cinemas().size() != 1) {
297                 return;
298         }
299
300         pair<wxTreeItemId, shared_ptr<Cinema> > c = selected_cinemas().front();
301
302         Config::instance()->remove_cinema (c.second);
303         _targets->Delete (c.first);
304
305         Config::instance()->write ();   
306 }
307
308 void
309 KDMDialog::add_screen_clicked ()
310 {
311         if (selected_cinemas().size() != 1) {
312                 return;
313         }
314
315         shared_ptr<Cinema> c = selected_cinemas().front().second;
316         
317         ScreenDialog* d = new ScreenDialog (this, "Add Screen");
318         if (d->ShowModal () != wxID_OK) {
319                 return;
320         }
321
322         shared_ptr<Screen> s (new Screen (d->name(), d->certificate()));
323         c->add_screen (s);
324         add_screen (c, s);
325
326         Config::instance()->write ();
327
328         d->Destroy ();
329 }
330
331 void
332 KDMDialog::edit_screen_clicked ()
333 {
334         if (selected_screens().size() != 1) {
335                 return;
336         }
337
338         pair<wxTreeItemId, shared_ptr<Screen> > s = selected_screens().front();
339         
340         ScreenDialog* d = new ScreenDialog (this, "Edit screen", s.second->name, s.second->certificate);
341         d->ShowModal ();
342
343         s.second->name = d->name ();
344         s.second->certificate = d->certificate ();
345         _targets->SetItemText (s.first, std_to_wx (d->name()));
346
347         Config::instance()->write ();
348
349         d->Destroy ();
350 }
351
352 void
353 KDMDialog::remove_screen_clicked ()
354 {
355         if (selected_screens().size() != 1) {
356                 return;
357         }
358
359         pair<wxTreeItemId, shared_ptr<Screen> > s = selected_screens().front();
360
361         map<wxTreeItemId, shared_ptr<Cinema> >::iterator i = _cinemas.begin ();
362         list<shared_ptr<Screen> > sc = i->second->screens ();
363         while (i != _cinemas.end() && find (sc.begin(), sc.end(), s.second) == sc.end()) {
364                 ++i;
365         }
366
367         if (i == _cinemas.end()) {
368                 return;
369         }
370
371         i->second->remove_screen (s.second);
372         _targets->Delete (s.first);
373
374         Config::instance()->write ();
375 }
376
377 list<shared_ptr<Screen> >
378 KDMDialog::screens () const
379 {
380         list<shared_ptr<Screen> > s;
381
382         list<pair<wxTreeItemId, shared_ptr<Cinema> > > cinemas = selected_cinemas ();
383         for (list<pair<wxTreeItemId, shared_ptr<Cinema> > >::iterator i = cinemas.begin(); i != cinemas.end(); ++i) {
384                 list<shared_ptr<Screen> > sc = i->second->screens ();
385                 for (list<shared_ptr<Screen> >::const_iterator j = sc.begin(); j != sc.end(); ++j) {
386                         s.push_back (*j);
387                 }
388         }
389
390         list<pair<wxTreeItemId, shared_ptr<Screen> > > screens = selected_screens ();
391         for (list<pair<wxTreeItemId, shared_ptr<Screen> > >::iterator i = screens.begin(); i != screens.end(); ++i) {
392                 s.push_back (i->second);
393         }
394
395         s.sort ();
396         s.unique ();
397
398         return s;
399 }
400
401 boost::posix_time::ptime
402 KDMDialog::from () const
403 {
404         return posix_time (_from_date, _from_time);
405 }
406
407 boost::posix_time::ptime
408 KDMDialog::posix_time (wxDatePickerCtrl* date_picker, wxTimePickerCtrl* time_picker)
409 {
410         wxDateTime const date = date_picker->GetValue ();
411         wxDateTime const time = time_picker->GetValue ();
412         return boost::posix_time::ptime (
413                 boost::gregorian::date (date.GetYear(), date.GetMonth() + 1, date.GetDay()),
414                 boost::posix_time::time_duration (time.GetHour(), time.GetMinute(), time.GetSecond())
415                 );
416 }
417
418 boost::posix_time::ptime
419 KDMDialog::until () const
420 {
421         return posix_time (_until_date, _until_time);
422 }
423
424 boost::filesystem::path
425 KDMDialog::dcp () const
426 {
427         int const item = _dcps->GetNextItem (-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED);
428         assert (item >= 0);
429         return wx_to_std (_dcps->GetItemText (item));
430 }
431
432 boost::filesystem::path
433 KDMDialog::directory () const
434 {
435         return wx_to_std (_folder->GetPath ());
436 }
437
438 bool
439 KDMDialog::write_to () const
440 {
441         return _write_to->GetValue ();
442 }