diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-24 00:37:31 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-04-24 00:37:31 +0200 |
| commit | 6b0a17aa9e87e914666e696b251555b934cfb811 (patch) | |
| tree | a363c6110827777659942fb30ca3197499de2bc1 /src/wx/disk_warning_dialog.h | |
| parent | f83e23c59f4684fae3453e13bcc569ee94aa2a9e (diff) | |
Add pre-running warning to disk writer.
Diffstat (limited to 'src/wx/disk_warning_dialog.h')
| -rw-r--r-- | src/wx/disk_warning_dialog.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/wx/disk_warning_dialog.h b/src/wx/disk_warning_dialog.h new file mode 100644 index 000000000..869092faa --- /dev/null +++ b/src/wx/disk_warning_dialog.h @@ -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; +}; |
