X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fsubtitle_appearance_dialog.h;h=a1a3128fef11ccc495e5f177956e0e4658fce38e;hb=c2e58126cfeab07cd5a4ba02df62b932b8243a8d;hp=8d36d4da83e27bb99f266959bacc0d7fa2b97e85;hpb=10818d95000c291af776ed9ba1c847257ded4b1f;p=dcpomatic.git diff --git a/src/wx/subtitle_appearance_dialog.h b/src/wx/subtitle_appearance_dialog.h index 8d36d4da8..a1a3128fe 100644 --- a/src/wx/subtitle_appearance_dialog.h +++ b/src/wx/subtitle_appearance_dialog.h @@ -30,6 +30,8 @@ class wxGridBagSizer; class Content; class RGBAColourPicker; class FFmpegSubtitleStream; +class wxCheckBox; +class wxWidget; class SubtitleAppearanceDialog : public wxDialog { @@ -41,12 +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* _fade_in; + wxCheckBox* _force_fade_out; Timecode* _fade_out; wxSpinCtrl* _outline_width; wxGridBagSizer* _table;