Emit no audio from DCPs if none is mapped
[dcpomatic.git] / src / wx / paste_dialog.h
index 204f421d80d4dbad700e9fec3c32a4a846f1cdfe..0be0f34b8e10918ccac9b1166010a6577fb5b1b6 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2018-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "table_dialog.h"
 
+
+class CheckBox;
+
+
 class PasteDialog : public TableDialog
 {
 public:
-       PasteDialog (wxWindow* parent, bool video, bool audio, bool subtitle);
+       PasteDialog (wxWindow* parent, bool video, bool audio, bool text);
 
        bool video () const;
        bool audio () const;
-       bool subtitle () const;
+       bool text () const;
 
 private:
-       wxCheckBox* _video;
-       wxCheckBox* _audio;
-       wxCheckBox* _subtitle;
+       CheckBox* _video;
+       CheckBox* _audio;
+       CheckBox* _text;
 };