Add console to dcpomatic_kdm on Windows. Tweak layout a bit more.
[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 <boost/shared_ptr.hpp>
24 #include <boost/date_time/posix_time/posix_time.hpp>
25 #include <map>
26
27 class Cinema;
28 class Screen;
29 class Film;
30 class ScreensPanel;
31 class KDMTimingPanel;
32 class KDMOutputPanel;
33 struct CPLSummary;
34
35 class KDMDialog : public wxDialog
36 {
37 public:
38         KDMDialog (wxWindow *, boost::shared_ptr<const Film>);
39
40         std::list<boost::shared_ptr<Screen> > screens () const;
41         /** @return KDM from time in local time */
42         boost::posix_time::ptime from () const;
43         /** @return KDM until time in local time */
44         boost::posix_time::ptime until () const;
45
46         boost::filesystem::path cpl () const;
47
48         boost::filesystem::path directory () const;
49         bool write_to () const;
50         dcp::Formulation formulation () const;
51
52 private:
53         void setup_sensitivity ();
54         void update_cpl_choice ();
55         void update_cpl_summary ();
56         void cpl_browse_clicked ();
57
58         ScreensPanel* _screens;
59         KDMTimingPanel* _timing;
60         KDMOutputPanel* _output;
61         wxChoice* _cpl;
62         wxButton* _cpl_browse;
63         wxStaticText* _dcp_directory;
64         wxStaticText* _cpl_id;
65         wxStaticText* _cpl_annotation_text;
66
67         std::vector<CPLSummary> _cpls;
68 };