Rename ScreenKDM -> KDMWithMetadata
[dcpomatic.git] / src / tools / dcpomatic.cc
1 /*
2     Copyright (C) 2012-2019 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file  src/tools/dcpomatic.cc
22  *  @brief The main DCP-o-matic GUI.
23  */
24
25 #include "wx/standard_controls.h"
26 #include "wx/film_viewer.h"
27 #include "wx/film_editor.h"
28 #include "wx/job_manager_view.h"
29 #include "wx/full_config_dialog.h"
30 #include "wx/wx_util.h"
31 #include "wx/film_name_location_dialog.h"
32 #include "wx/wx_signal_manager.h"
33 #include "wx/recreate_chain_dialog.h"
34 #include "wx/about_dialog.h"
35 #include "wx/kdm_dialog.h"
36 #include "wx/self_dkdm_dialog.h"
37 #include "wx/servers_list_dialog.h"
38 #include "wx/hints_dialog.h"
39 #include "wx/update_dialog.h"
40 #include "wx/content_panel.h"
41 #include "wx/report_problem_dialog.h"
42 #include "wx/video_waveform_dialog.h"
43 #include "wx/system_information_dialog.h"
44 #include "wx/save_template_dialog.h"
45 #include "wx/templates_dialog.h"
46 #include "wx/nag_dialog.h"
47 #include "wx/export_dialog.h"
48 #include "wx/paste_dialog.h"
49 #include "wx/focus_manager.h"
50 #include "wx/html_dialog.h"
51 #include "wx/initial_setup_dialog.h"
52 #include "wx/send_i18n_dialog.h"
53 #include "wx/i18n_hook.h"
54 #include "lib/film.h"
55 #include "lib/analytics.h"
56 #include "lib/emailer.h"
57 #include "lib/config.h"
58 #include "lib/util.h"
59 #include "lib/video_content.h"
60 #include "lib/content.h"
61 #include "lib/version.h"
62 #include "lib/signal_manager.h"
63 #include "lib/log.h"
64 #include "lib/screen.h"
65 #include "lib/job_manager.h"
66 #include "lib/exceptions.h"
67 #include "lib/cinema.h"
68 #include "lib/kdm_with_metadata.h"
69 #include "lib/send_kdm_email_job.h"
70 #include "lib/encode_server_finder.h"
71 #include "lib/update_checker.h"
72 #include "lib/cross.h"
73 #include "lib/content_factory.h"
74 #include "lib/compose.hpp"
75 #include "lib/cinema_kdms.h"
76 #include "lib/dcpomatic_socket.h"
77 #include "lib/hints.h"
78 #include "lib/dcp_content.h"
79 #include "lib/ffmpeg_encoder.h"
80 #include "lib/transcode_job.h"
81 #include "lib/dkdm_wrapper.h"
82 #include "lib/audio_content.h"
83 #include "lib/check_content_change_job.h"
84 #include "lib/text_content.h"
85 #include "lib/dcpomatic_log.h"
86 #include "lib/subtitle_encoder.h"
87 #include <dcp/exceptions.h>
88 #include <dcp/raw_convert.h>
89 #include <wx/generic/aboutdlgg.h>
90 #include <wx/stdpaths.h>
91 #include <wx/cmdline.h>
92 #include <wx/preferences.h>
93 #include <wx/splash.h>
94 #include <wx/wxhtml.h>
95 #ifdef __WXGTK__
96 #include <X11/Xlib.h>
97 #endif
98 #ifdef __WXMSW__
99 #include <shellapi.h>
100 #endif
101 #ifdef __WXOSX__
102 #include <ApplicationServices/ApplicationServices.h>
103 #endif
104 #include <boost/filesystem.hpp>
105 #include <boost/noncopyable.hpp>
106 #include <boost/foreach.hpp>
107 #include <boost/algorithm/string.hpp>
108 #include <iostream>
109 #include <fstream>
110 /* This is OK as it's only used with DCPOMATIC_WINDOWS */
111 #include <sstream>
112
113 #ifdef check
114 #undef check
115 #endif
116
117 using std::cout;
118 using std::wcout;
119 using std::string;
120 using std::vector;
121 using std::wstring;
122 using std::wstringstream;
123 using std::map;
124 using std::make_pair;
125 using std::list;
126 using std::exception;
127 using boost::shared_ptr;
128 using boost::dynamic_pointer_cast;
129 using boost::optional;
130 using boost::function;
131 using boost::is_any_of;
132 using boost::algorithm::find;
133 using dcp::raw_convert;
134
135 class FilmChangedClosingDialog : public boost::noncopyable
136 {
137 public:
138         explicit FilmChangedClosingDialog (string name)
139         {
140                 _dialog = new wxMessageDialog (
141                         0,
142                         wxString::Format (_("Save changes to film \"%s\" before closing?"), std_to_wx (name).data()),
143                         /// TRANSLATORS: this is the heading for a dialog box, which tells the user that the current
144                         /// project (Film) has been changed since it was last saved.
145                         _("Film changed"),
146                         wxYES_NO | wxCANCEL | wxYES_DEFAULT | wxICON_QUESTION
147                         );
148
149                 _dialog->SetYesNoCancelLabels (
150                         _("Save film and close"), _("Close without saving film"), _("Don't close")
151                         );
152         }
153
154         ~FilmChangedClosingDialog ()
155         {
156                 _dialog->Destroy ();
157         }
158
159         int run ()
160         {
161                 return _dialog->ShowModal ();
162         }
163
164 private:
165         wxMessageDialog* _dialog;
166 };
167
168 class FilmChangedDuplicatingDialog : public boost::noncopyable
169 {
170 public:
171         explicit FilmChangedDuplicatingDialog (string name)
172         {
173                 _dialog = new wxMessageDialog (
174                         0,
175                         wxString::Format (_("Save changes to film \"%s\" before duplicating?"), std_to_wx (name).data()),
176                         /// TRANSLATORS: this is the heading for a dialog box, which tells the user that the current
177                         /// project (Film) has been changed since it was last saved.
178                         _("Film changed"),
179                         wxYES_NO | wxCANCEL | wxYES_DEFAULT | wxICON_QUESTION
180                         );
181
182                 _dialog->SetYesNoCancelLabels (
183                         _("Save film and duplicate"), _("Duplicate without saving film"), _("Don't duplicate")
184                         );
185         }
186
187         ~FilmChangedDuplicatingDialog ()
188         {
189                 _dialog->Destroy ();
190         }
191
192         int run ()
193         {
194                 return _dialog->ShowModal ();
195         }
196
197 private:
198         wxMessageDialog* _dialog;
199 };
200
201 #define ALWAYS                        0x0
202 #define NEEDS_FILM                    0x1
203 #define NOT_DURING_DCP_CREATION       0x2
204 #define NEEDS_CPL                     0x4
205 #define NEEDS_SINGLE_SELECTED_CONTENT 0x8
206 #define NEEDS_SELECTED_CONTENT        0x10
207 #define NEEDS_SELECTED_VIDEO_CONTENT  0x20
208 #define NEEDS_CLIPBOARD               0x40
209 #define NEEDS_ENCRYPTION              0x80
210
211 map<wxMenuItem*, int> menu_items;
212
213 enum {
214         ID_file_new = 1,
215         ID_file_open,
216         ID_file_save,
217         ID_file_save_as_template,
218         ID_file_duplicate,
219         ID_file_duplicate_and_open,
220         ID_file_history,
221         /* Allow spare IDs after _history for the recent files list */
222         ID_file_close = 100,
223         ID_edit_copy,
224         ID_edit_paste,
225         ID_content_scale_to_fit_width,
226         ID_content_scale_to_fit_height,
227         ID_jobs_make_dcp,
228         ID_jobs_make_dcp_batch,
229         ID_jobs_make_kdms,
230         ID_jobs_make_self_dkdm,
231         ID_jobs_export,
232         ID_jobs_send_dcp_to_tms,
233         ID_jobs_show_dcp,
234         ID_jobs_open_dcp_in_player,
235         ID_view_closed_captions,
236         ID_view_video_waveform,
237         ID_tools_hints,
238         ID_tools_encoding_servers,
239         ID_tools_manage_templates,
240         ID_tools_check_for_updates,
241         ID_tools_send_translations,
242         ID_tools_system_information,
243         ID_tools_restore_default_preferences,
244         ID_help_report_a_problem,
245         /* IDs for shortcuts (with no associated menu item) */
246         ID_add_file,
247         ID_remove,
248         ID_start_stop,
249         ID_timeline,
250         ID_back_frame,
251         ID_forward_frame
252 };
253
254 class DOMFrame : public wxFrame
255 {
256 public:
257         explicit DOMFrame (wxString const & title)
258                 : wxFrame (NULL, -1, title)
259                 , _video_waveform_dialog (0)
260                 , _system_information_dialog (0)
261                 , _hints_dialog (0)
262                 , _servers_list_dialog (0)
263                 , _config_dialog (0)
264                 , _kdm_dialog (0)
265                 , _templates_dialog (0)
266                 , _file_menu (0)
267                 , _history_items (0)
268                 , _history_position (0)
269                 , _history_separator (0)
270                 , _update_news_requested (false)
271         {
272 #if defined(DCPOMATIC_WINDOWS)
273                 if (Config::instance()->win32_console ()) {
274                         AllocConsole();
275
276                         HANDLE handle_out = GetStdHandle(STD_OUTPUT_HANDLE);
277                         int hCrt = _open_osfhandle((intptr_t) handle_out, _O_TEXT);
278                         FILE* hf_out = _fdopen(hCrt, "w");
279                         setvbuf(hf_out, NULL, _IONBF, 1);
280                         *stdout = *hf_out;
281
282                         HANDLE handle_in = GetStdHandle(STD_INPUT_HANDLE);
283                         hCrt = _open_osfhandle((intptr_t) handle_in, _O_TEXT);
284                         FILE* hf_in = _fdopen(hCrt, "r");
285                         setvbuf(hf_in, NULL, _IONBF, 128);
286                         *stdin = *hf_in;
287
288                         cout << "DCP-o-matic is starting." << "\n";
289                 }
290 #endif
291
292                 wxMenuBar* bar = new wxMenuBar;
293                 setup_menu (bar);
294                 SetMenuBar (bar);
295
296 #ifdef DCPOMATIC_WINDOWS
297                 SetIcon (wxIcon (std_to_wx ("id")));
298 #endif
299
300                 _config_changed_connection = Config::instance()->Changed.connect (boost::bind (&DOMFrame::config_changed, this, _1));
301                 config_changed (Config::OTHER);
302
303                 _analytics_message_connection = Analytics::instance()->Message.connect(boost::bind(&DOMFrame::analytics_message, this, _1, _2));
304
305                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_new, this),                ID_file_new);
306                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_open, this),               ID_file_open);
307                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_save, this),               ID_file_save);
308                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_save_as_template, this),   ID_file_save_as_template);
309                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_duplicate, this),          ID_file_duplicate);
310                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_duplicate_and_open, this), ID_file_duplicate_and_open);
311                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_close, this),              ID_file_close);
312                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_history, this, _1),        ID_file_history, ID_file_history + HISTORY_SIZE);
313                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_exit, this),               wxID_EXIT);
314                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_copy, this),               ID_edit_copy);
315                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_paste, this),              ID_edit_paste);
316                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_preferences, this),        wxID_PREFERENCES);
317                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::content_scale_to_fit_width, this), ID_content_scale_to_fit_width);
318                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::content_scale_to_fit_height, this), ID_content_scale_to_fit_height);
319                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_dcp, this),           ID_jobs_make_dcp);
320                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_kdms, this),          ID_jobs_make_kdms);
321                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_dcp_batch, this),     ID_jobs_make_dcp_batch);
322                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_self_dkdm, this),     ID_jobs_make_self_dkdm);
323                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_export, this),             ID_jobs_export);
324                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_send_dcp_to_tms, this),    ID_jobs_send_dcp_to_tms);
325                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_show_dcp, this),           ID_jobs_show_dcp);
326                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_open_dcp_in_player, this), ID_jobs_open_dcp_in_player);
327                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_closed_captions, this),    ID_view_closed_captions);
328                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::view_video_waveform, this),     ID_view_video_waveform);
329                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_hints, this),             ID_tools_hints);
330                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_encoding_servers, this),  ID_tools_encoding_servers);
331                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_manage_templates, this),  ID_tools_manage_templates);
332                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_check_for_updates, this), ID_tools_check_for_updates);
333                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_send_translations, this), ID_tools_send_translations);
334                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_system_information, this),ID_tools_system_information);
335                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_restore_default_preferences, this), ID_tools_restore_default_preferences);
336                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_about, this),              wxID_ABOUT);
337                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_report_a_problem, this),   ID_help_report_a_problem);
338
339                 Bind (wxEVT_CLOSE_WINDOW, boost::bind (&DOMFrame::close, this, _1));
340
341                 /* Use a panel as the only child of the Frame so that we avoid
342                    the dark-grey background on Windows.
343                 */
344                 wxPanel* overall_panel = new wxPanel (this, wxID_ANY);
345
346                 _film_viewer.reset (new FilmViewer (overall_panel));
347                 _controls = new StandardControls (overall_panel, _film_viewer, true);
348                 _film_editor = new FilmEditor (overall_panel, _film_viewer);
349                 JobManagerView* job_manager_view = new JobManagerView (overall_panel, false);
350
351                 wxBoxSizer* right_sizer = new wxBoxSizer (wxVERTICAL);
352                 right_sizer->Add (_film_viewer->panel(), 2, wxEXPAND | wxALL, 6);
353                 right_sizer->Add (_controls, 0, wxEXPAND | wxALL, 6);
354                 right_sizer->Add (job_manager_view, 1, wxEXPAND | wxALL, 6);
355
356                 wxBoxSizer* main_sizer = new wxBoxSizer (wxHORIZONTAL);
357                 main_sizer->Add (_film_editor, 0, wxEXPAND | wxALL, 6);
358                 main_sizer->Add (right_sizer, 1, wxEXPAND | wxALL, 6);
359
360                 set_menu_sensitivity ();
361
362                 _film_editor->FileChanged.connect (bind (&DOMFrame::file_changed, this, _1));
363                 _film_editor->content_panel()->SelectionChanged.connect (boost::bind (&DOMFrame::set_menu_sensitivity, this));
364                 file_changed ("");
365
366                 JobManager::instance()->ActiveJobsChanged.connect (boost::bind (&DOMFrame::set_menu_sensitivity, this));
367
368                 overall_panel->SetSizer (main_sizer);
369
370                 UpdateChecker::instance()->StateChanged.connect (boost::bind (&DOMFrame::update_checker_state_changed, this));
371
372                 FocusManager::instance()->SetFocus.connect (boost::bind (&DOMFrame::remove_accelerators, this));
373                 FocusManager::instance()->KillFocus.connect (boost::bind (&DOMFrame::add_accelerators, this));
374                 add_accelerators ();
375         }
376
377         void add_accelerators ()
378         {
379 #ifdef __WXOSX__
380                 int accelerators = 7;
381 #else
382                 int accelerators = 6;
383 #endif
384                 wxAcceleratorEntry* accel = new wxAcceleratorEntry[accelerators];
385                 accel[0].Set (wxACCEL_CTRL, static_cast<int>('A'), ID_add_file);
386                 accel[1].Set (wxACCEL_NORMAL, WXK_DELETE, ID_remove);
387                 accel[2].Set (wxACCEL_NORMAL, WXK_SPACE, ID_start_stop);
388                 accel[3].Set (wxACCEL_CTRL, static_cast<int>('T'), ID_timeline);
389                 accel[4].Set (wxACCEL_NORMAL, WXK_LEFT, ID_back_frame);
390                 accel[5].Set (wxACCEL_NORMAL, WXK_RIGHT, ID_forward_frame);
391 #ifdef __WXOSX__
392                 accel[6].Set (wxACCEL_CTRL, static_cast<int>('W'), ID_file_close);
393 #endif
394                 Bind (wxEVT_MENU, boost::bind (&ContentPanel::add_file_clicked, _film_editor->content_panel()), ID_add_file);
395                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::remove_clicked, this, _1), ID_remove);
396                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::start_stop_pressed, this), ID_start_stop);
397                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::timeline_pressed, this), ID_timeline);
398                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::back_frame, this), ID_back_frame);
399                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::forward_frame, this), ID_forward_frame);
400                 wxAcceleratorTable accel_table (accelerators, accel);
401                 SetAcceleratorTable (accel_table);
402                 delete[] accel;
403         }
404
405         void remove_accelerators ()
406         {
407                 SetAcceleratorTable (wxAcceleratorTable ());
408         }
409
410         void remove_clicked (wxCommandEvent& ev)
411         {
412                 if (_film_editor->content_panel()->remove_clicked (true)) {
413                         ev.Skip ();
414                 }
415         }
416
417         void new_film (boost::filesystem::path path, optional<string> template_name)
418         {
419                 shared_ptr<Film> film (new Film (path));
420                 if (template_name) {
421                         film->use_template (template_name.get());
422                 }
423                 film->set_name (path.filename().generic_string());
424                 film->write_metadata ();
425                 set_film (film);
426         }
427
428         void load_film (boost::filesystem::path file)
429         try
430         {
431                 shared_ptr<Film> film (new Film (file));
432                 list<string> const notes = film->read_metadata ();
433
434                 if (film->state_version() == 4) {
435                         error_dialog (
436                                 0,
437                                 _("This film was created with an old version of DVD-o-matic and may not load correctly "
438                                   "in this version.  Please check the film's settings carefully.")
439                                 );
440                 }
441
442                 BOOST_FOREACH (string i, notes) {
443                         error_dialog (0, std_to_wx(i));
444                 }
445
446                 set_film (film);
447
448                 JobManager::instance()->add(shared_ptr<Job>(new CheckContentChangeJob(film)));
449         }
450         catch (FileNotFoundError& e) {
451                 boost::filesystem::path const dir = e.file().parent_path();
452                 if (boost::filesystem::exists(dir / "ASSETMAP") || boost::filesystem::exists(dir / "ASSETMAP.xml")) {
453                         error_dialog (
454                                 this, _("Could not open this folder as a DCP-o-matic project."),
455                                 _("It looks like you are trying to open a DCP.  File -> Open is for loading DCP-o-matic projects, not DCPs.  To import a DCP, create a new project with File -> New and then click the \"Add DCP...\" button.")
456                                 );
457                 } else {
458                         wxString const p = std_to_wx(file.string ());
459                         error_dialog (this, wxString::Format(_("Could not open film at %s"), p.data()), std_to_wx(e.what()));
460                 }
461
462         } catch (std::exception& e) {
463                 wxString const p = std_to_wx (file.string());
464                 error_dialog (this, wxString::Format(_("Could not open film at %s"), p.data()), std_to_wx(e.what()));
465         }
466
467         void set_film (shared_ptr<Film> film)
468         {
469                 _film = film;
470                 _film_viewer->set_film (_film);
471                 _film_editor->set_film (_film);
472                 _controls->set_film (_film);
473                 if (_video_waveform_dialog) {
474                         _video_waveform_dialog->Destroy ();
475                         _video_waveform_dialog = 0;
476                 }
477                 set_menu_sensitivity ();
478                 if (_film && _film->directory()) {
479                         Config::instance()->add_to_history (_film->directory().get());
480                 }
481                 if (_film) {
482                         _film->Change.connect (boost::bind (&DOMFrame::film_change, this, _1));
483                         _film->Message.connect (boost::bind(&DOMFrame::film_message, this, _1));
484                         dcpomatic_log = _film->log ();
485                 }
486         }
487
488         shared_ptr<Film> film () const {
489                 return _film;
490         }
491
492 private:
493
494         void film_message (string m)
495         {
496                 message_dialog (this, std_to_wx(m));
497         }
498
499         void film_change (ChangeType type)
500         {
501                 if (type == CHANGE_TYPE_DONE) {
502                         set_menu_sensitivity ();
503                 }
504         }
505
506         void file_changed (boost::filesystem::path f)
507         {
508                 string s = wx_to_std (_("DCP-o-matic"));
509                 if (!f.empty ()) {
510                         s += " - " + f.string ();
511                 }
512
513                 SetTitle (std_to_wx (s));
514         }
515
516         void file_new ()
517         {
518                 FilmNameLocationDialog* d = new FilmNameLocationDialog (this, _("New Film"), true);
519                 int const r = d->ShowModal ();
520
521                 if (r == wxID_OK && d->check_path() && maybe_save_then_delete_film<FilmChangedClosingDialog>()) {
522                         try {
523                                 new_film (d->path(), d->template_name());
524                         } catch (boost::filesystem::filesystem_error& e) {
525 #ifdef DCPOMATIC_WINDOWS
526                                 string bad_chars = "<>:\"/|?*";
527                                 string const filename = d->path().filename().string();
528                                 string found_bad_chars;
529                                 for (size_t i = 0; i < bad_chars.length(); ++i) {
530                                         if (filename.find(bad_chars[i]) != string::npos && found_bad_chars.find(bad_chars[i]) == string::npos) {
531                                                 found_bad_chars += bad_chars[i];
532                                         }
533                                 }
534                                 wxString message = _("Could not create folder to store film.");
535                                 message += "  ";
536                                 if (!found_bad_chars.empty()) {
537                                         message += wxString::Format (_("Try removing the %s characters from your folder name."), std_to_wx(found_bad_chars).data());
538                                 } else {
539                                         message += _("Please check that you do not have Windows controlled folder access enabled for DCP-o-matic.");
540                                 }
541                                 error_dialog (this, message, std_to_wx(e.what()));
542 #else
543                                 error_dialog (this, _("Could not create folder to store film."), std_to_wx(e.what()));
544 #endif
545                         }
546                 }
547
548                 d->Destroy ();
549         }
550
551         void file_open ()
552         {
553                 wxDirDialog* c = new wxDirDialog (
554                         this,
555                         _("Select film to open"),
556                         std_to_wx (Config::instance()->default_directory_or (wx_to_std (wxStandardPaths::Get().GetDocumentsDir())).string ()),
557                         wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST
558                         );
559
560                 int r;
561                 while (true) {
562                         r = c->ShowModal ();
563                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
564                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
565                         } else {
566                                 break;
567                         }
568                 }
569
570                 if (r == wxID_OK && maybe_save_then_delete_film<FilmChangedClosingDialog>()) {
571                         load_film (wx_to_std (c->GetPath ()));
572                 }
573
574                 c->Destroy ();
575         }
576
577         void file_save ()
578         {
579                 _film->write_metadata ();
580         }
581
582         void file_save_as_template ()
583         {
584                 SaveTemplateDialog* d = new SaveTemplateDialog (this);
585                 int const r = d->ShowModal ();
586                 if (r == wxID_OK) {
587                         Config::instance()->save_template (_film, d->name ());
588                 }
589                 d->Destroy ();
590         }
591
592         void file_duplicate ()
593         {
594                 FilmNameLocationDialog* d = new FilmNameLocationDialog (this, _("Duplicate Film"), false);
595                 int const r = d->ShowModal ();
596
597                 if (r == wxID_OK && d->check_path() && maybe_save_film<FilmChangedDuplicatingDialog>()) {
598                         shared_ptr<Film> film (new Film (d->path()));
599                         film->copy_from (_film);
600                         film->set_name (d->path().filename().generic_string());
601                         film->write_metadata ();
602                 }
603
604                 d->Destroy ();
605         }
606
607         void file_duplicate_and_open ()
608         {
609                 FilmNameLocationDialog* d = new FilmNameLocationDialog (this, _("Duplicate Film"), false);
610                 int const r = d->ShowModal ();
611
612                 if (r == wxID_OK && d->check_path() && maybe_save_film<FilmChangedDuplicatingDialog>()) {
613                         shared_ptr<Film> film (new Film (d->path()));
614                         film->copy_from (_film);
615                         film->set_name (d->path().filename().generic_string());
616                         film->write_metadata ();
617                         set_film (film);
618                 }
619
620                 d->Destroy ();
621         }
622
623         void file_close ()
624         {
625                 if (_film && _film->dirty ()) {
626
627                         FilmChangedClosingDialog* dialog = new FilmChangedClosingDialog (_film->name ());
628                         int const r = dialog->run ();
629                         delete dialog;
630
631                         switch (r) {
632                         case wxID_NO:
633                                 /* Don't save and carry on to close */
634                                 break;
635                         case wxID_YES:
636                                 /* Save and carry on to close */
637                                 _film->write_metadata ();
638                                 break;
639                         case wxID_CANCEL:
640                                 /* Stop */
641                                 return;
642                         }
643                 }
644
645                 set_film (shared_ptr<Film>());
646         }
647
648         void file_history (wxCommandEvent& event)
649         {
650                 vector<boost::filesystem::path> history = Config::instance()->history ();
651                 int n = event.GetId() - ID_file_history;
652                 if (n >= 0 && n < static_cast<int> (history.size ()) && maybe_save_then_delete_film<FilmChangedClosingDialog>()) {
653                         load_film (history[n]);
654                 }
655         }
656
657         void file_exit ()
658         {
659                 /* false here allows the close handler to veto the close request */
660                 Close (false);
661         }
662
663         void edit_copy ()
664         {
665                 ContentList const sel = _film_editor->content_panel()->selected();
666                 DCPOMATIC_ASSERT (sel.size() == 1);
667                 _clipboard = sel.front()->clone();
668         }
669
670         void edit_paste ()
671         {
672                 DCPOMATIC_ASSERT (_clipboard);
673
674                 PasteDialog* d = new PasteDialog (this, static_cast<bool>(_clipboard->video), static_cast<bool>(_clipboard->audio), !_clipboard->text.empty());
675                 if (d->ShowModal() == wxID_OK) {
676                         BOOST_FOREACH (shared_ptr<Content> i, _film_editor->content_panel()->selected()) {
677                                 if (d->video() && i->video) {
678                                         DCPOMATIC_ASSERT (_clipboard->video);
679                                         i->video->take_settings_from (_clipboard->video);
680                                 }
681                                 if (d->audio() && i->audio) {
682                                         DCPOMATIC_ASSERT (_clipboard->audio);
683                                         i->audio->take_settings_from (_clipboard->audio);
684                                 }
685
686                                 if (d->text()) {
687                                         list<shared_ptr<TextContent> >::iterator j = i->text.begin ();
688                                         list<shared_ptr<TextContent> >::const_iterator k = _clipboard->text.begin ();
689                                         while (j != i->text.end() && k != _clipboard->text.end()) {
690                                                 (*j)->take_settings_from (*k);
691                                                 ++j;
692                                                 ++k;
693                                         }
694                                 }
695                         }
696                 }
697                 d->Destroy ();
698         }
699
700         void edit_preferences ()
701         {
702                 if (!_config_dialog) {
703                         _config_dialog = create_full_config_dialog ();
704                 }
705                 _config_dialog->Show (this);
706         }
707
708         void tools_restore_default_preferences ()
709         {
710                 wxMessageDialog* d = new wxMessageDialog (
711                         0,
712                         _("Are you sure you want to restore preferences to their defaults?  This cannot be undone."),
713                         _("Restore default preferences"),
714                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
715                         );
716
717                 int const r = d->ShowModal ();
718                 d->Destroy ();
719
720                 if (r == wxID_YES) {
721                         Config::restore_defaults ();
722                 }
723         }
724
725         void jobs_make_dcp ()
726         {
727                 double required;
728                 double available;
729                 bool can_hard_link;
730
731                 if (!_film->should_be_enough_disk_space (required, available, can_hard_link)) {
732                         wxString message;
733                         if (can_hard_link) {
734                                 message = wxString::Format (_("The DCP for this film will take up about %.1f GB, and the disk that you are using only has %.1f GB available.  Do you want to continue anyway?"), required, available);
735                         } else {
736                                 message = wxString::Format (_("The DCP and intermediate files for this film will take up about %.1f GB, and the disk that you are using only has %.1f GB available.  You would need half as much space if the filesystem supported hard links, but it does not.  Do you want to continue anyway?"), required, available);
737                         }
738                         if (!confirm_dialog (this, message)) {
739                                 return;
740                         }
741                 }
742
743                 if (Config::instance()->show_hints_before_make_dcp()) {
744                         HintsDialog* hints = new HintsDialog (this, _film, false);
745                         int const r = hints->ShowModal();
746                         hints->Destroy ();
747                         if (r == wxID_CANCEL) {
748                                 return;
749                         }
750                 }
751
752                 if (_film->encrypted ()) {
753                         NagDialog::maybe_nag (
754                                 this,
755                                 Config::NAG_ENCRYPTED_METADATA,
756                                 _("You are making an encrypted DCP.  It will not be possible to make KDMs for this DCP unless you have copies of "
757                                   "the <tt>metadata.xml</tt> file within the film and the metadata files within the DCP.\n\n"
758                                   "You should ensure that these files are <span weight=\"bold\" size=\"larger\">BACKED UP</span> "
759                                   "if you want to make KDMs for this film.")
760                                 );
761                 }
762
763                 /* Remove any existing DCP if the user agrees */
764                 boost::filesystem::path const dcp_dir = _film->dir (_film->dcp_name(), false);
765                 if (boost::filesystem::exists (dcp_dir)) {
766                         if (!confirm_dialog (this, wxString::Format (_("Do you want to overwrite the existing DCP %s?"), std_to_wx(dcp_dir.string()).data()))) {
767                                 return;
768                         }
769                         boost::filesystem::remove_all (dcp_dir);
770                 }
771
772                 try {
773                         /* It seems to make sense to auto-save metadata here, since the make DCP may last
774                            a long time, and crashes/power failures are moderately likely.
775                         */
776                         _film->write_metadata ();
777                         _film->make_dcp (true);
778                 } catch (BadSettingError& e) {
779                         error_dialog (this, wxString::Format (_("Bad setting for %s."), std_to_wx(e.setting()).data()), std_to_wx(e.what()));
780                 } catch (std::exception& e) {
781                         error_dialog (this, wxString::Format (_("Could not make DCP.")), std_to_wx(e.what()));
782                 }
783         }
784
785         void jobs_make_kdms ()
786         {
787                 if (!_film) {
788                         return;
789                 }
790
791                 if (_kdm_dialog) {
792                         _kdm_dialog->Destroy ();
793                         _kdm_dialog = 0;
794                 }
795
796                 _kdm_dialog = new KDMDialog (this, _film);
797                 _kdm_dialog->Show ();
798         }
799
800         /** @return false if we succeeded, true if not */
801         bool send_to_other_tool (int port, function<void(boost::filesystem::path)> start, string message)
802         {
803                 /* i = 0; try to connect via socket
804                    i = 1; try again, and then try to start the tool
805                    i = 2 onwards; try again.
806                 */
807                 for (int i = 0; i < 8; ++i) {
808                         try {
809                                 boost::asio::io_service io_service;
810                                 boost::asio::ip::tcp::resolver resolver (io_service);
811                                 boost::asio::ip::tcp::resolver::query query ("127.0.0.1", raw_convert<string> (port));
812                                 boost::asio::ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve (query);
813                                 Socket socket (5);
814                                 socket.connect (*endpoint_iterator);
815                                 DCPOMATIC_ASSERT (_film->directory ());
816                                 socket.write (message.length() + 1);
817                                 socket.write ((uint8_t *) message.c_str(), message.length() + 1);
818                                 /* OK\0 */
819                                 uint8_t ok[3];
820                                 socket.read (ok, 3);
821                                 return false;
822                         } catch (exception& e) {
823
824                         }
825
826                         if (i == 1) {
827                                 start (wx_to_std (wxStandardPaths::Get().GetExecutablePath()));
828                         }
829
830                         dcpomatic_sleep_seconds (1);
831                 }
832
833                 return true;
834         }
835
836         void jobs_make_dcp_batch ()
837         {
838                 if (!_film) {
839                         return;
840                 }
841
842                 if (Config::instance()->show_hints_before_make_dcp()) {
843                         HintsDialog* hints = new HintsDialog (this, _film, false);
844                         int const r = hints->ShowModal();
845                         hints->Destroy ();
846                         if (r == wxID_CANCEL) {
847                                 return;
848                         }
849                 }
850
851                 _film->write_metadata ();
852
853                 if (send_to_other_tool (BATCH_JOB_PORT, bind (&start_batch_converter, _1), _film->directory()->string())) {
854                         error_dialog (this, _("Could not find batch converter."));
855                 }
856         }
857
858         void jobs_open_dcp_in_player ()
859         {
860                 if (!_film) {
861                         return;
862                 }
863
864                 if (send_to_other_tool (PLAYER_PLAY_PORT, bind (&start_player, _1), _film->dir(_film->dcp_name(false)).string())) {
865                         error_dialog (this, _("Could not find player."));
866                 }
867         }
868
869         void jobs_make_self_dkdm ()
870         {
871                 if (!_film) {
872                         return;
873                 }
874
875                 SelfDKDMDialog* d = new SelfDKDMDialog (this, _film);
876                 if (d->ShowModal () != wxID_OK) {
877                         d->Destroy ();
878                         return;
879                 }
880
881                 NagDialog::maybe_nag (
882                         this,
883                         Config::NAG_DKDM_CONFIG,
884                         wxString::Format (
885                                 _("You are making a DKDM which is encrypted by a private key held in"
886                                   "\n\n<tt>%s</tt>\n\nIt is <span weight=\"bold\" size=\"larger\">VITALLY IMPORTANT</span> "
887                                   "that you <span weight=\"bold\" size=\"larger\">BACK UP THIS FILE</span> since if it is lost "
888                                   "your DKDMs (and the DCPs they protect) will become useless."), std_to_wx(Config::config_file().string()).data()
889                                 )
890                         );
891
892
893                 dcp::LocalTime from (Config::instance()->signer_chain()->leaf().not_before());
894                 from.add_minutes (1);
895                 dcp::LocalTime to (Config::instance()->signer_chain()->leaf().not_after());
896                 to.add_minutes (-1);
897
898                 optional<dcp::EncryptedKDM> kdm;
899                 try {
900                         kdm = _film->make_kdm (
901                                 Config::instance()->decryption_chain()->leaf(),
902                                 vector<string>(),
903                                 d->cpl (),
904                                 from, to,
905                                 dcp::MODIFIED_TRANSITIONAL_1,
906                                 true,
907                                 0
908                                 );
909                 } catch (dcp::NotEncryptedError& e) {
910                         error_dialog (this, _("CPL's content is not encrypted."));
911                 } catch (exception& e) {
912                         error_dialog (this, e.what ());
913                 } catch (...) {
914                         error_dialog (this, _("An unknown exception occurred."));
915                 }
916
917                 if (kdm) {
918                         if (d->internal ()) {
919                                 shared_ptr<DKDMGroup> dkdms = Config::instance()->dkdms ();
920                                 dkdms->add (shared_ptr<DKDM> (new DKDM (kdm.get())));
921                                 Config::instance()->changed ();
922                         } else {
923                                 boost::filesystem::path path = d->directory() / (_film->dcp_name(false) + "_DKDM.xml");
924                                 kdm->as_xml (path);
925                         }
926                 }
927
928                 d->Destroy ();
929         }
930
931         void jobs_export ()
932         {
933                 ExportDialog* d = new ExportDialog (this, _film->isdcf_name(true));
934                 if (d->ShowModal() == wxID_OK) {
935                         if (boost::filesystem::exists(d->path())) {
936                                 bool ok = confirm_dialog(
937                                                 this,
938                                                 wxString::Format (_("File %s already exists.  Do you want to overwrite it?"), std_to_wx(d->path().string()).data())
939                                                 );
940
941                                 if (!ok) {
942                                         d->Destroy ();
943                                         return;
944                                 }
945                         }
946
947                         shared_ptr<TranscodeJob> job (new TranscodeJob (_film));
948                         if (d->format() == EXPORT_FORMAT_SUBTITLES_DCP) {
949                                 job->set_encoder (
950                                         shared_ptr<SubtitleEncoder>(new SubtitleEncoder(_film, job, d->path(), d->split_reels()))
951                                         );
952                         } else {
953                                 job->set_encoder (
954                                         shared_ptr<FFmpegEncoder> (
955                                                 new FFmpegEncoder (_film, job, d->path(), d->format(), d->mixdown_to_stereo(), d->split_reels(), d->x264_crf()
956 #ifdef DCPOMATIC_VARIANT_SWAROOP
957                                                                    , optional<dcp::Key>(), optional<string>()
958 #endif
959                                                         )
960                                                 )
961                                         );
962                         }
963                         JobManager::instance()->add (job);
964                 }
965                 d->Destroy ();
966         }
967
968         void content_scale_to_fit_width ()
969         {
970                 ContentList vc = _film_editor->content_panel()->selected_video ();
971                 for (ContentList::iterator i = vc.begin(); i != vc.end(); ++i) {
972                         (*i)->video->scale_and_crop_to_fit_width (_film);
973                 }
974         }
975
976         void content_scale_to_fit_height ()
977         {
978                 ContentList vc = _film_editor->content_panel()->selected_video ();
979                 for (ContentList::iterator i = vc.begin(); i != vc.end(); ++i) {
980                         (*i)->video->scale_and_crop_to_fit_height (_film);
981                 }
982         }
983
984         void jobs_send_dcp_to_tms ()
985         {
986                 _film->send_dcp_to_tms ();
987         }
988
989         void jobs_show_dcp ()
990         {
991                 DCPOMATIC_ASSERT (_film->directory ());
992 #ifdef DCPOMATIC_WINDOWS
993                 wstringstream args;
994                 args << "/select," << _film->dir (_film->dcp_name(false));
995                 ShellExecute (0, L"open", L"explorer.exe", args.str().c_str(), 0, SW_SHOWDEFAULT);
996 #endif
997
998 #ifdef DCPOMATIC_LINUX
999                 int r = system ("which nautilus");
1000                 if (WEXITSTATUS (r) == 0) {
1001                         r = system (String::compose("nautilus \"%1\"", _film->directory()->string()).c_str());
1002                         if (WEXITSTATUS (r)) {
1003                                 error_dialog (this, _("Could not show DCP."), _("Could not run nautilus"));
1004                         }
1005                 } else {
1006                         int r = system ("which konqueror");
1007                         if (WEXITSTATUS (r) == 0) {
1008                                 r = system (String::compose ("konqueror \"%1\"", _film->directory()->string()).c_str());
1009                                 if (WEXITSTATUS (r)) {
1010                                         error_dialog (this, _("Could not show DCP"), _("Could not run konqueror"));
1011                                 }
1012                         }
1013                 }
1014 #endif
1015
1016 #ifdef DCPOMATIC_OSX
1017                 int r = system (String::compose ("open -R \"%1\"", _film->dir (_film->dcp_name(false)).string()).c_str());
1018                 if (WEXITSTATUS (r)) {
1019                         error_dialog (this, _("Could not show DCP"));
1020                 }
1021 #endif
1022         }
1023
1024         void view_closed_captions ()
1025         {
1026                 _film_viewer->show_closed_captions ();
1027         }
1028
1029         void view_video_waveform ()
1030         {
1031                 if (!_video_waveform_dialog) {
1032                         _video_waveform_dialog = new VideoWaveformDialog (this, _film, _film_viewer);
1033                 }
1034
1035                 _video_waveform_dialog->Show ();
1036         }
1037
1038         void tools_system_information ()
1039         {
1040                 if (!_system_information_dialog) {
1041                         _system_information_dialog = new SystemInformationDialog (this, _film_viewer);
1042                 }
1043
1044                 _system_information_dialog->Show ();
1045         }
1046
1047         void tools_hints ()
1048         {
1049                 if (!_hints_dialog) {
1050                         _hints_dialog = new HintsDialog (this, _film, true);
1051                 }
1052
1053                 _hints_dialog->Show ();
1054         }
1055
1056         void tools_encoding_servers ()
1057         {
1058                 if (!_servers_list_dialog) {
1059                         _servers_list_dialog = new ServersListDialog (this);
1060                 }
1061
1062                 _servers_list_dialog->Show ();
1063         }
1064
1065         void tools_manage_templates ()
1066         {
1067                 if (!_templates_dialog) {
1068                         _templates_dialog = new TemplatesDialog (this);
1069                 }
1070
1071                 _templates_dialog->Show ();
1072         }
1073
1074         void tools_check_for_updates ()
1075         {
1076                 UpdateChecker::instance()->run ();
1077                 _update_news_requested = true;
1078         }
1079
1080         void tools_send_translations ()
1081         {
1082                 SendI18NDialog* d = new SendI18NDialog (this);
1083                 if (d->ShowModal() == wxID_OK) {
1084                         string body;
1085                         body += d->name() + "\n";
1086                         body += d->language() + "\n";
1087                         body += string(dcpomatic_version) + " " + string(dcpomatic_git_commit) + "\n";
1088                         body += "--\n";
1089                         map<string, string> translations = I18NHook::translations ();
1090                         for (map<string, string>::const_iterator i = translations.begin(); i != translations.end(); ++i) {
1091                                 body += i->first + "\n" + i->second + "\n\n";
1092                         }
1093                         list<string> to;
1094                         to.push_back ("carl@dcpomatic.com");
1095                         Emailer emailer (d->email(), to, "DCP-o-matic translations", body);
1096                         emailer.send ("main.carlh.net", 2525, EMAIL_PROTOCOL_STARTTLS);
1097                 }
1098
1099                 d->Destroy ();
1100         }
1101
1102         void help_about ()
1103         {
1104                 AboutDialog* d = new AboutDialog (this);
1105                 d->ShowModal ();
1106                 d->Destroy ();
1107         }
1108
1109         void help_report_a_problem ()
1110         {
1111                 ReportProblemDialog* d = new ReportProblemDialog (this, _film);
1112                 if (d->ShowModal () == wxID_OK) {
1113                         d->report ();
1114                 }
1115                 d->Destroy ();
1116         }
1117
1118         bool should_close ()
1119         {
1120                 if (!JobManager::instance()->work_to_do ()) {
1121                         return true;
1122                 }
1123
1124                 wxMessageDialog* d = new wxMessageDialog (
1125                         0,
1126                         _("There are unfinished jobs; are you sure you want to quit?"),
1127                         _("Unfinished jobs"),
1128                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
1129                         );
1130
1131                 bool const r = d->ShowModal() == wxID_YES;
1132                 d->Destroy ();
1133                 return r;
1134         }
1135
1136         void close (wxCloseEvent& ev)
1137         {
1138                 if (!should_close ()) {
1139                         ev.Veto ();
1140                         return;
1141                 }
1142
1143                 if (_film && _film->dirty ()) {
1144
1145                         FilmChangedClosingDialog* dialog = new FilmChangedClosingDialog (_film->name ());
1146                         int const r = dialog->run ();
1147                         delete dialog;
1148
1149                         switch (r) {
1150                         case wxID_NO:
1151                                 /* Don't save and carry on to close */
1152                                 break;
1153                         case wxID_YES:
1154                                 /* Save and carry on to close */
1155                                 _film->write_metadata ();
1156                                 break;
1157                         case wxID_CANCEL:
1158                                 /* Veto the event and stop */
1159                                 ev.Veto ();
1160                                 return;
1161                         }
1162                 }
1163
1164                 /* We don't want to hear about any more configuration changes, since they
1165                    cause the File menu to be altered, which itself will be deleted around
1166                    now (without, as far as I can see, any way for us to find out).
1167                 */
1168                 _config_changed_connection.disconnect ();
1169
1170                 /* Also stop hearing about analytics-related stuff */
1171                 _analytics_message_connection.disconnect ();
1172
1173                 ev.Skip ();
1174         }
1175
1176         void set_menu_sensitivity ()
1177         {
1178                 list<shared_ptr<Job> > jobs = JobManager::instance()->get ();
1179                 list<shared_ptr<Job> >::iterator i = jobs.begin();
1180                 while (i != jobs.end() && (*i)->json_name() != "transcode") {
1181                         ++i;
1182                 }
1183                 bool const dcp_creation = (i != jobs.end ()) && !(*i)->finished ();
1184                 bool const have_cpl = _film && !_film->cpls().empty ();
1185                 bool const have_single_selected_content = _film_editor->content_panel()->selected().size() == 1;
1186                 bool const have_selected_content = !_film_editor->content_panel()->selected().empty();
1187                 bool const have_selected_video_content = !_film_editor->content_panel()->selected_video().empty();
1188
1189                 for (map<wxMenuItem*, int>::iterator j = menu_items.begin(); j != menu_items.end(); ++j) {
1190
1191                         bool enabled = true;
1192
1193                         if ((j->second & NEEDS_FILM) && !_film) {
1194                                 enabled = false;
1195                         }
1196
1197                         if ((j->second & NOT_DURING_DCP_CREATION) && dcp_creation) {
1198                                 enabled = false;
1199                         }
1200
1201                         if ((j->second & NEEDS_CPL) && !have_cpl) {
1202                                 enabled = false;
1203                         }
1204
1205                         if ((j->second & NEEDS_SELECTED_CONTENT) && !have_selected_content) {
1206                                 enabled = false;
1207                         }
1208
1209                         if ((j->second & NEEDS_SINGLE_SELECTED_CONTENT) && !have_single_selected_content) {
1210                                 enabled = false;
1211                         }
1212
1213                         if ((j->second & NEEDS_SELECTED_VIDEO_CONTENT) && !have_selected_video_content) {
1214                                 enabled = false;
1215                         }
1216
1217                         if ((j->second & NEEDS_CLIPBOARD) && !_clipboard) {
1218                                 enabled = false;
1219                         }
1220
1221                         if ((j->second & NEEDS_ENCRYPTION) && (!_film || !_film->encrypted())) {
1222                                 enabled = false;
1223                         }
1224
1225                         j->first->Enable (enabled);
1226                 }
1227         }
1228
1229         /** @return true if the operation that called this method
1230          *  should continue, false to abort it.
1231          */
1232         template <class T>
1233         bool maybe_save_film ()
1234         {
1235                 if (!_film) {
1236                         return true;
1237                 }
1238
1239                 if (_film->dirty ()) {
1240                         T d (_film->name ());
1241                         switch (d.run ()) {
1242                         case wxID_NO:
1243                                 return true;
1244                         case wxID_YES:
1245                                 _film->write_metadata ();
1246                                 return true;
1247                         case wxID_CANCEL:
1248                                 return false;
1249                         }
1250                 }
1251
1252                 return true;
1253         }
1254
1255         template <class T>
1256         bool maybe_save_then_delete_film ()
1257         {
1258                 bool const r = maybe_save_film<T> ();
1259                 if (r) {
1260                         _film.reset ();
1261                 }
1262                 return r;
1263         }
1264
1265         void add_item (wxMenu* menu, wxString text, int id, int sens)
1266         {
1267                 wxMenuItem* item = menu->Append (id, text);
1268                 menu_items.insert (make_pair (item, sens));
1269         }
1270
1271         void setup_menu (wxMenuBar* m)
1272         {
1273                 _file_menu = new wxMenu;
1274                 add_item (_file_menu, _("New...\tCtrl-N"), ID_file_new, ALWAYS);
1275                 add_item (_file_menu, _("&Open...\tCtrl-O"), ID_file_open, ALWAYS);
1276                 _file_menu->AppendSeparator ();
1277                 add_item (_file_menu, _("&Save\tCtrl-S"), ID_file_save, NEEDS_FILM);
1278                 _file_menu->AppendSeparator ();
1279                 add_item (_file_menu, _("Save as &template..."), ID_file_save_as_template, NEEDS_FILM);
1280                 add_item (_file_menu, _("Duplicate..."), ID_file_duplicate, NEEDS_FILM);
1281                 add_item (_file_menu, _("Duplicate and open..."), ID_file_duplicate_and_open, NEEDS_FILM);
1282
1283                 _history_position = _file_menu->GetMenuItems().GetCount();
1284
1285                 _file_menu->AppendSeparator ();
1286                 add_item (_file_menu, _("&Close\tCtrl-W"), ID_file_close, NEEDS_FILM);
1287
1288 #ifndef __WXOSX__
1289                 _file_menu->AppendSeparator ();
1290 #endif
1291
1292 #ifdef __WXOSX__
1293                 add_item (_file_menu, _("&Exit"), wxID_EXIT, ALWAYS);
1294 #else
1295                 add_item (_file_menu, _("&Quit"), wxID_EXIT, ALWAYS);
1296 #endif
1297
1298                 wxMenu* edit = new wxMenu;
1299                 add_item (edit, _("Copy settings\tCtrl-C"), ID_edit_copy, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_SINGLE_SELECTED_CONTENT);
1300                 add_item (edit, _("Paste settings...\tCtrl-V"), ID_edit_paste, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_SELECTED_CONTENT | NEEDS_CLIPBOARD);
1301
1302 #ifdef __WXOSX__
1303                 add_item (_file_menu, _("&Preferences...\tCtrl-P"), wxID_PREFERENCES, ALWAYS);
1304 #else
1305                 add_item (edit, _("&Preferences...\tCtrl-P"), wxID_PREFERENCES, ALWAYS);
1306 #endif
1307
1308                 wxMenu* content = new wxMenu;
1309                 add_item (content, _("Scale to fit &width"), ID_content_scale_to_fit_width, NEEDS_FILM | NEEDS_SELECTED_VIDEO_CONTENT);
1310                 add_item (content, _("Scale to fit &height"), ID_content_scale_to_fit_height, NEEDS_FILM | NEEDS_SELECTED_VIDEO_CONTENT);
1311
1312                 wxMenu* jobs_menu = new wxMenu;
1313                 add_item (jobs_menu, _("&Make DCP\tCtrl-M"), ID_jobs_make_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION);
1314                 add_item (jobs_menu, _("Make DCP in &batch converter\tCtrl-B"), ID_jobs_make_dcp_batch, NEEDS_FILM | NOT_DURING_DCP_CREATION);
1315                 jobs_menu->AppendSeparator ();
1316                 add_item (jobs_menu, _("Make &KDMs...\tCtrl-K"), ID_jobs_make_kdms, NEEDS_FILM);
1317                 add_item (jobs_menu, _("Make DKDM for DCP-o-matic..."), ID_jobs_make_self_dkdm, NEEDS_FILM | NEEDS_ENCRYPTION);
1318                 jobs_menu->AppendSeparator ();
1319                 add_item (jobs_menu, _("Export...\tCtrl-E"), ID_jobs_export, NEEDS_FILM);
1320                 jobs_menu->AppendSeparator ();
1321                 add_item (jobs_menu, _("&Send DCP to TMS"), ID_jobs_send_dcp_to_tms, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
1322                 add_item (jobs_menu, _("S&how DCP"), ID_jobs_show_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
1323                 add_item (jobs_menu, _("Open DCP in &player"), ID_jobs_open_dcp_in_player, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
1324
1325                 wxMenu* view = new wxMenu;
1326                 add_item (view, _("Closed captions..."), ID_view_closed_captions, NEEDS_FILM);
1327                 add_item (view, _("Video waveform..."), ID_view_video_waveform, NEEDS_FILM);
1328
1329                 wxMenu* tools = new wxMenu;
1330                 add_item (tools, _("Hints..."), ID_tools_hints, NEEDS_FILM);
1331                 add_item (tools, _("Encoding servers..."), ID_tools_encoding_servers, 0);
1332                 add_item (tools, _("Manage templates..."), ID_tools_manage_templates, 0);
1333                 add_item (tools, _("Check for updates"), ID_tools_check_for_updates, 0);
1334                 add_item (tools, _("Send translations..."), ID_tools_send_translations, 0);
1335                 add_item (tools, _("System information..."), ID_tools_system_information, 0);
1336                 tools->AppendSeparator ();
1337                 add_item (tools, _("Restore default preferences"), ID_tools_restore_default_preferences, ALWAYS);
1338
1339                 wxMenu* help = new wxMenu;
1340 #ifdef __WXOSX__
1341                 add_item (help, _("About DCP-o-matic"), wxID_ABOUT, ALWAYS);
1342 #else
1343                 add_item (help, _("About"), wxID_ABOUT, ALWAYS);
1344 #endif
1345                 add_item (help, _("Report a problem..."), ID_help_report_a_problem, NEEDS_FILM);
1346
1347                 m->Append (_file_menu, _("&File"));
1348                 m->Append (edit, _("&Edit"));
1349                 m->Append (content, _("&Content"));
1350                 m->Append (jobs_menu, _("&Jobs"));
1351                 m->Append (view, _("&View"));
1352                 m->Append (tools, _("&Tools"));
1353                 m->Append (help, _("&Help"));
1354         }
1355
1356         void config_changed (Config::Property what)
1357         {
1358                 /* Instantly save any config changes when using the DCP-o-matic GUI */
1359                 if (what == Config::CINEMAS) {
1360                         try {
1361                                 Config::instance()->write_cinemas();
1362                         } catch (exception& e) {
1363                                 error_dialog (
1364                                         this,
1365                                         wxString::Format (
1366                                                 _("Could not write to cinemas file at %s.  Your changes have not been saved."),
1367                                                 std_to_wx (Config::instance()->cinemas_file().string()).data()
1368                                                 )
1369                                         );
1370                         }
1371                 } else {
1372                         try {
1373                                 Config::instance()->write_config();
1374                         } catch (exception& e) {
1375                                 error_dialog (
1376                                         this,
1377                                         wxString::Format (
1378                                                 _("Could not write to config file at %s.  Your changes have not been saved."),
1379                                                 std_to_wx (Config::instance()->cinemas_file().string()).data()
1380                                                 )
1381                                         );
1382                         }
1383                 }
1384
1385                 for (int i = 0; i < _history_items; ++i) {
1386                         delete _file_menu->Remove (ID_file_history + i);
1387                 }
1388
1389                 if (_history_separator) {
1390                         _file_menu->Remove (_history_separator);
1391                 }
1392                 delete _history_separator;
1393                 _history_separator = 0;
1394
1395                 int pos = _history_position;
1396
1397                 /* Clear out non-existant history items before we re-build the menu */
1398                 Config::instance()->clean_history ();
1399                 vector<boost::filesystem::path> history = Config::instance()->history ();
1400
1401                 if (!history.empty ()) {
1402                         _history_separator = _file_menu->InsertSeparator (pos++);
1403                 }
1404
1405                 for (size_t i = 0; i < history.size(); ++i) {
1406                         string s;
1407                         if (i < 9) {
1408                                 s = String::compose ("&%1 %2", i + 1, history[i].string());
1409                         } else {
1410                                 s = history[i].string();
1411                         }
1412                         _file_menu->Insert (pos++, ID_file_history + i, std_to_wx (s));
1413                 }
1414
1415                 _history_items = history.size ();
1416
1417                 dcpomatic_log->set_types (Config::instance()->log_types());
1418         }
1419
1420         void update_checker_state_changed ()
1421         {
1422                 UpdateChecker* uc = UpdateChecker::instance ();
1423
1424                 bool const announce =
1425                         _update_news_requested ||
1426                         (uc->stable() && Config::instance()->check_for_updates()) ||
1427                         (uc->test() && Config::instance()->check_for_updates() && Config::instance()->check_for_test_updates());
1428
1429                 _update_news_requested = false;
1430
1431                 if (!announce) {
1432                         return;
1433                 }
1434
1435                 if (uc->state() == UpdateChecker::YES) {
1436                         UpdateDialog* dialog = new UpdateDialog (this, uc->stable (), uc->test ());
1437                         dialog->ShowModal ();
1438                         dialog->Destroy ();
1439                 } else if (uc->state() == UpdateChecker::FAILED) {
1440                         error_dialog (this, _("The DCP-o-matic download server could not be contacted."));
1441                 } else {
1442                         error_dialog (this, _("There are no new versions of DCP-o-matic available."));
1443                 }
1444
1445                 _update_news_requested = false;
1446         }
1447
1448         void start_stop_pressed ()
1449         {
1450                 if (_film_viewer->playing()) {
1451                         _film_viewer->stop();
1452                 } else {
1453                         _film_viewer->start();
1454                 }
1455         }
1456
1457         void timeline_pressed ()
1458         {
1459                 _film_editor->content_panel()->timeline_clicked ();
1460         }
1461
1462         void back_frame ()
1463         {
1464                 _film_viewer->seek_by (-_film_viewer->one_video_frame(), true);
1465         }
1466
1467         void forward_frame ()
1468         {
1469                 _film_viewer->seek_by (_film_viewer->one_video_frame(), true);
1470         }
1471
1472         void analytics_message (string title, string html)
1473         {
1474                 HTMLDialog* d = new HTMLDialog(this, std_to_wx(title), std_to_wx(html));
1475                 d->ShowModal();
1476                 d->Destroy();
1477         }
1478
1479         FilmEditor* _film_editor;
1480         boost::shared_ptr<FilmViewer> _film_viewer;
1481         StandardControls* _controls;
1482         VideoWaveformDialog* _video_waveform_dialog;
1483         SystemInformationDialog* _system_information_dialog;
1484         HintsDialog* _hints_dialog;
1485         ServersListDialog* _servers_list_dialog;
1486         wxPreferencesEditor* _config_dialog;
1487         KDMDialog* _kdm_dialog;
1488         TemplatesDialog* _templates_dialog;
1489         wxMenu* _file_menu;
1490         shared_ptr<Film> _film;
1491         int _history_items;
1492         int _history_position;
1493         wxMenuItem* _history_separator;
1494         boost::signals2::scoped_connection _config_changed_connection;
1495         boost::signals2::scoped_connection _analytics_message_connection;
1496         bool _update_news_requested;
1497         shared_ptr<Content> _clipboard;
1498 };
1499
1500 static const wxCmdLineEntryDesc command_line_description[] = {
1501         { wxCMD_LINE_SWITCH, "n", "new", "create new film", wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },
1502         { wxCMD_LINE_OPTION, "c", "content", "add content file / directory", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1503         { wxCMD_LINE_OPTION, "d", "dcp", "add content DCP", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1504         { wxCMD_LINE_SWITCH, "v", "version", "show DCP-o-matic version", wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },
1505         { wxCMD_LINE_OPTION, "", "config", "directory containing config.xml and cinemas.xml", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1506         { wxCMD_LINE_PARAM, 0, 0, "film to load or create", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1507         { wxCMD_LINE_NONE, "", "", "", wxCmdLineParamType (0), 0 }
1508 };
1509
1510 /** @class App
1511  *  @brief The magic App class for wxWidgets.
1512  */
1513 class App : public wxApp
1514 {
1515 public:
1516         App ()
1517                 : wxApp ()
1518                 , _frame (0)
1519                 , _splash (0)
1520         {
1521 #ifdef DCPOMATIC_LINUX
1522                 XInitThreads ();
1523 #endif
1524         }
1525
1526 private:
1527
1528         bool OnInit ()
1529         {
1530                 try {
1531                         wxInitAllImageHandlers ();
1532
1533                         Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
1534                         Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
1535
1536                         _splash = maybe_show_splash ();
1537
1538                         SetAppName (_("DCP-o-matic"));
1539
1540                         if (!wxApp::OnInit()) {
1541                                 return false;
1542                         }
1543
1544 #ifdef DCPOMATIC_LINUX
1545                         unsetenv ("UBUNTU_MENUPROXY");
1546 #endif
1547
1548 #ifdef __WXOSX__
1549                         ProcessSerialNumber serial;
1550                         GetCurrentProcess (&serial);
1551                         TransformProcessType (&serial, kProcessTransformToForegroundApplication);
1552 #endif
1553
1554                         dcpomatic_setup_path_encoding ();
1555
1556                         /* Enable i18n; this will create a Config object
1557                            to look for a force-configured language.  This Config
1558                            object will be wrong, however, because dcpomatic_setup
1559                            hasn't yet been called and there aren't any filters etc.
1560                            set up yet.
1561                         */
1562                         dcpomatic_setup_i18n ();
1563
1564                         /* Set things up, including filters etc.
1565                            which will now be internationalised correctly.
1566                         */
1567                         dcpomatic_setup ();
1568
1569                         /* Force the configuration to be re-loaded correctly next
1570                            time it is needed.
1571                         */
1572                         Config::drop ();
1573
1574                         /* We only look out for bad configuration from here on, as before
1575                            dcpomatic_setup() we haven't got OpenSSL ready so there will be
1576                            incorrect certificate chain validity errors.
1577                         */
1578                         Config::Bad.connect (boost::bind(&App::config_bad, this, _1));
1579
1580                         _frame = new DOMFrame (_("DCP-o-matic"));
1581                         SetTopWindow (_frame);
1582                         _frame->Maximize ();
1583                         close_splash ();
1584
1585                         if (!Config::instance()->nagged(Config::NAG_INITIAL_SETUP)) {
1586                                 InitialSetupDialog* d = new InitialSetupDialog ();
1587                                 d->ShowModal ();
1588                                 d->Destroy ();
1589                                 Config::instance()->set_nagged(Config::NAG_INITIAL_SETUP, true);
1590                         }
1591
1592                         if (running_32_on_64 ()) {
1593                                 NagDialog::maybe_nag (
1594                                         _frame, Config::NAG_32_ON_64,
1595                                         _("You are running the 32-bit version of DCP-o-matic on a 64-bit version of Windows.  This will limit the memory available to DCP-o-matic and may cause errors.  You are strongly advised to install the 64-bit version of DCP-o-matic."),
1596                                         false);
1597                         }
1598
1599                         _frame->Show ();
1600
1601                         signal_manager = new wxSignalManager (this);
1602                         Bind (wxEVT_IDLE, boost::bind (&App::idle, this, _1));
1603
1604                         if (!_film_to_load.empty() && boost::filesystem::is_directory (_film_to_load)) {
1605                                 try {
1606                                         _frame->load_film (_film_to_load);
1607                                 } catch (exception& e) {
1608                                         error_dialog (0, std_to_wx (String::compose (wx_to_std (_("Could not load film %1 (%2)")), _film_to_load)), std_to_wx(e.what()));
1609                                 }
1610                         }
1611
1612                         if (!_film_to_create.empty ()) {
1613                                 _frame->new_film (_film_to_create, optional<string> ());
1614                                 if (!_content_to_add.empty ()) {
1615                                         BOOST_FOREACH (shared_ptr<Content> i, content_factory(_content_to_add)) {
1616                                                 _frame->film()->examine_and_add_content (i);
1617                                         }
1618                                 }
1619                                 if (!_dcp_to_add.empty ()) {
1620                                         _frame->film()->examine_and_add_content(shared_ptr<DCPContent>(new DCPContent(_dcp_to_add)));
1621                                 }
1622                         }
1623
1624                         Bind (wxEVT_TIMER, boost::bind (&App::check, this));
1625                         _timer.reset (new wxTimer (this));
1626                         _timer->Start (1000);
1627
1628                         if (Config::instance()->check_for_updates ()) {
1629                                 UpdateChecker::instance()->run ();
1630                         }
1631                 }
1632                 catch (exception& e)
1633                 {
1634                         if (_splash) {
1635                                 _splash->Destroy ();
1636                                 _splash = 0;
1637                         }
1638                         error_dialog (0, wxString::Format ("DCP-o-matic could not start."), std_to_wx(e.what()));
1639                 }
1640
1641                 return true;
1642         }
1643
1644         void OnInitCmdLine (wxCmdLineParser& parser)
1645         {
1646                 parser.SetDesc (command_line_description);
1647                 parser.SetSwitchChars (wxT ("-"));
1648         }
1649
1650         bool OnCmdLineParsed (wxCmdLineParser& parser)
1651         {
1652                 if (parser.Found (wxT("version"))) {
1653                         cout << "dcpomatic version " << dcpomatic_version << " " << dcpomatic_git_commit << "\n";
1654                         exit (EXIT_SUCCESS);
1655                 }
1656
1657                 if (parser.GetParamCount() > 0) {
1658                         if (parser.Found (wxT ("new"))) {
1659                                 _film_to_create = wx_to_std (parser.GetParam (0));
1660                         } else {
1661                                 _film_to_load = wx_to_std (parser.GetParam (0));
1662                         }
1663                 }
1664
1665                 wxString content;
1666                 if (parser.Found (wxT ("content"), &content)) {
1667                         _content_to_add = wx_to_std (content);
1668                 }
1669
1670                 wxString dcp;
1671                 if (parser.Found (wxT ("dcp"), &dcp)) {
1672                         _dcp_to_add = wx_to_std (dcp);
1673                 }
1674
1675                 wxString config;
1676                 if (parser.Found (wxT("config"), &config)) {
1677                         State::override_path = wx_to_std (config);
1678                 }
1679
1680                 return true;
1681         }
1682
1683         void report_exception ()
1684         {
1685                 try {
1686                         throw;
1687                 } catch (FileError& e) {
1688                         error_dialog (
1689                                 0,
1690                                 wxString::Format (
1691                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
1692                                         std_to_wx (e.what()),
1693                                         std_to_wx (e.file().string().c_str ())
1694                                         )
1695                                 );
1696                 } catch (exception& e) {
1697                         error_dialog (
1698                                 0,
1699                                 wxString::Format (
1700                                         _("An exception occurred: %s.\n\n") + REPORT_PROBLEM,
1701                                         std_to_wx (e.what ())
1702                                         )
1703                                 );
1704                 } catch (...) {
1705                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
1706                 }
1707         }
1708
1709         /* An unhandled exception has occurred inside the main event loop */
1710         bool OnExceptionInMainLoop ()
1711         {
1712                 report_exception ();
1713                 /* This will terminate the program */
1714                 return false;
1715         }
1716
1717         void OnUnhandledException ()
1718         {
1719                 report_exception ();
1720         }
1721
1722         void idle (wxIdleEvent& ev)
1723         {
1724                 signal_manager->ui_idle ();
1725                 ev.Skip ();
1726         }
1727
1728         void check ()
1729         {
1730                 try {
1731                         EncodeServerFinder::instance()->rethrow ();
1732                 } catch (exception& e) {
1733                         error_dialog (0, std_to_wx (e.what ()));
1734                 }
1735         }
1736
1737         void close_splash ()
1738         {
1739                 if (_splash) {
1740                         _splash->Destroy ();
1741                         _splash = 0;
1742                 }
1743         }
1744
1745         void config_failed_to_load ()
1746         {
1747                 close_splash ();
1748                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
1749         }
1750
1751         void config_warning (string m)
1752         {
1753                 close_splash ();
1754                 message_dialog (_frame, std_to_wx (m));
1755         }
1756
1757         bool config_bad (Config::BadReason reason)
1758         {
1759                 /* Destroy the splash screen here, as otherwise bad things seem to happen (for reasons unknown)
1760                    when we open our recreate dialog, close it, *then* try to Destroy the splash (the Destroy fails).
1761                 */
1762                 _splash->Destroy ();
1763                 _splash = 0;
1764
1765                 Config* config = Config::instance();
1766                 switch (reason) {
1767                 case Config::BAD_SIGNER_UTF8_STRINGS:
1768                 {
1769                         if (config->nagged(Config::NAG_BAD_SIGNER_CHAIN)) {
1770                                 return false;
1771                         }
1772                         RecreateChainDialog* d = new RecreateChainDialog (
1773                                 _frame, _("Recreate signing certificates"),
1774                                 _("The certificate chain that DCP-o-matic uses for signing DCPs and KDMs contains a small error\n"
1775                                   "which will prevent DCPs from being validated correctly on some systems.  Do you want to re-create\n"
1776                                   "the certificate chain for signing DCPs and KDMs?"),
1777                                 _("Do nothing"),
1778                                 Config::NAG_BAD_SIGNER_CHAIN
1779                                 );
1780                         int const r = d->ShowModal ();
1781                         d->Destroy ();
1782                         return r == wxID_OK;
1783                 }
1784                 case Config::BAD_SIGNER_INCONSISTENT:
1785                 {
1786                         RecreateChainDialog* d = new RecreateChainDialog (
1787                                 _frame, _("Recreate signing certificates"),
1788                                 _("The certificate chain that DCP-o-matic uses for signing DCPs and KDMs is inconsistent and\n"
1789                                   "cannot be used.  DCP-o-matic cannot start unless you re-create it.  Do you want to re-create\n"
1790                                   "the certificate chain for signing DCPs and KDMs?"),
1791                                 _("Close DCP-o-matic")
1792                                 );
1793                         int const r = d->ShowModal ();
1794                         d->Destroy ();
1795                         if (r != wxID_OK) {
1796                                 exit (EXIT_FAILURE);
1797                         }
1798                         return true;
1799                 }
1800                 case Config::BAD_DECRYPTION_INCONSISTENT:
1801                 {
1802                         RecreateChainDialog* d = new RecreateChainDialog (
1803                                 _frame, _("Recreate KDM decryption chain"),
1804                                 _("The certificate chain that DCP-o-matic uses for decrypting KDMs is inconsistent and\n"
1805                                   "cannot be used.  DCP-o-matic cannot start unless you re-create it.  Do you want to re-create\n"
1806                                   "the certificate chain for decrypting KDMs?  You may want to say \"No\" here and back up your\n"
1807                                   "configuration before continuing."),
1808                                 _("Close DCP-o-matic")
1809                                 );
1810                         int const r = d->ShowModal ();
1811                         d->Destroy ();
1812                         if (r != wxID_OK) {
1813                                 exit (EXIT_FAILURE);
1814                         }
1815                         return true;
1816                 }
1817                 default:
1818                         DCPOMATIC_ASSERT (false);
1819                 }
1820         }
1821
1822         DOMFrame* _frame;
1823         wxSplashScreen* _splash;
1824         shared_ptr<wxTimer> _timer;
1825         string _film_to_load;
1826         string _film_to_create;
1827         string _content_to_add;
1828         string _dcp_to_add;
1829 };
1830
1831 IMPLEMENT_APP (App)