X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fsubtitle_appearance_dialog.h;h=cef264590343dfe97ecd3c294d30b839826e3bd3;hb=62c03e3d3493df8a31361b3281c443cac35decb0;hp=f023b73ae0987b76f46ec8e5e76a2f020fdc04f5;hpb=3c29aa6531a4046a8db72dcac81189eb8893233c;p=dcpomatic.git diff --git a/src/wx/subtitle_appearance_dialog.h b/src/wx/subtitle_appearance_dialog.h index f023b73ae..cef264590 100644 --- a/src/wx/subtitle_appearance_dialog.h +++ b/src/wx/subtitle_appearance_dialog.h @@ -29,16 +29,16 @@ LIBDCP_ENABLE_WARNINGS #include -class wxRadioButton; -class wxColourPickerCtrl; -class wxGridBagSizer; +class CheckBox; class Content; -class RGBAColourPicker; class FFmpegSubtitleStream; -class wxCheckBox; -class wxWidget; class Film; class Job; +class RGBAColourPicker; +class wxColourPickerCtrl; +class wxGridBagSizer; +class wxRadioButton; +class wxWidget; class SubtitleAppearanceDialog : public wxDialog @@ -51,21 +51,21 @@ public: private: void setup_sensitivity (); void restore (); - wxCheckBox* set_to (wxWindow* w, int& r); + CheckBox* set_to (wxWindow* w, int& r); void content_change (ChangeType type); void active_jobs_changed (boost::optional last); void add_colours (); std::weak_ptr _film; - wxCheckBox* _force_colour; + CheckBox* _force_colour; wxColourPickerCtrl* _colour; - wxCheckBox* _force_effect; + CheckBox* _force_effect; wxChoice* _effect; - wxCheckBox* _force_effect_colour; + CheckBox* _force_effect_colour; wxColourPickerCtrl* _effect_colour; - wxCheckBox* _force_fade_in; + CheckBox* _force_fade_in; Timecode* _fade_in; - wxCheckBox* _force_fade_out; + CheckBox* _force_fade_out; Timecode* _fade_out; wxSpinCtrl* _outline_width; wxGridBagSizer* _table;