365d05a99672c2bd803904f7de4da56c7571ffbd
[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 wxDirPickerCtrl;
30 class DirPickerCtrl;
31
32 class Cinema;
33 class Screen;
34 class Film;
35 class ScreensPanel;
36 class KDMTimingPanel;
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         /** @return KDM from time in local time */
46         boost::posix_time::ptime from () const;
47         /** @return KDM until time in local time */
48         boost::posix_time::ptime until () const;
49
50         boost::filesystem::path cpl () const;
51         boost::filesystem::path directory () const;
52         bool write_to () const;
53         dcp::Formulation formulation () const;
54
55 private:
56         void setup_sensitivity ();
57         void update_cpl_choice ();
58         void update_cpl_summary ();
59         void cpl_browse_clicked ();
60
61         ScreensPanel* _screens;
62         KDMTimingPanel* _timing;
63         wxChoice* _cpl;
64         wxButton* _cpl_browse;
65         wxStaticText* _dcp_directory;
66         wxStaticText* _cpl_id;
67         wxStaticText* _cpl_annotation_text;
68         wxChoice* _type;
69         wxRadioButton* _write_to;
70 #ifdef DCPOMATIC_USE_OWN_DIR_PICKER
71         DirPickerCtrl* _folder;
72 #else
73         wxDirPickerCtrl* _folder;
74 #endif
75         wxRadioButton* _email;
76
77         std::vector<CPLSummary> _cpls;
78 };