Allow specification of DCP to build KDMs for (#235).
[dcpomatic.git] / src / wx / kdm_dialog.h
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 <map>
21 #include <boost/shared_ptr.hpp>
22 #include <boost/date_time/posix_time/posix_time.hpp>
23 #include <wx/wx.h>
24 #include <wx/treectrl.h>
25 #include "wx_util.h"
26
27 class wxTreeCtrl;
28 class wxDatePickerCtrl;
29 class wxTimePickerCtrl;
30 class wxDirPickerCtrl;
31 class DirPickerCtrl;
32
33 class Cinema;
34 class Screen;
35
36 class KDMDialog : public wxDialog
37 {
38 public:
39         KDMDialog (wxWindow *, boost::shared_ptr<const Film>);
40
41         std::list<boost::shared_ptr<Screen> > screens () const;
42         boost::posix_time::ptime from () const;
43         boost::posix_time::ptime until () const;
44         boost::filesystem::path dcp () const;
45         boost::filesystem::path directory () const;
46         bool write_to () const;
47
48 private:
49         void add_cinema (boost::shared_ptr<Cinema>);
50         void add_screen (boost::shared_ptr<Cinema>, boost::shared_ptr<Screen>);
51         void add_cinema_clicked ();
52         void edit_cinema_clicked ();
53         void remove_cinema_clicked ();
54         void add_screen_clicked ();
55         void edit_screen_clicked ();
56         void remove_screen_clicked ();
57         std::list<std::pair<wxTreeItemId, boost::shared_ptr<Cinema> > > selected_cinemas () const;
58         std::list<std::pair<wxTreeItemId, boost::shared_ptr<Screen> > > selected_screens () const;
59         void setup_sensitivity ();
60
61         static boost::posix_time::ptime posix_time (wxDatePickerCtrl *, wxTimePickerCtrl *);
62         
63         wxTreeCtrl* _targets;
64         wxButton* _add_cinema;
65         wxButton* _edit_cinema;
66         wxButton* _remove_cinema;
67         wxButton* _add_screen;
68         wxButton* _edit_screen;
69         wxButton* _remove_screen;
70         wxDatePickerCtrl* _from_date;
71         wxDatePickerCtrl* _until_date;
72         wxTimePickerCtrl* _from_time;
73         wxTimePickerCtrl* _until_time;
74         wxListCtrl* _dcps;
75         wxRadioButton* _write_to;
76 #ifdef DCPOMATIC_USE_OWN_DIR_PICKER
77         DirPickerCtrl* _folder;
78 #else
79         wxDirPickerCtrl* _folder;
80 #endif
81         wxRadioButton* _email;
82
83         wxTreeItemId _root;
84         std::map<wxTreeItemId, boost::shared_ptr<Cinema> > _cinemas;
85         std::map<wxTreeItemId, boost::shared_ptr<Screen> > _screens;
86 };