Reword again: Text -> Caption and Plain -> Text.
[dcpomatic.git] / src / wx / subtitle_appearance_dialog.h
index 2e007e57ba6a9b3a3ffdfcf91a4b36430fcc55a8..a1a3128fef11ccc495e5f177956e0e4658fce38e 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2015-2017 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2015-2018 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -30,6 +30,8 @@ class wxGridBagSizer;
 class Content;
 class RGBAColourPicker;
 class FFmpegSubtitleStream;
+class wxCheckBox;
+class wxWidget;
 
 class SubtitleAppearanceDialog : public wxDialog
 {
@@ -41,11 +43,17 @@ public:
 private:
        void setup_sensitivity ();
        void restore ();
+       wxCheckBox* set_to (wxWindow* w, int& r);
 
+       wxCheckBox* _force_colour;
        wxColourPickerCtrl* _colour;
+       wxCheckBox* _force_effect;
        wxChoice* _effect;
+       wxCheckBox* _force_effect_colour;
        wxColourPickerCtrl* _effect_colour;
+       wxCheckBox* _force_fade_in;
        Timecode<ContentTime>* _fade_in;
+       wxCheckBox* _force_fade_out;
        Timecode<ContentTime>* _fade_out;
        wxSpinCtrl* _outline_width;
        wxGridBagSizer* _table;