Add some TRANSLATORS comments.
[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         /// TRANSLATORS: translate the word "Timing" here; do not include the "KDM|" prefix
65         h = new wxStaticText (this, wxID_ANY, S_("KDM|Timing"));
66         h->SetFont (subheading_font);
67         vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
68         _timing = new KDMTimingPanel (this);
69         vertical->Add (_timing);
70
71         /* Sub-heading: CPL */
72         h = new wxStaticText (this, wxID_ANY, _("CPL"));
73         h->SetFont (subheading_font);
74         vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
75         _cpl = new KDMCPLPanel (this, film->cpls ());
76         vertical->Add (_cpl);
77
78         /* Sub-heading: Output */
79         h = new wxStaticText (this, wxID_ANY, _("Output"));
80         h->SetFont (subheading_font);
81         vertical->Add (h, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
82         _output = new KDMOutputPanel (this, film->interop ());
83         vertical->Add (_output, 0, wxEXPAND | wxTOP, DCPOMATIC_SIZER_GAP);
84
85
86         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
87         if (buttons) {
88                 vertical->Add (buttons, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_Y_GAP);
89         }
90
91         /* Make an overall sizer to get a nice border, and put some buttons in */
92
93         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
94         overall_sizer->Add (vertical, 0, wxEXPAND | wxTOP | wxLEFT | wxRIGHT, DCPOMATIC_DIALOG_BORDER);
95
96         /* Bind */
97
98         _screens->ScreensChanged.connect (boost::bind (&KDMDialog::setup_sensitivity, this));
99         _timing->TimingChanged.connect (boost::bind (&KDMDialog::setup_sensitivity, this));
100
101         setup_sensitivity ();
102
103         SetSizer (overall_sizer);
104         overall_sizer->Layout ();
105         overall_sizer->SetSizeHints (this);
106 }
107
108 void
109 KDMDialog::setup_sensitivity ()
110 {
111         _screens->setup_sensitivity ();
112         _output->setup_sensitivity ();
113
114         bool const sd = _cpl->has_selected ();
115
116         wxButton* ok = dynamic_cast<wxButton *> (FindWindowById (wxID_OK, this));
117         if (ok) {
118                 ok->Enable (!_screens->screens().empty() && _timing->valid() && sd);
119         }
120 }
121
122 boost::filesystem::path
123 KDMDialog::cpl () const
124 {
125         return _cpl->cpl ();
126 }
127
128 list<shared_ptr<Screen> >
129 KDMDialog::screens () const
130 {
131         return _screens->screens ();
132 }
133
134 boost::posix_time::ptime
135 KDMDialog::from () const
136 {
137         return _timing->from ();
138 }
139
140 boost::posix_time::ptime
141 KDMDialog::until () const
142 {
143         return _timing->until ();
144 }
145
146 boost::filesystem::path
147 KDMDialog::directory () const
148 {
149         return _output->directory ();
150 }
151
152 bool
153 KDMDialog::write_to () const
154 {
155         return _output->write_to ();
156 }
157
158 dcp::Formulation
159 KDMDialog::formulation () const
160 {
161         return _output->formulation ();
162 }