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