Use checkboxes to decide which screens KDMs will be made for (#1895).
[dcpomatic.git] / src / tools / dcpomatic_kdm.cc
1 /*
2     Copyright (C) 2015-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "wx/about_dialog.h"
23 #include "wx/dcpomatic_button.h"
24 #include "wx/editable_list.h"
25 #include "wx/file_dialog_wrapper.h"
26 #include "wx/file_picker_ctrl.h"
27 #include "wx/full_config_dialog.h"
28 #include "wx/job_view_dialog.h"
29 #include "wx/kdm_output_panel.h"
30 #include "wx/kdm_timing_panel.h"
31 #include "wx/nag_dialog.h"
32 #include "wx/new_dkdm_folder_dialog.h"
33 #include "wx/report_problem_dialog.h"
34 #include "wx/screens_panel.h"
35 #include "wx/static_text.h"
36 #include "wx/wx_signal_manager.h"
37 #include "wx/wx_util.h"
38 #include "lib/cinema.h"
39 #include "lib/compose.hpp"
40 #include "lib/config.h"
41 #include "lib/cross.h"
42 #include "lib/dkdm_wrapper.h"
43 #include "lib/exceptions.h"
44 #include "lib/job_manager.h"
45 #include "lib/kdm_with_metadata.h"
46 #include "lib/screen.h"
47 #include "lib/send_kdm_email_job.h"
48 #include "lib/util.h"
49 #include <dcp/encrypted_kdm.h>
50 #include <dcp/decrypted_kdm.h>
51 #include <dcp/exceptions.h>
52 #include "lib/warnings.h"
53 DCPOMATIC_DISABLE_WARNINGS
54 #include <wx/filepicker.h>
55 #include <wx/preferences.h>
56 #include <wx/splash.h>
57 #include <wx/treectrl.h>
58 #include <wx/wx.h>
59 DCPOMATIC_ENABLE_WARNINGS
60 #ifdef __WXOSX__
61 #include <ApplicationServices/ApplicationServices.h>
62 #endif
63 #include <boost/bind/bind.hpp>
64
65 #ifdef check
66 #undef check
67 #endif
68
69
70 using std::exception;
71 using std::list;
72 using std::make_shared;
73 using std::map;
74 using std::pair;
75 using std::shared_ptr;
76 using std::string;
77 using std::vector;
78 using boost::bind;
79 using boost::optional;
80 using boost::ref;
81 using std::dynamic_pointer_cast;
82 #if BOOST_VERSION >= 106100
83 using namespace boost::placeholders;
84 #endif
85 using namespace dcpomatic;
86
87
88 enum {
89         ID_help_report_a_problem = 1,
90 };
91
92
93 class DOMFrame : public wxFrame
94 {
95 public:
96         explicit DOMFrame (wxString const & title)
97                 : wxFrame (nullptr, -1, title)
98                 , _config_dialog (nullptr)
99                 , _job_view (nullptr)
100         {
101 #if defined(DCPOMATIC_WINDOWS)
102                 if (Config::instance()->win32_console ()) {
103                         AllocConsole();
104
105                         HANDLE handle_out = GetStdHandle(STD_OUTPUT_HANDLE);
106                         int hCrt = _open_osfhandle((intptr_t) handle_out, _O_TEXT);
107                         FILE* hf_out = _fdopen(hCrt, "w");
108                         setvbuf(hf_out, NULL, _IONBF, 1);
109                         *stdout = *hf_out;
110
111                         HANDLE handle_in = GetStdHandle(STD_INPUT_HANDLE);
112                         hCrt = _open_osfhandle((intptr_t) handle_in, _O_TEXT);
113                         FILE* hf_in = _fdopen(hCrt, "r");
114                         setvbuf(hf_in, NULL, _IONBF, 128);
115                         *stdin = *hf_in;
116
117                         std::cout << "DCP-o-matic KDM creator is starting." << "\n";
118                 }
119 #endif
120
121                 auto bar = new wxMenuBar;
122                 setup_menu (bar);
123                 SetMenuBar (bar);
124
125                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::file_exit, this),             wxID_EXIT);
126                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::edit_preferences, this),      wxID_PREFERENCES);
127                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_about, this),            wxID_ABOUT);
128                 Bind (wxEVT_MENU, boost::bind (&DOMFrame::help_report_a_problem, this), ID_help_report_a_problem);
129
130                 /* Use a panel as the only child of the Frame so that we avoid
131                    the dark-grey background on Windows.
132                 */
133                 auto overall_panel = new wxPanel (this, wxID_ANY);
134                 auto main_sizer = new wxBoxSizer (wxHORIZONTAL);
135
136                 auto horizontal = new wxBoxSizer (wxHORIZONTAL);
137                 auto left = new wxBoxSizer (wxVERTICAL);
138                 auto right = new wxBoxSizer (wxVERTICAL);
139
140                 horizontal->Add (left, 1, wxEXPAND | wxRIGHT, DCPOMATIC_SIZER_X_GAP * 2);
141                 horizontal->Add (right, 1, wxEXPAND);
142
143                 wxFont subheading_font (*wxNORMAL_FONT);
144                 subheading_font.SetWeight (wxFONTWEIGHT_BOLD);
145
146                 auto h = new StaticText (overall_panel, _("Screens"));
147                 h->SetFont (subheading_font);
148                 left->Add (h, 0, wxBOTTOM, DCPOMATIC_SIZER_Y_GAP);
149                 _screens = new ScreensPanel (overall_panel);
150                 left->Add (_screens, 1, wxEXPAND | wxBOTTOM, DCPOMATIC_SIZER_Y_GAP);
151
152                 /// TRANSLATORS: translate the word "Timing" here; do not include the "KDM|" prefix
153                 h = new StaticText (overall_panel, S_("KDM|Timing"));
154                 h->SetFont (subheading_font);
155                 right->Add (h);
156                 _timing = new KDMTimingPanel (overall_panel);
157                 right->Add (_timing, 0, wxALL, DCPOMATIC_SIZER_Y_GAP);
158
159                 h = new StaticText (overall_panel, _("DKDM"));
160                 h->SetFont (subheading_font);
161                 right->Add (h, 0, wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
162                 auto dkdm_sizer = new wxBoxSizer (wxHORIZONTAL);
163                 _dkdm = new wxTreeCtrl (
164                         overall_panel, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTR_HIDE_ROOT | wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT
165                 );
166                 dkdm_sizer->Add (_dkdm, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_Y_GAP);
167                 wxBoxSizer* dkdm_buttons = new wxBoxSizer(wxVERTICAL);
168                 _add_dkdm = new Button (overall_panel, _("Add..."));
169                 dkdm_buttons->Add (_add_dkdm, 0, wxALL | wxEXPAND, DCPOMATIC_BUTTON_STACK_GAP);
170                 _add_dkdm_folder = new Button (overall_panel, _("Add folder..."));
171                 dkdm_buttons->Add (_add_dkdm_folder, 0, wxALL | wxEXPAND, DCPOMATIC_BUTTON_STACK_GAP);
172                 _remove_dkdm = new Button (overall_panel, _("Remove"));
173                 dkdm_buttons->Add (_remove_dkdm, 0, wxALL | wxEXPAND, DCPOMATIC_BUTTON_STACK_GAP);
174                 _export_dkdm = new Button (overall_panel, _("Export..."));
175                 dkdm_buttons->Add (_export_dkdm, 0, wxALL | wxEXPAND, DCPOMATIC_BUTTON_STACK_GAP);
176                 dkdm_sizer->Add (dkdm_buttons, 0, wxEXPAND | wxALL, DCPOMATIC_SIZER_GAP);
177                 right->Add (dkdm_sizer, 1, wxEXPAND | wxALL, DCPOMATIC_SIZER_Y_GAP);
178
179                 add_dkdm_view (Config::instance()->dkdms());
180
181                 h = new StaticText (overall_panel, _("Output"));
182                 h->SetFont (subheading_font);
183                 right->Add (h, 0, wxTOP, DCPOMATIC_SIZER_Y_GAP * 2);
184                 _output = new KDMOutputPanel (overall_panel);
185                 right->Add (_output, 0, wxALL, DCPOMATIC_SIZER_Y_GAP);
186
187                 _create = new Button (overall_panel, _("Create KDMs"));
188                 right->Add (_create, 0, wxALL, DCPOMATIC_SIZER_GAP);
189
190                 main_sizer->Add (horizontal, 1, wxALL | wxEXPAND, DCPOMATIC_DIALOG_BORDER);
191                 overall_panel->SetSizer (main_sizer);
192
193                 /* Instantly save any config changes when using a DCP-o-matic GUI */
194                 Config::instance()->Changed.connect (boost::bind (&Config::write, Config::instance ()));
195
196                 _screens->ScreensChanged.connect (boost::bind (&DOMFrame::setup_sensitivity, this));
197                 _create->Bind (wxEVT_BUTTON, bind (&DOMFrame::create_kdms, this));
198                 _dkdm->Bind (wxEVT_TREE_SEL_CHANGED, boost::bind (&DOMFrame::setup_sensitivity, this));
199                 _dkdm->Bind (wxEVT_TREE_BEGIN_DRAG, boost::bind (&DOMFrame::dkdm_begin_drag, this, _1));
200                 _dkdm->Bind (wxEVT_TREE_END_DRAG, boost::bind (&DOMFrame::dkdm_end_drag, this, _1));
201                 _add_dkdm->Bind (wxEVT_BUTTON, bind (&DOMFrame::add_dkdm_clicked, this));
202                 _add_dkdm_folder->Bind (wxEVT_BUTTON, bind (&DOMFrame::add_dkdm_folder_clicked, this));
203                 _remove_dkdm->Bind (wxEVT_BUTTON, bind (&DOMFrame::remove_dkdm_clicked, this));
204                 _export_dkdm->Bind (wxEVT_BUTTON, bind (&DOMFrame::export_dkdm_clicked, this));
205
206                 setup_sensitivity ();
207         }
208
209 private:
210         void file_exit ()
211         {
212                 /* false here allows the close handler to veto the close request */
213                 Close (false);
214         }
215
216         void edit_preferences ()
217         {
218                 if (!_config_dialog) {
219                         _config_dialog = create_full_config_dialog ();
220                 }
221                 _config_dialog->Show (this);
222         }
223
224         void help_about ()
225         {
226                 auto d = new AboutDialog (this);
227                 d->ShowModal ();
228                 d->Destroy ();
229         }
230
231         void help_report_a_problem ()
232         {
233                 auto d = new ReportProblemDialog (this, shared_ptr<Film>());
234                 if (d->ShowModal () == wxID_OK) {
235                         d->report ();
236                 }
237                 d->Destroy ();
238         }
239
240         void setup_menu (wxMenuBar* m)
241         {
242                 auto file = new wxMenu;
243
244 #ifdef __WXOSX__
245                 file->Append (wxID_EXIT, _("&Exit"));
246 #else
247                 file->Append (wxID_EXIT, _("&Quit"));
248 #endif
249
250 #ifdef __WXOSX__
251                 file->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P"));
252 #else
253                 wxMenu* edit = new wxMenu;
254                 edit->Append (wxID_PREFERENCES, _("&Preferences...\tCtrl-P"));
255 #endif
256
257                 wxMenu* help = new wxMenu;
258 #ifdef __WXOSX__
259                 help->Append (wxID_ABOUT, _("About DCP-o-matic"));
260 #else
261                 help->Append (wxID_ABOUT, _("About"));
262 #endif
263                 help->Append (ID_help_report_a_problem, _("Report a problem..."));
264
265                 m->Append (file, _("&File"));
266 #ifndef __WXOSX__
267                 m->Append (edit, _("&Edit"));
268 #endif
269                 m->Append (help, _("&Help"));
270         }
271
272         bool confirm_overwrite (boost::filesystem::path path)
273         {
274                 return confirm_dialog (
275                         this,
276                         wxString::Format (_("File %s already exists.  Do you want to overwrite it?"), std_to_wx(path.string()).data())
277                         );
278         }
279
280         /** @id if not 0 this is filled in with the wxTreeItemId of the selection */
281         shared_ptr<DKDMBase> selected_dkdm (wxTreeItemId* id = 0) const
282         {
283                 wxArrayTreeItemIds selections;
284                 _dkdm->GetSelections (selections);
285                 if (selections.GetCount() != 1) {
286                         if (id) {
287                                 *id = 0;
288                         }
289                         return shared_ptr<DKDMBase> ();
290                 }
291
292                 if (id) {
293                         *id = selections[0];
294                 }
295
296                 auto i = _dkdm_id.find (selections[0]);
297                 if (i == _dkdm_id.end()) {
298                         return shared_ptr<DKDMBase> ();
299                 }
300
301                 return i->second;
302         }
303
304         void create_kdms ()
305         {
306                 try {
307                         auto dkdm_base = selected_dkdm ();
308                         if (!dkdm_base) {
309                                 return;
310                         }
311
312                         list<KDMWithMetadataPtr> kdms;
313                         string title;
314
315                         auto dkdm = std::dynamic_pointer_cast<DKDM>(dkdm_base);
316                         if (dkdm) {
317
318                                 /* Decrypt the DKDM */
319                                 dcp::DecryptedKDM decrypted (dkdm->dkdm(), Config::instance()->decryption_chain()->key().get());
320                                 title = decrypted.content_title_text ();
321
322                                 /* This is the signer for our new KDMs */
323                                 auto signer = Config::instance()->signer_chain ();
324                                 if (!signer->valid ()) {
325                                         throw InvalidSignerError ();
326                                 }
327
328                                 for (auto i: _screens->screens()) {
329
330                                         if (!i->recipient) {
331                                                 continue;
332                                         }
333
334                                         dcp::LocalTime begin(_timing->from(), i->cinema->utc_offset_hour(), i->cinema->utc_offset_minute());
335                                         dcp::LocalTime end(_timing->until(), i->cinema->utc_offset_hour(), i->cinema->utc_offset_minute());
336
337                                         /* Make an empty KDM */
338                                         dcp::DecryptedKDM kdm (
339                                                 begin,
340                                                 end,
341                                                 decrypted.annotation_text().get_value_or (""),
342                                                 decrypted.content_title_text(),
343                                                 dcp::LocalTime().as_string()
344                                                 );
345
346                                         /* Add keys from the DKDM */
347                                         for (auto const& j: decrypted.keys()) {
348                                                 kdm.add_key (j);
349                                         }
350
351                                         auto const encrypted = kdm.encrypt(
352                                                         signer, i->recipient.get(), i->trusted_device_thumbprints(), _output->formulation(),
353                                                         !_output->forensic_mark_video(), _output->forensic_mark_audio() ? boost::optional<int>() : 0
354                                                         );
355
356                                         dcp::NameFormat::Map name_values;
357                                         name_values['c'] = i->cinema->name;
358                                         name_values['s'] = i->name;
359                                         name_values['f'] = title;
360                                         name_values['b'] = begin.date() + " " + begin.time_of_day(true, false);
361                                         name_values['e'] = end.date() + " " + end.time_of_day(true, false);
362                                         name_values['i'] = encrypted.cpl_id ();
363
364                                         /* Encrypt */
365                                         kdms.push_back (make_shared<KDMWithMetadata>(name_values, i->cinema.get(), i->cinema->emails, encrypted));
366                                 }
367                         }
368
369                         if (kdms.empty()) {
370                                 return;
371                         }
372
373                         auto result = _output->make (
374                                 kdms, title, bind (&DOMFrame::confirm_overwrite, this, _1)
375                                 );
376
377                         if (result.first) {
378                                 JobManager::instance()->add (result.first);
379                                 if (_job_view) {
380                                         _job_view->Destroy ();
381                                         _job_view = 0;
382                                 }
383                                 _job_view = new JobViewDialog (this, _("Send KDM emails"), result.first);
384                                 _job_view->ShowModal ();
385                         }
386
387                         if (result.second > 0) {
388                                 /* XXX: proper plural form support in wxWidgets? */
389                                 wxString s = result.second == 1 ? _("%d KDM written to %s") : _("%d KDMs written to %s");
390                                 message_dialog (
391                                         this,
392                                         wxString::Format (s, result.second, std_to_wx(_output->directory().string()).data())
393                                         );
394                         }
395                 } catch (dcp::NotEncryptedError& e) {
396                         error_dialog (this, _("CPL's content is not encrypted."));
397                 } catch (exception& e) {
398                         error_dialog (this, std_to_wx(e.what()));
399                 } catch (...) {
400                         error_dialog (this, _("An unknown exception occurred."));
401                 }
402         }
403
404         void setup_sensitivity ()
405         {
406                 _screens->setup_sensitivity ();
407                 _output->setup_sensitivity ();
408                 wxArrayTreeItemIds sel;
409                 _dkdm->GetSelections (sel);
410                 auto group = dynamic_pointer_cast<DKDMGroup>(selected_dkdm());
411                 auto dkdm = dynamic_pointer_cast<DKDM>(selected_dkdm());
412                 _create->Enable (!_screens->screens().empty() && sel.GetCount() > 0 && dkdm);
413                 _remove_dkdm->Enable (sel.GetCount() > 0 && (!group || group->name() != "root"));
414                 _export_dkdm->Enable (sel.GetCount() > 0 && dkdm);
415         }
416
417         void dkdm_begin_drag (wxTreeEvent& ev)
418         {
419                 ev.Allow ();
420         }
421
422         void dkdm_end_drag (wxTreeEvent& ev)
423         {
424                 auto from = _dkdm_id.find (_dkdm->GetSelection ());
425                 auto to = _dkdm_id.find (ev.GetItem ());
426                 if (from == _dkdm_id.end() || to == _dkdm_id.end() || from->first == to->first) {
427                         return;
428                 }
429
430                 auto group = dynamic_pointer_cast<DKDMGroup> (to->second);
431                 if (!group) {
432                         group = to->second->parent();
433                 }
434
435                 DCPOMATIC_ASSERT (group);
436                 DCPOMATIC_ASSERT (from->second->parent ());
437
438                 from->second->parent()->remove (from->second);
439                 add_dkdm_model (from->second, group, dynamic_pointer_cast<DKDM>(to->second));
440
441                 _dkdm->Delete (from->first);
442                 _dkdm_id.erase (from->first);
443                 add_dkdm_view (from->second, dynamic_pointer_cast<DKDM>(to->second) ? to->first : optional<wxTreeItemId>());
444         }
445
446         void add_dkdm_clicked ()
447         {
448                 auto d = new wxFileDialog (this, _("Select DKDM file"));
449                 if (d->ShowModal() == wxID_OK) {
450                         auto chain = Config::instance()->decryption_chain();
451                         DCPOMATIC_ASSERT (chain->key());
452
453                         try {
454                                 dcp::EncryptedKDM ekdm(dcp::file_to_string (wx_to_std (d->GetPath ()), MAX_KDM_SIZE));
455                                 /* Decrypt the DKDM to make sure that we can */
456                                 dcp::DecryptedKDM dkdm(ekdm, chain->key().get());
457
458                                 auto new_dkdm = make_shared<DKDM>(ekdm);
459                                 auto group = dynamic_pointer_cast<DKDMGroup> (selected_dkdm());
460                                 if (!group) {
461                                         group = Config::instance()->dkdms ();
462                                 }
463                                 add_dkdm_model (new_dkdm, group);
464                                 add_dkdm_view (new_dkdm);
465                         } catch (dcp::KDMFormatError& e) {
466                                 error_dialog (
467                                         this,
468                                         _("Could not read file as a KDM.  Perhaps it is badly formatted, or not a KDM at all."),
469                                         std_to_wx(e.what())
470                                         );
471                                 return;
472                         } catch (dcp::KDMDecryptionError &) {
473                                 error_dialog (
474                                         this,
475                                         _("Could not decrypt the DKDM.  Perhaps it was not created with the correct certificate.")
476                                         );
477                         } catch (dcp::MiscError& e) {
478                                 error_dialog (
479                                         this,
480                                         _("Could not read file as a KDM.  It is much too large.  Make sure you are loading a DKDM (XML) file."),
481                                         std_to_wx(e.what())
482                                         );
483                         }
484                 }
485                 d->Destroy ();
486         }
487
488         void add_dkdm_folder_clicked ()
489         {
490                 auto d = new NewDKDMFolderDialog (this);
491                 if (d->ShowModal() == wxID_OK) {
492                         auto new_dkdm = make_shared<DKDMGroup>(wx_to_std(d->get()));
493                         auto parent = dynamic_pointer_cast<DKDMGroup>(selected_dkdm());
494                         if (!parent) {
495                                 parent = Config::instance()->dkdms ();
496                         }
497                         add_dkdm_model (new_dkdm, parent);
498                         add_dkdm_view (new_dkdm);
499                 }
500                 d->Destroy ();
501         }
502
503         /** @param dkdm Thing to add.
504          *  @param parent Parent group, or 0.
505          */
506         void add_dkdm_view (shared_ptr<DKDMBase> base, optional<wxTreeItemId> previous = optional<wxTreeItemId>())
507         {
508                 if (!base->parent()) {
509                         /* This is the root group */
510                         _dkdm_id[_dkdm->AddRoot("root")] = base;
511                 } else {
512                         /* Add base to the view */
513                         wxTreeItemId added;
514                         if (previous) {
515                                 added = _dkdm->InsertItem(dkdm_to_id(base->parent()), *previous, std_to_wx(base->name()));
516                         } else {
517                                 added = _dkdm->AppendItem(dkdm_to_id(base->parent()), std_to_wx(base->name()));
518                         }
519                         _dkdm_id[added] = base;
520                 }
521
522                 /* Add children */
523                 auto g = dynamic_pointer_cast<DKDMGroup>(base);
524                 if (g) {
525                         for (auto i: g->children()) {
526                                 add_dkdm_view (i);
527                         }
528                 }
529         }
530
531         /** @param group Group to add dkdm to */
532         void add_dkdm_model (shared_ptr<DKDMBase> dkdm, shared_ptr<DKDMGroup> group, shared_ptr<DKDM> previous = shared_ptr<DKDM> ())
533         {
534                 group->add (dkdm, previous);
535                 /* We're messing with a Config-owned object here, so tell it that something has changed.
536                    This isn't nice.
537                 */
538                 Config::instance()->changed ();
539         }
540
541         wxTreeItemId dkdm_to_id (shared_ptr<DKDMBase> dkdm)
542         {
543                 for (auto const& i: _dkdm_id) {
544                         if (i.second == dkdm) {
545                                 return i.first;
546                         }
547                 }
548                 DCPOMATIC_ASSERT (false);
549         }
550
551         void remove_dkdm_clicked ()
552         {
553                 auto removed = selected_dkdm ();
554                 if (!removed) {
555                         return;
556                 }
557
558                 if (NagDialog::maybe_nag (
559                             this, Config::NAG_DELETE_DKDM,
560                             _("You are about to remove a DKDM.  This will make it impossible to decrypt the DCP that the DKDM was made for, and it cannot be undone.  "
561                               "Are you sure?"),
562                             true)) {
563                         return;
564                 }
565
566                 _dkdm->Delete (dkdm_to_id (removed));
567                 auto dkdms = Config::instance()->dkdms ();
568                 dkdms->remove (removed);
569                 Config::instance()->changed ();
570         }
571
572         void export_dkdm_clicked ()
573         {
574                 auto removed = selected_dkdm ();
575                 if (!removed) {
576                         return;
577                 }
578
579                 auto dkdm = dynamic_pointer_cast<DKDM>(removed);
580                 if (!dkdm) {
581                         return;
582                 }
583
584                 auto d = new wxFileDialog (
585                         this, _("Select DKDM File"), wxEmptyString, wxEmptyString, wxT("XML files (*.xml)|*.xml"),
586                         wxFD_SAVE | wxFD_OVERWRITE_PROMPT
587                         );
588
589                 if (d->ShowModal() == wxID_OK) {
590                         dkdm->dkdm().as_xml(wx_to_std(d->GetPath()));
591                 }
592                 d->Destroy ();
593         }
594
595         wxPreferencesEditor* _config_dialog;
596         ScreensPanel* _screens;
597         KDMTimingPanel* _timing;
598         wxTreeCtrl* _dkdm;
599         typedef std::map<wxTreeItemId, std::shared_ptr<DKDMBase>> DKDMMap;
600         DKDMMap _dkdm_id;
601         wxButton* _add_dkdm;
602         wxButton* _add_dkdm_folder;
603         wxButton* _remove_dkdm;
604         wxButton* _export_dkdm;
605         wxButton* _create;
606         KDMOutputPanel* _output;
607         JobViewDialog* _job_view;
608 };
609
610
611 /** @class App
612  *  @brief The magic App class for wxWidgets.
613  */
614 class App : public wxApp
615 {
616 public:
617         App ()
618                 : wxApp ()
619                 , _frame (nullptr)
620         {}
621
622 private:
623
624         bool OnInit ()
625         {
626                 wxSplashScreen* splash = nullptr;
627
628                 try {
629                         wxInitAllImageHandlers ();
630
631                         Config::FailedToLoad.connect (boost::bind (&App::config_failed_to_load, this));
632                         Config::Warning.connect (boost::bind (&App::config_warning, this, _1));
633
634                         splash = maybe_show_splash ();
635
636                         SetAppName (_("DCP-o-matic KDM Creator"));
637
638                         if (!wxApp::OnInit()) {
639                                 return false;
640                         }
641
642 #ifdef DCPOMATIC_LINUX
643                         unsetenv ("UBUNTU_MENUPROXY");
644 #endif
645
646 #ifdef DCPOMATIC_OSX
647                         make_foreground_application ();
648 #endif
649
650                         dcpomatic_setup_path_encoding ();
651
652                         /* Enable i18n; this will create a Config object
653                            to look for a force-configured language.  This Config
654                            object will be wrong, however, because dcpomatic_setup
655                            hasn't yet been called and there aren't any filters etc.
656                            set up yet.
657                         */
658                         dcpomatic_setup_i18n ();
659
660                         /* Set things up, including filters etc.
661                            which will now be internationalised correctly.
662                         */
663                         dcpomatic_setup ();
664
665                         /* Force the configuration to be re-loaded correctly next
666                            time it is needed.
667                         */
668                         Config::drop ();
669
670                         _frame = new DOMFrame (_("DCP-o-matic KDM Creator"));
671                         SetTopWindow (_frame);
672                         _frame->Maximize ();
673                         if (splash) {
674                                 splash->Destroy ();
675                                 splash = nullptr;
676                         }
677                         _frame->Show ();
678
679                         signal_manager = new wxSignalManager (this);
680                         Bind (wxEVT_IDLE, boost::bind (&App::idle, this));
681                 }
682                 catch (exception& e)
683                 {
684                         if (splash) {
685                                 splash->Destroy ();
686                         }
687                         error_dialog (0, _("DCP-o-matic could not start"), std_to_wx(e.what()));
688                 }
689
690                 return true;
691         }
692
693         /* An unhandled exception has occurred inside the main event loop */
694         bool OnExceptionInMainLoop ()
695         {
696                 try {
697                         throw;
698                 } catch (FileError& e) {
699                         error_dialog (
700                                 0,
701                                 wxString::Format (
702                                         _("An exception occurred: %s (%s)\n\n") + REPORT_PROBLEM,
703                                         std_to_wx (e.what()),
704                                         std_to_wx (e.file().string().c_str ())
705                                         )
706                                 );
707                 } catch (exception& e) {
708                         error_dialog (
709                                 nullptr,
710                                 wxString::Format (
711                                         _("An exception occurred: %s.\n\n") + " " + REPORT_PROBLEM,
712                                         std_to_wx(e.what())
713                                         )
714                                 );
715                 } catch (...) {
716                         error_dialog (0, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
717                 }
718
719                 /* This will terminate the program */
720                 return false;
721         }
722
723         void OnUnhandledException ()
724         {
725                 error_dialog (nullptr, _("An unknown exception occurred.") + "  " + REPORT_PROBLEM);
726         }
727
728         void idle ()
729         {
730                 signal_manager->ui_idle ();
731         }
732
733         void config_failed_to_load ()
734         {
735                 message_dialog (_frame, _("The existing configuration failed to load.  Default values will be used instead.  These may take a short time to create."));
736         }
737
738         void config_warning (string m)
739         {
740                 message_dialog (_frame, std_to_wx(m));
741         }
742
743         DOMFrame* _frame;
744 };
745
746 IMPLEMENT_APP (App)