Merge delay-decode-take2 branch into master.
[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
43         /** @return KDM from time in local time */
44         boost::posix_time::ptime from () const;
45         /** @return KDM until time in local time */
46         boost::posix_time::ptime until () const;
47         
48         boost::filesystem::path dcp () const;
49         boost::filesystem::path directory () const;
50         bool write_to () const;
51
52 private:
53         void add_cinema (boost::shared_ptr<Cinema>);
54         void add_screen (boost::shared_ptr<Cinema>, boost::shared_ptr<Screen>);
55         void add_cinema_clicked ();
56         void edit_cinema_clicked ();
57         void remove_cinema_clicked ();
58         void add_screen_clicked ();
59         void edit_screen_clicked ();
60         void remove_screen_clicked ();
61         std::list<std::pair<wxTreeItemId, boost::shared_ptr<Cinema> > > selected_cinemas () const;
62         std::list<std::pair<wxTreeItemId, boost::shared_ptr<Screen> > > selected_screens () const;
63         void setup_sensitivity ();
64
65         static boost::posix_time::ptime posix_time (wxDatePickerCtrl *, wxTimePickerCtrl *);
66         
67         wxTreeCtrl* _targets;
68         wxButton* _add_cinema;
69         wxButton* _edit_cinema;
70         wxButton* _remove_cinema;
71         wxButton* _add_screen;
72         wxButton* _edit_screen;
73         wxButton* _remove_screen;
74         wxDatePickerCtrl* _from_date;
75         wxDatePickerCtrl* _until_date;
76         wxTimePickerCtrl* _from_time;
77         wxTimePickerCtrl* _until_time;
78         wxListCtrl* _dcps;
79         wxRadioButton* _write_to;
80 #ifdef DCPOMATIC_USE_OWN_DIR_PICKER
81         DirPickerCtrl* _folder;
82 #else
83         wxDirPickerCtrl* _folder;
84 #endif
85         wxRadioButton* _email;
86
87         wxTreeItemId _root;
88         std::map<wxTreeItemId, boost::shared_ptr<Cinema> > _cinemas;
89         std::map<wxTreeItemId, boost::shared_ptr<Screen> > _screens;
90 };