Disallow KDM until times being before from times (#821).
[dcpomatic.git] / src / wx / kdm_dialog.cc
1 /*
2     Copyright (C) 2012-2015 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 "kdm_dialog.h"
21 #include "wx_util.h"
22 #include "screens_panel.h"
23 #include "kdm_timing_panel.h"
24 #include "kdm_output_panel.h"
25 #include "kdm_cpl_panel.h"
26 #include "lib/film.h"
27 #include "lib/screen.h"
28 #include <libcxml/cxml.h>
29 #include <wx/treectrl.h>
30 #include <wx/listctrl.h>
31 #include <iostream>
32
33 using std::string;
34 using std::map;
35 using std::list;
36 using std::pair;
37 using std::cout;
38 using std::vector;
39 using std::make_pair;
40 using boost::shared_ptr;
41
42 KDMDialog::KDMDialog (wxWindow* parent, boost::shared_ptr<const Film> film)
43         : wxDialog (parent, wxID_ANY, _("Make KDMs"))
44 {
45         /* Main sizer */
46         wxBoxSizer* vertical = new wxBoxSizer (wxVERTICAL);
47
48         /* Font for sub-headings */
49         wxFont subheading_font (*wxNORMAL_FONT);
50         subheading_font.SetWeight (wxFONTWEIGHT_BOLD);
51
52         /* Sub-heading: Screens */
53         wxStaticText* h = new wxStaticText (this, wxID_ANY, _("Screens"));
54         h->SetFont (subheading_font);
55         vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL);
56         _screens = new ScreensPanel (this);
57         /* Hack to stop KDM dialogs that are taller than my laptop screen; this
58            really isn't the right way to fix it...
59         */
60         _screens->SetMaxSize (wxSize (-1, 280));
61         vertical->Add (_screens, 1, wxEXPAND);
62
63         /* Sub-heading: Timing */
64         h = new wxStaticText (this, wxID_ANY, S_("KDM|Timing"));
65         h->SetFont (subheading_font);
66         vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
67         _timing = new KDMTimingPanel (this);
68         vertical->Add (_timing);
69
70         /* Sub-heading: CPL */
71         h = new wxStaticText (this, wxID_ANY, _("CPL"));
72         h->SetFont (subheading_font);
73         vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
74         _cpl = new KDMCPLPanel (this, film->cpls ());
75         vertical->Add (_cpl);
76
77         /* Sub-heading: Output */
78         h = new wxStaticText (this, wxID_ANY, _("Output"));
79         h->SetFont (subheading_font);
80         vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
81         _output = new KDMOutputPanel (this, film->interop ());
82         vertical->Add (_output, 0, wxEXPAND | wxTOP, DCPOMATIC_SIZER_GAP);
83
84
85         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
86         if (buttons) {
87                 vertical->Add (buttons, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_Y_GAP);
88         }
89
90         /* Make an overall sizer to get a nice border, and put some buttons in */
91
92         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
93         overall_sizer->Add (vertical, 0, wxEXPAND | wxTOP | wxLEFT | wxRIGHT, DCPOMATIC_DIALOG_BORDER);
94
95         /* Bind */
96
97         _screens->ScreensChanged.connect (boost::bind (&KDMDialog::setup_sensitivity, this));
98         _timing->TimingChanged.connect (boost::bind (&KDMDialog::setup_sensitivity, this));
99
100         setup_sensitivity ();
101
102         SetSizer (overall_sizer);
103         overall_sizer->Layout ();
104         overall_sizer->SetSizeHints (this);
105 }
106
107 void
108 KDMDialog::setup_sensitivity ()
109 {
110         _screens->setup_sensitivity ();
111         _output->setup_sensitivity ();
112
113         bool const sd = _cpl->has_selected ();
114
115         wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK, this));
116         if (ok) {
117                 ok->Enable (!_screens->screens().empty() && _timing->valid() && sd);
118         }
119 }
120
121 boost::filesystem::path
122 KDMDialog::cpl () const
123 {
124         return _cpl->cpl ();
125 }
126
127 list<shared_ptr<Screen> >
128 KDMDialog::screens () const
129 {
130         return _screens->screens ();
131 }
132
133 boost::posix_time::ptime
134 KDMDialog::from () const
135 {
136         return _timing->from ();
137 }
138
139 boost::posix_time::ptime
140 KDMDialog::until () const
141 {
142         return _timing->until ();
143 }
144
145 boost::filesystem::path
146 KDMDialog::directory () const
147 {
148         return _output->directory ();
149 }
150
151 bool
152 KDMDialog::write_to () const
153 {
154         return _output->write_to ();
155 }
156
157 dcp::Formulation
158 KDMDialog::formulation () const
159 {
160         return _output->formulation ();
161 }