0fc95db8443dee447023e7170b3ee964c0daef85
[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 cpl () const;
49         boost::filesystem::path directory () const;
50         bool write_to () const;
51         dcp::Formulation formulation () const;
52
53 private:
54         void add_cinema (boost::shared_ptr<Cinema>);
55         void add_screen (boost::shared_ptr<Cinema>, boost::shared_ptr<Screen>);
56         void add_cinema_clicked ();
57         void edit_cinema_clicked ();
58         void remove_cinema_clicked ();
59         void add_screen_clicked ();
60         void edit_screen_clicked ();
61         void remove_screen_clicked ();
62         std::list<std::pair<wxTreeItemId, boost::shared_ptr<Cinema> > > selected_cinemas () const;
63         std::list<std::pair<wxTreeItemId, boost::shared_ptr<Screen> > > selected_screens () const;
64         void setup_sensitivity ();
65         void update_cpl_choice ();
66         void update_cpl_summary ();
67         void cpl_browse_clicked ();
68
69         static boost::posix_time::ptime posix_time (wxDatePickerCtrl *, wxTimePickerCtrl *);
70         
71         wxTreeCtrl* _targets;
72         wxButton* _add_cinema;
73         wxButton* _edit_cinema;
74         wxButton* _remove_cinema;
75         wxButton* _add_screen;
76         wxButton* _edit_screen;
77         wxButton* _remove_screen;
78         wxDatePickerCtrl* _from_date;
79         wxDatePickerCtrl* _until_date;
80         wxTimePickerCtrl* _from_time;
81         wxTimePickerCtrl* _until_time;
82         wxChoice* _cpl;
83         wxButton* _cpl_browse;
84         wxStaticText* _dcp_directory;
85         wxStaticText* _cpl_id;
86         wxStaticText* _cpl_annotation_text;
87         wxChoice* _type;
88         wxRadioButton* _write_to;
89 #ifdef DCPOMATIC_USE_OWN_DIR_PICKER
90         DirPickerCtrl* _folder;
91 #else
92         wxDirPickerCtrl* _folder;
93 #endif
94         wxRadioButton* _email;
95
96         wxTreeItemId _root;
97         std::map<wxTreeItemId, boost::shared_ptr<Cinema> > _cinemas;
98         std::map<wxTreeItemId, boost::shared_ptr<Screen> > _screens;
99         std::vector<CPLSummary> _cpls;
100 };