A couple of class/struct confusions.
[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 "wx_util.h"
21 #include <dcp/types.h>
22 #include <wx/wx.h>
23 #include <wx/treectrl.h>
24 #include <boost/shared_ptr.hpp>
25 #include <boost/date_time/posix_time/posix_time.hpp>
26 #include <map>
27
28 class wxTreeCtrl;
29 class wxDatePickerCtrl;
30 class wxTimePickerCtrl;
31 class wxDirPickerCtrl;
32 class DirPickerCtrl;
33
34 class Cinema;
35 class Screen;
36 class Film;
37 struct CPLSummary;
38
39 class KDMDialog : public wxDialog
40 {
41 public:
42         KDMDialog (wxWindow *, boost::shared_ptr<const Film>);
43
44         std::list<boost::shared_ptr<Screen> > screens () const;
45
46         /** @return KDM from time in local time */
47         boost::posix_time::ptime from () const;
48         /** @return KDM until time in local time */
49         boost::posix_time::ptime until () const;
50
51         boost::filesystem::path cpl () const;
52         boost::filesystem::path directory () const;
53         bool write_to () const;
54         dcp::Formulation formulation () const;
55
56 private:
57         void add_cinema (boost::shared_ptr<Cinema>);
58         void add_screen (boost::shared_ptr<Cinema>, boost::shared_ptr<Screen>);
59         void add_cinema_clicked ();
60         void edit_cinema_clicked ();
61         void remove_cinema_clicked ();
62         void add_screen_clicked ();
63         void edit_screen_clicked ();
64         void remove_screen_clicked ();
65         std::list<std::pair<wxTreeItemId, boost::shared_ptr<Cinema> > > selected_cinemas () const;
66         std::list<std::pair<wxTreeItemId, boost::shared_ptr<Screen> > > selected_screens () const;
67         void setup_sensitivity ();
68         void update_cpl_choice ();
69         void update_cpl_summary ();
70         void cpl_browse_clicked ();
71
72         static boost::posix_time::ptime posix_time (wxDatePickerCtrl *, wxTimePickerCtrl *);
73
74         wxTreeCtrl* _targets;
75         wxButton* _add_cinema;
76         wxButton* _edit_cinema;
77         wxButton* _remove_cinema;
78         wxButton* _add_screen;
79         wxButton* _edit_screen;
80         wxButton* _remove_screen;
81         wxDatePickerCtrl* _from_date;
82         wxDatePickerCtrl* _until_date;
83         wxTimePickerCtrl* _from_time;
84         wxTimePickerCtrl* _until_time;
85         wxChoice* _cpl;
86         wxButton* _cpl_browse;
87         wxStaticText* _dcp_directory;
88         wxStaticText* _cpl_id;
89         wxStaticText* _cpl_annotation_text;
90         wxChoice* _type;
91         wxRadioButton* _write_to;
92 #ifdef DCPOMATIC_USE_OWN_DIR_PICKER
93         DirPickerCtrl* _folder;
94 #else
95         wxDirPickerCtrl* _folder;
96 #endif
97         wxRadioButton* _email;
98
99         wxTreeItemId _root;
100         std::map<wxTreeItemId, boost::shared_ptr<Cinema> > _cinemas;
101         std::map<wxTreeItemId, boost::shared_ptr<Screen> > _screens;
102         std::vector<CPLSummary> _cpls;
103 };