Nag about saving metadata.xml and DCP XMLs when making an encrypted DCP.
[dcpomatic.git] / src / tools / dcpomatic.cc
1 /*
2     Copyright (C) 2012-2016 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/film_viewer.h"
26 #include "wx/film_editor.h"
27 #include "wx/job_manager_view.h"
28 #include "wx/config_dialog.h"
29 #include "wx/wx_util.h"
30 #include "wx/new_film_dialog.h"
31 #include "wx/wx_signal_manager.h"
32 #include "wx/about_dialog.h"
33 #include "wx/kdm_dialog.h"
34 #include "wx/self_dkdm_dialog.h"
35 #include "wx/servers_list_dialog.h"
36 #include "wx/hints_dialog.h"
37 #include "wx/update_dialog.h"
38 #include "wx/content_panel.h"
39 #include "wx/report_problem_dialog.h"
40 #include "wx/video_waveform_dialog.h"
41 #include "wx/save_template_dialog.h"
42 #include "wx/templates_dialog.h"
43 #include "wx/nag_dialog.h"
44 #include "lib/film.h"
45 #include "lib/config.h"
46 #include "lib/util.h"
47 #include "lib/video_content.h"
48 #include "lib/content.h"
49 #include "lib/version.h"
50 #include "lib/signal_manager.h"
51 #include "lib/log.h"
52 #include "lib/job_manager.h"
53 #include "lib/exceptions.h"
54 #include "lib/cinema.h"
55 #include "lib/screen_kdm.h"
56 #include "lib/send_kdm_email_job.h"
57 #include "lib/encode_server_finder.h"
58 #include "lib/update_checker.h"
59 #include "lib/cross.h"
60 #include "lib/content_factory.h"
61 #include "lib/compose.hpp"
62 #include "lib/cinema_kdms.h"
63 #include "lib/dcpomatic_socket.h"
64 #include "lib/hints.h"
65 #include "lib/dcp_content.h"
66 #include <dcp/exceptions.h>
67 #include <dcp/raw_convert.h>
68 #include <wx/generic/aboutdlgg.h>
69 #include <wx/stdpaths.h>
70 #include <wx/cmdline.h>
71 #include <wx/preferences.h>
72 #include <wx/splash.h>
73 #ifdef __WXMSW__
74 #include <shellapi.h>
75 #endif
76 #ifdef __WXOSX__
77 #include <ApplicationServices/ApplicationServices.h>
78 #endif
79 #include <boost/filesystem.hpp>
80 #include <boost/noncopyable.hpp>
81 #include <boost/foreach.hpp>
82 #include <iostream>
83 #include <fstream>
84 /* This is OK as it's only used with DCPOMATIC_WINDOWS */
85 #include <sstream>
86
87 #ifdef check
88 #undef check
89 #endif
90
91 using std::cout;
92 using std::wcout;
93 using std::string;
94 using std::vector;
95 using std::wstring;
96 using std::wstringstream;
97 using std::map;
98 using std::make_pair;
99 using std::list;
100 using std::exception;
101 using boost::shared_ptr;
102 using boost::dynamic_pointer_cast;
103 using boost::optional;
104 using dcp::raw_convert;
105
106 class FilmChangedDialog : public boost::noncopyable
107 {
108 public:
109         FilmChangedDialog (string name)
110         {
111                 _dialog = new wxMessageDialog (
112                         0,
113                         wxString::Format (_("Save changes to film \"%s\" before closing?"), std_to_wx (name).data()),
114                         /// TRANSLATORS: this is the heading for a dialog box, which tells the user that the current
115                         /// project (Film) has been changed since it was last saved.
116                         _("Film changed"),
117                         wxYES_NO | wxCANCEL | wxYES_DEFAULT | wxICON_QUESTION
118                         );
119
120                 _dialog->SetYesNoCancelLabels (
121                         _("Save film and close"), _("Close without saving film"), _("Don't close")
122                         );
123         }
124
125         ~FilmChangedDialog ()
126         {
127                 _dialog->Destroy ();
128         }
129
130         int run ()
131         {
132                 return _dialog->ShowModal ();
133         }
134
135 private:
136         wxMessageDialog* _dialog;
137 };
138
139 #define ALWAYS                       0x0
140 #define NEEDS_FILM                   0x1
141 #define NOT_DURING_DCP_CREATION      0x2
142 #define NEEDS_CPL                    0x4
143 #define NEEDS_SELECTED_VIDEO_CONTENT 0x8
144
145 map<wxMenuItem*, int> menu_items;
146
147 enum {
148         ID_file_new = 1,
149         ID_file_open,
150         ID_file_save,
151         ID_file_save_as_template,
152         ID_file_history,
153         /* Allow spare IDs after _history for the recent files list */
154         ID_content_scale_to_fit_width = 100,
155         ID_content_scale_to_fit_height,
156         ID_jobs_make_dcp,
157         ID_jobs_make_dcp_batch,
158         ID_jobs_make_kdms,
159         ID_jobs_make_self_dkdm,
160         ID_jobs_send_dcp_to_tms,
161         ID_jobs_show_dcp,
162         ID_tools_video_waveform,
163         ID_tools_hints,
164         ID_tools_encoding_servers,
165         ID_tools_manage_templates,
166         ID_tools_check_for_updates,
167         ID_tools_restore_default_preferences,
168         ID_help_report_a_problem,
169         /* IDs for shortcuts (with no associated menu item) */
170         ID_add_file,
171         ID_remove
172 };
173
174 class DOMFrame : public wxFrame
175 {
176 public:
177         DOMFrame (wxString const & title)
178                 : wxFrame (NULL, -1, title)
179                 , _video_waveform_dialog (0)
180                 , _hints_dialog (0)
181                 , _servers_list_dialog (0)
182                 , _config_dialog (0)
183                 , _kdm_dialog (0)
184                 , _templates_dialog (0)
185                 , _file_menu (0)
186                 , _history_items (0)
187                 , _history_position (0)
188                 , _history_separator (0)
189                 , _update_news_requested (false)
190         {
191 #if defined(DCPOMATIC_WINDOWS)
192                 if (Config::instance()->win32_console ()) {
193                         AllocConsole();
194
195                         HANDLE handle_out = GetStdHandle(STD_OUTPUT_HANDLE);
196                         int hCrt = _open_osfhandle((intptr_t) handle_out, _O_TEXT);
197                         FILE* hf_out = _fdopen(hCrt, "w");
198                         setvbuf(hf_out, NULL, _IONBF, 1);
199                         *stdout = *hf_out;
200
201                         HANDLE handle_in = GetStdHandle(STD_INPUT_HANDLE);
202                         hCrt = _open_osfhandle((intptr_t) handle_in, _O_TEXT);
203                         FILE* hf_in = _fdopen(hCrt, "r");
204                         setvbuf(hf_in, NULL, _IONBF, 128);
205                         *stdin = *hf_in;
206
207                         cout << "DCP-o-matic is starting." << "\n";
208                 }
209 #endif
210
211                 wxMenuBar* bar = new wxMenuBar;
212                 setup_menu (bar);
213                 SetMenuBar (bar);
214
215 #ifdef DCPOMATIC_WINDOWS
216                 SetIcon (wxIcon (std_to_wx ("id")));
217 #endif
218
219                 _config_changed_connection = Config::instance()->Changed.connect (boost::bind (&DOMFrame::config_changed, this, _1));
220                 config_changed (Config::OTHER);
221
222                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_new, this),                ID_file_new);
223                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_open, this),               ID_file_open);
224                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_save, this),               ID_file_save);
225                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_save_as_template, this),   ID_file_save_as_template);
226                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_history, this, _1),        ID_file_history, ID_file_history + HISTORY_SIZE);
227                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_exit, this),               wxID_EXIT);
228                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_preferences, this),        wxID_PREFERENCES);
229                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::content_scale_to_fit_width, this), ID_content_scale_to_fit_width);
230                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::content_scale_to_fit_height, this), ID_content_scale_to_fit_height);
231                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_dcp, this),           ID_jobs_make_dcp);
232                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_kdms, this),          ID_jobs_make_kdms);
233                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_dcp_batch, this),     ID_jobs_make_dcp_batch);
234                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_make_self_dkdm, this),     ID_jobs_make_self_dkdm);
235                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_send_dcp_to_tms, this),    ID_jobs_send_dcp_to_tms);
236                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::jobs_show_dcp, this),           ID_jobs_show_dcp);
237                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_video_waveform, this),    ID_tools_video_waveform);
238                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_hints, this),             ID_tools_hints);
239                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_encoding_servers, this),  ID_tools_encoding_servers);
240                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_manage_templates, this),  ID_tools_manage_templates);
241                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_check_for_updates, this), ID_tools_check_for_updates);
242                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::tools_restore_default_preferences, this), ID_tools_restore_default_preferences);
243                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_about, this),              wxID_ABOUT);
244                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_report_a_problem, this),   ID_help_report_a_problem);
245
246                 Bind (wxEVT_CLOSE_WINDOW, boost::bind (&DOMFrame::close, this, _1));
247
248                 /* Use a panel as the only child of the Frame so that we avoid
249                    the dark-grey background on Windows.
250                 */
251                 wxPanel* overall_panel = new wxPanel (this, wxID_ANY);
252
253                 _film_viewer = new FilmViewer (overall_panel);
254                 _film_editor = new FilmEditor (overall_panel, _film_viewer);
255                 JobManagerView* job_manager_view = new JobManagerView (overall_panel, false);
256
257                 wxBoxSizer* right_sizer = new wxBoxSizer (wxVERTICAL);
258                 right_sizer->Add (_film_viewer, 2, wxEXPAND | wxALL, 6);
259                 right_sizer->Add (job_manager_view, 1, wxEXPAND | wxALL, 6);
260
261                 wxBoxSizer* main_sizer = new wxBoxSizer (wxHORIZONTAL);
262                 main_sizer->Add (_film_editor, 1, wxEXPAND | wxALL, 6);
263                 main_sizer->Add (right_sizer, 2, wxEXPAND | wxALL, 6);
264
265                 set_menu_sensitivity ();
266
267                 _film_editor->FileChanged.connect (bind (&DOMFrame::file_changed, this, _1));
268                 file_changed ("");
269
270                 JobManager::instance()->ActiveJobsChanged.connect (boost::bind (&DOMFrame::set_menu_sensitivity, this));
271
272                 overall_panel->SetSizer (main_sizer);
273
274                 wxAcceleratorEntry accel[2];
275                 accel[0].Set (wxACCEL_CTRL, static_cast<int>('A'), ID_add_file);
276                 accel[1].Set (wxACCEL_NORMAL, WXK_DELETE, ID_remove);
277                 Bind (wxEVT_MENU, boost::bind (&ContentPanel::add_file_clicked, _film_editor->content_panel()), ID_add_file);
278                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::remove_clicked, this, _1), ID_remove);
279                 wxAcceleratorTable accel_table (2, accel);
280                 SetAcceleratorTable (accel_table);
281
282                 UpdateChecker::instance()->StateChanged.connect (boost::bind (&DOMFrame::update_checker_state_changed, this));
283         }
284
285         void remove_clicked (wxCommandEvent& ev)
286         {
287                 if (_film_editor->content_panel()->remove_clicked (true)) {
288                         ev.Skip ();
289                 }
290         }
291
292         void new_film (boost::filesystem::path path, optional<string> template_name)
293         {
294                 shared_ptr<Film> film (new Film (path));
295                 if (template_name) {
296                         film->use_template (template_name.get());
297                 }
298                 film->write_metadata ();
299                 film->set_name (path.filename().generic_string());
300                 set_film (film);
301         }
302
303         void load_film (boost::filesystem::path file)
304         try
305         {
306                 shared_ptr<Film> film (new Film (file));
307                 list<string> const notes = film->read_metadata ();
308
309                 if (film->state_version() == 4) {
310                         error_dialog (
311                                 0,
312                                 _("This film was created with an old version of DVD-o-matic and may not load correctly "
313                                   "in this version.  Please check the film's settings carefully.")
314                                 );
315                 }
316
317                 for (list<string>::const_iterator i = notes.begin(); i != notes.end(); ++i) {
318                         error_dialog (0, std_to_wx (*i));
319                 }
320
321                 set_film (film);
322         }
323         catch (std::exception& e) {
324                 wxString p = std_to_wx (file.string ());
325                 wxCharBuffer b = p.ToUTF8 ();
326                 error_dialog (this, wxString::Format (_("Could not open film at %s (%s)"), p.data(), std_to_wx (e.what()).data()));
327         }
328
329         void set_film (shared_ptr<Film> film)
330         {
331                 _film = film;
332                 _film_viewer->set_film (_film);
333                 _film_editor->set_film (_film);
334                 delete _video_waveform_dialog;
335                 _video_waveform_dialog = 0;
336                 set_menu_sensitivity ();
337                 if (_film->directory()) {
338                         Config::instance()->add_to_history (_film->directory().get());
339                 }
340         }
341
342         shared_ptr<Film> film () const {
343                 return _film;
344         }
345
346 private:
347
348         void file_changed (boost::filesystem::path f)
349         {
350                 string s = wx_to_std (_("DCP-o-matic"));
351                 if (!f.empty ()) {
352                         s += " - " + f.string ();
353                 }
354
355                 SetTitle (std_to_wx (s));
356         }
357
358         void file_new ()
359         {
360                 NewFilmDialog* d = new NewFilmDialog (this);
361                 int const r = d->ShowModal ();
362
363                 if (r == wxID_OK) {
364
365                         if (boost::filesystem::is_directory (d->path()) && !boost::filesystem::is_empty(d->path())) {
366                                 if (!confirm_dialog (
367                                             this,
368                                             std_to_wx (
369                                                     String::compose (wx_to_std (_("The directory %1 already exists and is not empty.  "
370                                                                                   "Are you sure you want to use it?")),
371                                                                      d->path().string().c_str())
372                                                     )
373                                             )) {
374                                         return;
375                                 }
376                         } else if (boost::filesystem::is_regular_file (d->path())) {
377                                 error_dialog (
378                                         this,
379                                         String::compose (wx_to_std (_("%1 already exists as a file, so you cannot use it for a new film.")), d->path().c_str())
380                                         );
381                                 return;
382                         }
383
384                         if (maybe_save_then_delete_film ()) {
385                                 new_film (d->path(), d->template_name());
386                         }
387                 }
388
389                 d->Destroy ();
390         }
391
392         void file_open ()
393         {
394                 wxDirDialog* c = new wxDirDialog (
395                         this,
396                         _("Select film to open"),
397                         std_to_wx (Config::instance()->default_directory_or (wx_to_std (wxStandardPaths::Get().GetDocumentsDir())).string ()),
398                         wxDEFAULT_DIALOG_STYLE | wxDD_DIR_MUST_EXIST
399                         );
400
401                 int r;
402                 while (true) {
403                         r = c->ShowModal ();
404                         if (r == wxID_OK && c->GetPath() == wxStandardPaths::Get().GetDocumentsDir()) {
405                                 error_dialog (this, _("You did not select a folder.  Make sure that you select a folder before clicking Open."));
406                         } else {
407                                 break;
408                         }
409                 }
410
411                 if (r == wxID_OK && maybe_save_then_delete_film()) {
412                         load_film (wx_to_std (c->GetPath ()));
413                 }
414
415                 c->Destroy ();
416         }
417
418         void file_save ()
419         {
420                 _film->write_metadata ();
421         }
422
423         void file_save_as_template ()
424         {
425                 SaveTemplateDialog* d = new SaveTemplateDialog (this);
426                 int const r = d->ShowModal ();
427                 if (r == wxID_OK) {
428                         Config::instance()->save_template (_film, d->name ());
429                 }
430                 d->Destroy ();
431         }
432
433         void file_history (wxCommandEvent& event)
434         {
435                 vector<boost::filesystem::path> history = Config::instance()->history ();
436                 int n = event.GetId() - ID_file_history;
437                 if (n >= 0 && n < static_cast<int> (history.size ()) && maybe_save_then_delete_film()) {
438                         load_film (history[n]);
439                 }
440         }
441
442         void file_exit ()
443         {
444                 /* false here allows the close handler to veto the close request */
445                 Close (false);
446         }
447
448         void edit_preferences ()
449         {
450                 if (!_config_dialog) {
451                         _config_dialog = create_config_dialog ();
452                 }
453                 _config_dialog->Show (this);
454         }
455
456         void tools_restore_default_preferences ()
457         {
458                 wxMessageDialog* d = new wxMessageDialog (
459                         0,
460                         _("Are you sure you want to restore preferences to their defaults?  This cannot be undone."),
461                         _("Restore default preferences"),
462                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
463                         );
464
465                 int const r = d->ShowModal ();
466                 d->Destroy ();
467
468                 if (r == wxID_YES) {
469                         Config::restore_defaults ();
470                 }
471         }
472
473         void jobs_make_dcp ()
474         {
475                 double required;
476                 double available;
477                 bool can_hard_link;
478
479                 if (!_film->should_be_enough_disk_space (required, available, can_hard_link)) {
480                         wxString message;
481                         if (can_hard_link) {
482                                 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);
483                         } else {
484                                 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);
485                         }
486                         if (!confirm_dialog (this, message)) {
487                                 return;
488                         }
489                 }
490
491                 if (!get_hints(_film).empty() && Config::instance()->show_hints_before_make_dcp()) {
492                         HintsDialog* hints = new HintsDialog (this, _film, false);
493                         int const r = hints->ShowModal();
494                         hints->Destroy ();
495                         if (r == wxID_CANCEL) {
496                                 return;
497                         }
498                 }
499
500                 if (_film->encrypted ()) {
501                         NagDialog::maybe_nag (
502                                 this,
503                                 Config::NAG_ENCRYPTED_METADATA,
504                                 _("You are making an encrypted DCP.  It will not be possible to make KDMs for this DCP unless you have copies of "
505                                   "the <tt>metadata.xml</tt> file within the film and the metadata files within the DCP.\n\n"
506                                   "You should ensure that these files are <span weight=\"bold\" size=\"larger\">BACKED UP</span> "
507                                   "if you want to make KDMs for this film.")
508                                 );
509                 }
510
511                 /* Remove any existing DCP if the user agrees */
512                 boost::filesystem::path const dcp_dir = _film->dir (_film->dcp_name(), false);
513                 if (boost::filesystem::exists (dcp_dir)) {
514                         if (!confirm_dialog (this, wxString::Format (_("Do you want to overwrite the existing DCP %s?"), std_to_wx(dcp_dir.string()).data()))) {
515                                 return;
516                         }
517                         boost::filesystem::remove_all (dcp_dir);
518                 }
519
520                 try {
521                         /* It seems to make sense to auto-save metadata here, since the make DCP may last
522                            a long time, and crashes/power failures are moderately likely.
523                         */
524                         _film->write_metadata ();
525                         _film->make_dcp ();
526                 } catch (BadSettingError& e) {
527                         error_dialog (this, wxString::Format (_("Bad setting for %s (%s)"), std_to_wx(e.setting()).data(), std_to_wx(e.what()).data()));
528                 } catch (std::exception& e) {
529                         error_dialog (this, wxString::Format (_("Could not make DCP: %s."), std_to_wx(e.what()).data()));
530                 }
531         }
532
533         void jobs_make_kdms ()
534         {
535                 if (!_film) {
536                         return;
537                 }
538
539                 if (_kdm_dialog) {
540                         _kdm_dialog->Destroy ();
541                         _kdm_dialog = 0;
542                 }
543
544                 _kdm_dialog = new KDMDialog (this, _film);
545                 _kdm_dialog->Show ();
546         }
547
548         void jobs_make_dcp_batch ()
549         {
550                 if (!_film) {
551                         return;
552                 }
553
554                 if (!get_hints(_film).empty() && Config::instance()->show_hints_before_make_dcp()) {
555                         HintsDialog* hints = new HintsDialog (this, _film, false);
556                         int const r = hints->ShowModal();
557                         hints->Destroy ();
558                         if (r == wxID_CANCEL) {
559                                 return;
560                         }
561                 }
562
563                 _film->write_metadata ();
564
565                 /* i = 0; try to connect via socket
566                    i = 1; try again, and then try to start the batch converter
567                    i = 2 onwards; try again.
568                 */
569                 for (int i = 0; i < 8; ++i) {
570                         try {
571                                 boost::asio::io_service io_service;
572                                 boost::asio::ip::tcp::resolver resolver (io_service);
573                                 boost::asio::ip::tcp::resolver::query query ("127.0.0.1", raw_convert<string> (BATCH_JOB_PORT));
574                                 boost::asio::ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve (query);
575                                 Socket socket (5);
576                                 socket.connect (*endpoint_iterator);
577                                 DCPOMATIC_ASSERT (_film->directory ());
578                                 string s = _film->directory()->string ();
579                                 socket.write (s.length() + 1);
580                                 socket.write ((uint8_t *) s.c_str(), s.length() + 1);
581                                 /* OK\0 */
582                                 uint8_t ok[3];
583                                 socket.read (ok, 3);
584                                 return;
585                         } catch (exception& e) {
586
587                         }
588
589                         if (i == 1) {
590                                 start_batch_converter (wx_to_std (wxStandardPaths::Get().GetExecutablePath()));
591                         }
592
593                         dcpomatic_sleep (1);
594                 }
595
596                 error_dialog (this, _("Could not find batch converter."));
597         }
598
599         void jobs_make_self_dkdm ()
600         {
601                 if (!_film) {
602                         return;
603                 }
604
605                 SelfDKDMDialog* d = new SelfDKDMDialog (this, _film);
606                 if (d->ShowModal () != wxID_OK) {
607                         d->Destroy ();
608                         return;
609                 }
610
611                 NagDialog::maybe_nag (
612                         this,
613                         Config::NAG_DKDM_CONFIG,
614                         wxString::Format (
615                                 _("You are making a DKDM which is encrypted by a private key held in"
616                                   "\n\n<tt>%s</tt>\n\nIt is <span weight=\"bold\" size=\"larger\">VITALLY IMPORTANT</span> "
617                                   "that you <span weight=\"bold\" size=\"larger\">BACK UP THIS FILE</span> since if it is lost "
618                                   "your DKDMs (and the DCPs they protect) will become useless."), std_to_wx(Config::config_path().string()).data()
619                                 )
620                         );
621
622                 optional<dcp::EncryptedKDM> kdm;
623                 try {
624                         kdm = _film->make_kdm (
625                                 Config::instance()->decryption_chain()->leaf(),
626                                 vector<dcp::Certificate> (),
627                                 d->cpl (),
628                                 dcp::LocalTime ("2012-01-01T01:00:00+00:00"),
629                                 dcp::LocalTime ("2112-01-01T01:00:00+00:00"),
630                                 dcp::MODIFIED_TRANSITIONAL_1
631                                 );
632                 } catch (dcp::NotEncryptedError& e) {
633                         error_dialog (this, _("CPL's content is not encrypted."));
634                 } catch (exception& e) {
635                         error_dialog (this, e.what ());
636                 } catch (...) {
637                         error_dialog (this, _("An unknown exception occurred."));
638                 }
639
640                 if (kdm) {
641                         if (d->internal ()) {
642                                 vector<dcp::EncryptedKDM> dkdms = Config::instance()->dkdms ();
643                                 dkdms.push_back (kdm.get());
644                                 Config::instance()->set_dkdms (dkdms);
645                         } else {
646                                 boost::filesystem::path path = d->directory() / (_film->dcp_name(false) + "_DKDM.xml");
647                                 kdm->as_xml (path);
648                         }
649                 }
650
651                 d->Destroy ();
652         }
653
654         void content_scale_to_fit_width ()
655         {
656                 ContentList vc = _film_editor->content_panel()->selected_video ();
657                 for (ContentList::iterator i = vc.begin(); i != vc.end(); ++i) {
658                         (*i)->video->scale_and_crop_to_fit_width ();
659                 }
660         }
661
662         void content_scale_to_fit_height ()
663         {
664                 ContentList vc = _film_editor->content_panel()->selected_video ();
665                 for (ContentList::iterator i = vc.begin(); i != vc.end(); ++i) {
666                         (*i)->video->scale_and_crop_to_fit_height ();
667                 }
668         }
669
670         void jobs_send_dcp_to_tms ()
671         {
672                 _film->send_dcp_to_tms ();
673         }
674
675         void jobs_show_dcp ()
676         {
677                 DCPOMATIC_ASSERT (_film->directory ());
678 #ifdef DCPOMATIC_WINDOWS
679                 wstringstream args;
680                 args << "/select," << _film->dir (_film->dcp_name(false));
681                 ShellExecute (0, L"open", L"explorer.exe", args.str().c_str(), 0, SW_SHOWDEFAULT);
682 #endif
683
684 #ifdef DCPOMATIC_LINUX
685                 int r = system ("which nautilus");
686                 if (WEXITSTATUS (r) == 0) {
687                         r = system (string ("nautilus " + _film->directory()->string()).c_str ());
688                         if (WEXITSTATUS (r)) {
689                                 error_dialog (this, _("Could not show DCP (could not run nautilus)"));
690                         }
691                 } else {
692                         int r = system ("which konqueror");
693                         if (WEXITSTATUS (r) == 0) {
694                                 r = system (string ("konqueror " + _film->directory()->string()).c_str ());
695                                 if (WEXITSTATUS (r)) {
696                                         error_dialog (this, _("Could not show DCP (could not run konqueror)"));
697                                 }
698                         }
699                 }
700 #endif
701
702 #ifdef DCPOMATIC_OSX
703                 int r = system (string ("open -R " + _film->dir (_film->dcp_name (false)).string ()).c_str ());
704                 if (WEXITSTATUS (r)) {
705                         error_dialog (this, _("Could not show DCP"));
706                 }
707 #endif
708         }
709
710         void tools_video_waveform ()
711         {
712                 if (!_video_waveform_dialog) {
713                         _video_waveform_dialog = new VideoWaveformDialog (this, _film, _film_viewer);
714                 }
715
716                 _video_waveform_dialog->Show ();
717         }
718
719         void tools_hints ()
720         {
721                 if (!_hints_dialog) {
722                         _hints_dialog = new HintsDialog (this, _film, true);
723                 }
724
725                 _hints_dialog->Show ();
726         }
727
728         void tools_encoding_servers ()
729         {
730                 if (!_servers_list_dialog) {
731                         _servers_list_dialog = new ServersListDialog (this);
732                 }
733
734                 _servers_list_dialog->Show ();
735         }
736
737         void tools_manage_templates ()
738         {
739                 if (!_templates_dialog) {
740                         _templates_dialog = new TemplatesDialog (this);
741                 }
742
743                 _templates_dialog->Show ();
744         }
745
746         void tools_check_for_updates ()
747         {
748                 UpdateChecker::instance()->run ();
749                 _update_news_requested = true;
750         }
751
752         void help_about ()
753         {
754                 AboutDialog* d = new AboutDialog (this);
755                 d->ShowModal ();
756                 d->Destroy ();
757         }
758
759         void help_report_a_problem ()
760         {
761                 ReportProblemDialog* d = new ReportProblemDialog (this, _film);
762                 if (d->ShowModal () == wxID_OK) {
763                         d->report ();
764                 }
765                 d->Destroy ();
766         }
767
768         bool should_close ()
769         {
770                 if (!JobManager::instance()->work_to_do ()) {
771                         return true;
772                 }
773
774                 wxMessageDialog* d = new wxMessageDialog (
775                         0,
776                         _("There are unfinished jobs; are you sure you want to quit?"),
777                         _("Unfinished jobs"),
778                         wxYES_NO | wxYES_DEFAULT | wxICON_QUESTION
779                         );
780
781                 bool const r = d->ShowModal() == wxID_YES;
782                 d->Destroy ();
783                 return r;
784         }
785
786         void close (wxCloseEvent& ev)
787         {
788                 if (!should_close ()) {
789                         ev.Veto ();
790                         return;
791                 }
792
793                 if (_film && _film->dirty ()) {
794
795                         FilmChangedDialog* dialog = new FilmChangedDialog (_film->name ());
796                         int const r = dialog->run ();
797                         delete dialog;
798
799                         switch (r) {
800                         case wxID_NO:
801                                 /* Don't save and carry on to close */
802                                 break;
803                         case wxID_YES:
804                                 /* Save and carry on to close */
805                                 _film->write_metadata ();
806                                 break;
807                         case wxID_CANCEL:
808                                 /* Veto the event and stop */
809                                 ev.Veto ();
810                                 return;
811                         }
812                 }
813
814                 /* We don't want to hear about any more configuration changes, since they
815                    cause the File menu to be altered, which itself will be deleted around
816                    now (without, as far as I can see, any way for us to find out).
817                 */
818                 _config_changed_connection.disconnect ();
819
820                 ev.Skip ();
821         }
822
823         void set_menu_sensitivity ()
824         {
825                 list<shared_ptr<Job> > jobs = JobManager::instance()->get ();
826                 list<shared_ptr<Job> >::iterator i = jobs.begin();
827                 while (i != jobs.end() && (*i)->json_name() != "transcode") {
828                         ++i;
829                 }
830                 bool const dcp_creation = (i != jobs.end ()) && !(*i)->finished ();
831                 bool const have_cpl = _film && !_film->cpls().empty ();
832                 bool const have_selected_video_content = !_film_editor->content_panel()->selected_video().empty();
833
834                 for (map<wxMenuItem*, int>::iterator j = menu_items.begin(); j != menu_items.end(); ++j) {
835
836                         bool enabled = true;
837
838                         if ((j->second & NEEDS_FILM) && !_film) {
839                                 enabled = false;
840                         }
841
842                         if ((j->second & NOT_DURING_DCP_CREATION) && dcp_creation) {
843                                 enabled = false;
844                         }
845
846                         if ((j->second & NEEDS_CPL) && !have_cpl) {
847                                 enabled = false;
848                         }
849
850                         if ((j->second & NEEDS_SELECTED_VIDEO_CONTENT) && !have_selected_video_content) {
851                                 enabled = false;
852                         }
853
854                         j->first->Enable (enabled);
855                 }
856         }
857
858         /** @return true if the operation that called this method
859          *  should continue, false to abort it.
860          */
861         bool maybe_save_then_delete_film ()
862         {
863                 if (!_film) {
864                         return true;
865                 }
866
867                 if (_film->dirty ()) {
868                         FilmChangedDialog d (_film->name ());
869                         switch (d.run ()) {
870                         case wxID_NO:
871                                 break;
872                         case wxID_YES:
873                                 _film->write_metadata ();
874                                 break;
875                         case wxID_CANCEL:
876                                 return false;
877                         }
878                 }
879
880                 _film.reset ();
881                 return true;
882         }
883
884         void add_item (wxMenu* menu, wxString text, int id, int sens)
885         {
886                 wxMenuItem* item = menu->Append (id, text);
887                 menu_items.insert (make_pair (item, sens));
888         }
889
890         void setup_menu (wxMenuBar* m)
891         {
892                 _file_menu = new wxMenu;
893                 add_item (_file_menu, _("New...\tCtrl-N"), ID_file_new, ALWAYS);
894                 add_item (_file_menu, _("&Open...\tCtrl-O"), ID_file_open, ALWAYS);
895                 _file_menu->AppendSeparator ();
896                 add_item (_file_menu, _("&Save\tCtrl-S"), ID_file_save, NEEDS_FILM);
897                 _file_menu->AppendSeparator ();
898                 add_item (_file_menu, _("Save as &template..."), ID_file_save_as_template, NEEDS_FILM);
899
900                 _history_position = _file_menu->GetMenuItems().GetCount();
901
902 #ifndef __WXOSX__
903                 _file_menu->AppendSeparator ();
904 #endif
905
906 #ifdef __WXOSX__
907                 add_item (_file_menu, _("&Exit"), wxID_EXIT, ALWAYS);
908 #else
909                 add_item (_file_menu, _("&Quit"), wxID_EXIT, ALWAYS);
910 #endif
911
912 #ifdef __WXOSX__
913                 add_item (_file_menu, _("&Preferences...\tCtrl-P"), wxID_PREFERENCES, ALWAYS);
914 #else
915                 wxMenu* edit = new wxMenu;
916                 add_item (edit, _("&Preferences...\tCtrl-P"), wxID_PREFERENCES, ALWAYS);
917 #endif
918
919                 wxMenu* content = new wxMenu;
920                 add_item (content, _("Scale to fit &width"), ID_content_scale_to_fit_width, NEEDS_FILM | NEEDS_SELECTED_VIDEO_CONTENT);
921                 add_item (content, _("Scale to fit &height"), ID_content_scale_to_fit_height, NEEDS_FILM | NEEDS_SELECTED_VIDEO_CONTENT);
922
923                 wxMenu* jobs_menu = new wxMenu;
924                 add_item (jobs_menu, _("&Make DCP\tCtrl-M"), ID_jobs_make_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION);
925                 add_item (jobs_menu, _("Make DCP in &batch converter\tCtrl-B"), ID_jobs_make_dcp_batch, NEEDS_FILM | NOT_DURING_DCP_CREATION);
926                 add_item (jobs_menu, _("Make &KDMs...\tCtrl-K"), ID_jobs_make_kdms, NEEDS_FILM);
927                 add_item (jobs_menu, _("Make DKDM for DCP-o-matic..."), ID_jobs_make_self_dkdm, NEEDS_FILM);
928                 add_item (jobs_menu, _("&Send DCP to TMS"), ID_jobs_send_dcp_to_tms, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
929                 add_item (jobs_menu, _("S&how DCP"), ID_jobs_show_dcp, NEEDS_FILM | NOT_DURING_DCP_CREATION | NEEDS_CPL);
930
931                 wxMenu* tools = new wxMenu;
932                 add_item (tools, _("Video waveform..."), ID_tools_video_waveform, NEEDS_FILM);
933                 add_item (tools, _("Hints..."), ID_tools_hints, 0);
934                 add_item (tools, _("Encoding servers..."), ID_tools_encoding_servers, 0);
935                 add_item (tools, _("Manage templates..."), ID_tools_manage_templates, 0);
936                 add_item (tools, _("Check for updates"), ID_tools_check_for_updates, 0);
937                 tools->AppendSeparator ();
938                 add_item (tools, _("Restore default preferences"), ID_tools_restore_default_preferences, ALWAYS);
939
940                 wxMenu* help = new wxMenu;
941 #ifdef __WXOSX__
942                 add_item (help, _("About DCP-o-matic"), wxID_ABOUT, ALWAYS);
943 #else
944                 add_item (help, _("About"), wxID_ABOUT, ALWAYS);
945 #endif
946                 add_item (help, _("Report a problem..."), ID_help_report_a_problem, NEEDS_FILM);
947
948                 m->Append (_file_menu, _("&File"));
949 #ifndef __WXOSX__
950                 m->Append (edit, _("&Edit"));
951 #endif
952                 m->Append (content, _("&Content"));
953                 m->Append (jobs_menu, _("&Jobs"));
954                 m->Append (tools, _("&Tools"));
955                 m->Append (help, _("&Help"));
956         }
957
958         void config_changed (Config::Property what)
959         {
960                 /* Instantly save any config changes when using the DCP-o-matic GUI */
961                 if (what == Config::CINEMAS) {
962                         try {
963                                 Config::instance()->write_cinemas();
964                         } catch (exception& e) {
965                                 error_dialog (
966                                         this,
967                                         wxString::Format (
968                                                 _("Could not write to cinemas file at %s.  Your changes have not been saved."),
969                                                 std_to_wx (Config::instance()->cinemas_file().string()).data()
970                                                 )
971                                         );
972                         }
973                 } else {
974                         try {
975                                 Config::instance()->write_config();
976                         } catch (exception& e) {
977                                 error_dialog (
978                                         this,
979                                         wxString::Format (
980                                                 _("Could not write to config file at %s.  Your changes have not been saved."),
981                                                 std_to_wx (Config::instance()->cinemas_file().string()).data()
982                                                 )
983                                         );
984                         }
985                 }
986
987                 for (int i = 0; i < _history_items; ++i) {
988                         delete _file_menu->Remove (ID_file_history + i);
989                 }
990
991                 if (_history_separator) {
992                         _file_menu->Remove (_history_separator);
993                 }
994                 delete _history_separator;
995                 _history_separator = 0;
996
997                 int pos = _history_position;
998
999                 vector<boost::filesystem::path> history = Config::instance()->history ();
1000
1001                 if (!history.empty ()) {
1002                         _history_separator = _file_menu->InsertSeparator (pos++);
1003                 }
1004
1005                 for (size_t i = 0; i < history.size(); ++i) {
1006                         string s;
1007                         if (i < 9) {
1008                                 s = String::compose ("&%1 %2", i + 1, history[i].string());
1009                         } else {
1010                                 s = history[i].string();
1011                         }
1012                         _file_menu->Insert (pos++, ID_file_history + i, std_to_wx (s));
1013                 }
1014
1015                 _history_items = history.size ();
1016         }
1017
1018         void update_checker_state_changed ()
1019         {
1020                 UpdateChecker* uc = UpdateChecker::instance ();
1021
1022                 bool const announce =
1023                         _update_news_requested ||
1024                         (uc->stable() && Config::instance()->check_for_updates()) ||
1025                         (uc->test() && Config::instance()->check_for_updates() && Config::instance()->check_for_test_updates());
1026
1027                 _update_news_requested = false;
1028
1029                 if (!announce) {
1030                         return;
1031                 }
1032
1033                 if (uc->state() == UpdateChecker::YES) {
1034                         UpdateDialog* dialog = new UpdateDialog (this, uc->stable (), uc->test ());
1035                         dialog->ShowModal ();
1036                         dialog->Destroy ();
1037                 } else if (uc->state() == UpdateChecker::FAILED) {
1038                         error_dialog (this, _("The DCP-o-matic download server could not be contacted."));
1039                 } else {
1040                         error_dialog (this, _("There are no new versions of DCP-o-matic available."));
1041                 }
1042
1043                 _update_news_requested = false;
1044         }
1045
1046         FilmEditor* _film_editor;
1047         FilmViewer* _film_viewer;
1048         VideoWaveformDialog* _video_waveform_dialog;
1049         HintsDialog* _hints_dialog;
1050         ServersListDialog* _servers_list_dialog;
1051         wxPreferencesEditor* _config_dialog;
1052         KDMDialog* _kdm_dialog;
1053         TemplatesDialog* _templates_dialog;
1054         wxMenu* _file_menu;
1055         shared_ptr<Film> _film;
1056         int _history_items;
1057         int _history_position;
1058         wxMenuItem* _history_separator;
1059         boost::signals2::scoped_connection _config_changed_connection;
1060         bool _update_news_requested;
1061 };
1062
1063 static const wxCmdLineEntryDesc command_line_description[] = {
1064         { wxCMD_LINE_SWITCH, "n", "new", "create new film", wxCMD_LINE_VAL_NONE, wxCMD_LINE_PARAM_OPTIONAL },
1065         { wxCMD_LINE_OPTION, "c", "content", "add content file / directory", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1066         { wxCMD_LINE_OPTION, "d", "dcp", "add content DCP", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1067         { wxCMD_LINE_PARAM, 0, 0, "film to load or create", wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_OPTIONAL },
1068         { wxCMD_LINE_NONE, "", "", "", wxCmdLineParamType (0), 0 }
1069 };
1070
1071 /** @class App
1072  *  @brief The magic App class for wxWidgets.
1073  */
1074 class App : public wxApp
1075 {
1076 public:
1077         App ()
1078                 : wxApp ()
1079                 , _frame (0)
1080         {}
1081
1082 private:
1083
1084         bool OnInit ()
1085         try
1086         {
1087                 wxInitAllImageHandlers ();
1088
1089                 Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
1090
1091                 wxSplashScreen* splash = 0;
1092                 try {
1093                         if (!Config::have_existing ("config.xml")) {
1094                                 wxBitmap bitmap;
1095                                 boost::filesystem::path p = shared_path () / "splash.png";
1096                                 if (bitmap.LoadFile (std_to_wx (p.string ()), wxBITMAP_TYPE_PNG)) {
1097                                         splash = new wxSplashScreen (bitmap, wxSPLASH_CENTRE_ON_SCREEN | wxSPLASH_NO_TIMEOUT, 0, 0, -1);
1098                                         wxYield ();
1099                                 }
1100                         }
1101                 } catch (boost::filesystem::filesystem_error& e) {
1102                         /* Maybe we couldn't find the splash image; never mind */
1103                 }
1104
1105                 SetAppName (_("DCP-o-matic"));
1106
1107                 if (!wxApp::OnInit()) {
1108                         return false;
1109                 }
1110
1111 #ifdef DCPOMATIC_LINUX
1112                 unsetenv ("UBUNTU_MENUPROXY");
1113 #endif
1114
1115 #ifdef __WXOSX__
1116                 ProcessSerialNumber serial;
1117                 GetCurrentProcess (&serial);
1118                 TransformProcessType (&serial, kProcessTransformToForegroundApplication);
1119 #endif
1120
1121                 dcpomatic_setup_path_encoding ();
1122
1123                 /* Enable i18n; this will create a Config object
1124                    to look for a force-configured language.  This Config
1125                    object will be wrong, however, because dcpomatic_setup
1126                    hasn't yet been called and there aren't any filters etc.
1127                    set up yet.
1128                 */
1129                 dcpomatic_setup_i18n ();
1130
1131                 /* Set things up, including filters etc.
1132                    which will now be internationalised correctly.
1133                 */
1134                 dcpomatic_setup ();
1135
1136                 /* Force the configuration to be re-loaded correctly next
1137                    time it is needed.
1138                 */
1139                 Config::drop ();
1140
1141                 _frame = new DOMFrame (_("DCP-o-matic"));
1142                 SetTopWindow (_frame);
1143                 _frame->Maximize ();
1144                 if (splash) {
1145                         splash->Destroy ();
1146                 }
1147                 _frame->Show ();
1148
1149                 if (!_film_to_load.empty() && boost::filesystem::is_directory (_film_to_load)) {
1150                         try {
1151                                 _frame->load_film (_film_to_load);
1152                         } catch (exception& e) {
1153                                 error_dialog (0, std_to_wx (String::compose (wx_to_std (_("Could not load film %1 (%2)")), _film_to_load, e.what())));
1154                         }
1155                 }
1156
1157                 if (!_film_to_create.empty ()) {
1158                         _frame->new_film (_film_to_create, optional<string> ());
1159                         if (!_content_to_add.empty ()) {
1160                                 BOOST_FOREACH (shared_ptr<Content> i, content_factory (_frame->film(), _content_to_add)) {
1161                                         _frame->film()->examine_and_add_content (i);
1162                                 }
1163                         }
1164                         if (!_dcp_to_add.empty ()) {
1165                                 _frame->film()->examine_and_add_content (shared_ptr<DCPContent> (new DCPContent (_frame->film(), _dcp_to_add)));
1166                         }
1167                 }
1168
1169                 signal_manager = new wxSignalManager (this);
1170                 Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
1171
1172                 Bind (wxEVT_TIMER, boost::bind (&App::check, this));
1173                 _timer.reset (new wxTimer (this));
1174                 _timer->Start (1000);
1175
1176                 if (Config::instance()->check_for_updates ()) {
1177                         UpdateChecker::instance()->run ();
1178                 }
1179
1180                 return true;
1181         }
1182         catch (exception& e)
1183         {
1184                 error_dialog (0, wxString::Format ("DCP-o-matic could not start: %s", e.what ()));
1185                 return true;
1186         }
1187
1188         void OnInitCmdLine (wxCmdLineParser& parser)
1189         {
1190                 parser.SetDesc (command_line_description);
1191                 parser.SetSwitchChars (wxT ("-"));
1192         }
1193
1194         bool OnCmdLineParsed (wxCmdLineParser& parser)
1195         {
1196                 if (parser.GetParamCount() > 0) {
1197                         if (parser.Found (wxT ("new"))) {
1198                                 _film_to_create = wx_to_std (parser.GetParam (0));
1199                         } else {
1200                                 _film_to_load = wx_to_std (parser.GetParam (0));
1201                         }
1202                 }
1203
1204                 wxString content;
1205                 if (parser.Found (wxT ("content"), &content)) {
1206                         _content_to_add = wx_to_std (content);
1207                 }
1208
1209                 wxString dcp;
1210                 if (parser.Found (wxT ("dcp"), &dcp)) {
1211                         _dcp_to_add = wx_to_std (dcp);
1212                 }
1213
1214                 return true;
1215         }
1216
1217         void report_exception ()
1218         {
1219                 try {
1220                         throw;
1221                 } catch (FileError& e) {
1222                         error_dialog (
1223                                 0,
1224                                 wxString::Format (
1225                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
1226                                         std_to_wx (e.what()),
1227                                         std_to_wx (e.file().string().c_str ())
1228                                         )
1229                                 );
1230                 } catch (exception& e) {
1231                         error_dialog (
1232                                 0,
1233                                 wxString::Format (
1234                                         _("An exception occurred: %s.\n\n") + REPORT_PROBLEM,
1235                                         std_to_wx (e.what ())
1236                                         )
1237                                 );
1238                 } catch (...) {
1239                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
1240                 }
1241         }
1242
1243         /* An unhandled exception has occurred inside the main event loop */
1244         bool OnExceptionInMainLoop ()
1245         {
1246                 report_exception ();
1247                 /* This will terminate the program */
1248                 return false;
1249         }
1250
1251         void OnUnhandledException ()
1252         {
1253                 report_exception ();
1254         }
1255
1256         void idle ()
1257         {
1258                 signal_manager->ui_idle ();
1259         }
1260
1261         void check ()
1262         {
1263                 try {
1264                         EncodeServerFinder::instance()->rethrow ();
1265                 } catch (exception& e) {
1266                         error_dialog (0, std_to_wx (e.what ()));
1267                 }
1268         }
1269
1270         void config_failed_to_load ()
1271         {
1272                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
1273         }
1274
1275         DOMFrame* _frame;
1276         shared_ptr<wxTimer> _timer;
1277         string _film_to_load;
1278         string _film_to_create;
1279         string _content_to_add;
1280         string _dcp_to_add;
1281 };
1282
1283 IMPLEMENT_APP (App)