summaryrefslogtreecommitdiff
path: root/src/wx/paste_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-01-05 23:17:16 +0000
committerCarl Hetherington <cth@carlh.net>2018-01-05 23:17:16 +0000
commitd26296467bbf6bd1b2300dd862ce55fcd7f3d624 (patch)
tree125284d4686aa58710ce841a77da9b0f762af857 /src/wx/paste_dialog.h
parent249ae25148213a2ab5d76980133182e7f2521524 (diff)
Add simple copy and paste for content settings (#1051).
Diffstat (limited to 'src/wx/paste_dialog.h')
-rw-r--r--src/wx/paste_dialog.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/wx/paste_dialog.h b/src/wx/paste_dialog.h
new file mode 100644
index 000000000..204f421d8
--- /dev/null
+++ b/src/wx/paste_dialog.h
@@ -0,0 +1,36 @@
+/*
+ Copyright (C) 2018 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 "table_dialog.h"
+
+class PasteDialog : public TableDialog
+{
+public:
+ PasteDialog (wxWindow* parent, bool video, bool audio, bool subtitle);
+
+ bool video () const;
+ bool audio () const;
+ bool subtitle () const;
+
+private:
+ wxCheckBox* _video;
+ wxCheckBox* _audio;
+ wxCheckBox* _subtitle;
+};