Merge 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
26 class wxTreeCtrl;
27 class wxDatePickerCtrl;
28 class wxTimePickerCtrl;
29 class wxDirPickerCtrl;
30 class DirPickerCtrl;
31
32 class Cinema;
33 class Screen;
34
35 class KDMDialog : public wxDialog
36 {
37 public:
38         KDMDialog (wxWindow *);
39
40         std::list<boost::shared_ptr<Screen> > screens () const;
41         boost::posix_time::ptime from () const;
42         boost::posix_time::ptime until () const;
43         std::string directory () const;
44
45 private:
46         void add_cinema (boost::shared_ptr<Cinema>);
47         void add_screen (boost::shared_ptr<Cinema>, boost::shared_ptr<Screen>);
48         void targets_selection_changed (wxCommandEvent &);
49         void add_cinema_clicked (wxCommandEvent &);
50         void edit_cinema_clicked (wxCommandEvent &);
51         void remove_cinema_clicked (wxCommandEvent &);
52         void add_screen_clicked (wxCommandEvent &);
53         void edit_screen_clicked (wxCommandEvent &);
54         void remove_screen_clicked (wxCommandEvent &);
55         std::list<std::pair<wxTreeItemId, boost::shared_ptr<Cinema> > > selected_cinemas () const;
56         std::list<std::pair<wxTreeItemId, boost::shared_ptr<Screen> > > selected_screens () const;
57         void setup_sensitivity ();
58
59         static boost::posix_time::ptime posix_time (wxDatePickerCtrl *, wxTimePickerCtrl *);
60         
61         wxTreeCtrl* _targets;
62         wxButton* _add_cinema;
63         wxButton* _edit_cinema;
64         wxButton* _remove_cinema;
65         wxButton* _add_screen;
66         wxButton* _edit_screen;
67         wxButton* _remove_screen;
68         wxDatePickerCtrl* _from_date;
69         wxDatePickerCtrl* _until_date;
70         wxTimePickerCtrl* _from_time;
71         wxTimePickerCtrl* _until_time;
72 #ifdef __WXMSW__        
73         DirPickerCtrl* _folder;
74 #else
75         wxDirPickerCtrl* _folder;
76 #endif
77
78         wxTreeItemId _root;
79         std::map<wxTreeItemId, boost::shared_ptr<Cinema> > _cinemas;
80         std::map<wxTreeItemId, boost::shared_ptr<Screen> > _screens;
81 };