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