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