Add pre-running warning to disk writer.
authorCarl Hetherington <cth@carlh.net>
Thu, 23 Apr 2020 22:37:31 +0000 (00:37 +0200)
committerCarl Hetherington <cth@carlh.net>
Thu, 23 Apr 2020 22:37:31 +0000 (00:37 +0200)
src/tools/dcpomatic_disk.cc
src/wx/disk_warning_dialog.cc [new file with mode: 0644]
src/wx/disk_warning_dialog.h [new file with mode: 0644]
src/wx/wscript

index bf4d45e2040461b6770fb8c54139ee4021240da2..1d8fac83a1c78834af27c94243bf93f69726183f 100644 (file)
@@ -24,6 +24,7 @@
 #include "wx/drive_wipe_warning_dialog.h"
 #include "wx/try_unmount_dialog.h"
 #include "wx/message_dialog.h"
+#include "wx/disk_warning_dialog.h"
 #include "lib/file_log.h"
 #include "lib/dcpomatic_log.h"
 #include "lib/util.h"
@@ -300,6 +301,12 @@ public:
                        */
                        Config::drop ();
 
+                       DiskWarningDialog* warning = new DiskWarningDialog ();
+                       warning->ShowModal ();
+                       if (!warning->confirmed()) {
+                               return false;
+                       }
+
                        _frame = new DOMFrame (_("DCP-o-matic Disk Writer"));
                        SetTopWindow (_frame);
 
@@ -311,6 +318,7 @@ public:
                catch (exception& e)
                {
                        error_dialog (0, wxString::Format ("DCP-o-matic could not start."), std_to_wx(e.what()));
+                       return false;
                }
 
                return true;
diff --git a/src/wx/disk_warning_dialog.cc b/src/wx/disk_warning_dialog.cc
new file mode 100644 (file)
index 0000000..46483f4
--- /dev/null
@@ -0,0 +1,55 @@
+/*
+    Copyright (C) 2020 Carl Hetherington <cth@carlh.net>
+
+    This file is part of DCP-o-matic.
+
+    DCP-o-matic is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    DCP-o-matic is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+#include "disk_warning_dialog.h"
+#include "static_text.h"
+#include "wx_util.h"
+
+DiskWarningDialog::DiskWarningDialog ()
+       : wxDialog (0, wxID_ANY, _("Important notice"))
+{
+       wxBoxSizer* sizer = new wxBoxSizer (wxVERTICAL);
+       wxStaticText* text = new StaticText (this, wxEmptyString, wxDefaultPosition, wxSize(400, 300));
+       sizer->Add (text, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
+       _yes = new wxTextCtrl (this, wxID_ANY);
+       sizer->Add (_yes, 0, wxALL, DCPOMATIC_DIALOG_BORDER);
+
+       wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
+       if (buttons) {
+               sizer->Add(buttons, wxSizerFlags().Expand().DoubleBorder());
+       }
+
+       SetSizer (sizer);
+       sizer->Layout ();
+       sizer->SetSizeHints (this);
+
+       text->SetLabelMarkup (
+               _("The <b>DCP-o-matic Disk Writer</b> is\n\n<span weight=\"bold\" size=\"20480\" foreground=\"red\">ALPHA-GRADE TEST SOFTWARE</span>\n\n"
+                 "and can\n\n<span weight=\"bold\" size=\"20480\" foreground=\"red\">DESTROY DATA!</span>\n\n"
+                 "Please do not continue unless Carl has asked you to test the software. "
+                 "If you are sure you want to continue please type\n\n<tt>I am sure</tt>\n\ninto the box below, then click OK.")
+               );
+}
+
+bool
+DiskWarningDialog::confirmed () const
+{
+       return _yes->GetValue() == "I am sure";
+}
diff --git a/src/wx/disk_warning_dialog.h b/src/wx/disk_warning_dialog.h
new file mode 100644 (file)
index 0000000..869092f
--- /dev/null
@@ -0,0 +1,32 @@
+/*
+    Copyright (C) 2020 Carl Hetherington <cth@carlh.net>
+
+    This file is part of DCP-o-matic.
+
+    DCP-o-matic is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    DCP-o-matic is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+#include <wx/wx.h>
+
+class DiskWarningDialog : public wxDialog
+{
+public:
+       DiskWarningDialog ();
+
+       bool confirmed () const;
+
+private:
+       wxTextCtrl* _yes;
+};
index 6a9003ef1776d4ddf73588d85d6b871c7f14718a..f78a8c61762ba71fda5a59ebf19c63b2b42ad698 100644 (file)
@@ -51,6 +51,7 @@ sources = """
           credentials_download_certificate_panel.cc
           dcp_panel.cc
           dcpomatic_button.cc
+          disk_warning_dialog.cc
           drive_wipe_warning_dialog.cc
           email_dialog.cc
           image_sequence_dialog.cc