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