summaryrefslogtreecommitdiff
path: root/src/wx/subtitle_appearance_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-11-02 00:18:56 +0100
committerCarl Hetherington <cth@carlh.net>2022-11-02 01:17:53 +0100
commitb39dbb7cf1b0352cf0eb3af4bf4929556355bff5 (patch)
treee679b163406b863dbbc04c4635393973b33929ec /src/wx/subtitle_appearance_dialog.h
parent9c6d757fc6ff188521719cad9bf2cd494bb4edd8 (diff)
Cleanup: use new CheckBox::bind().
Diffstat (limited to 'src/wx/subtitle_appearance_dialog.h')
-rw-r--r--src/wx/subtitle_appearance_dialog.h24
1 files changed, 12 insertions, 12 deletions
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 <boost/signals2.hpp>
-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<std::string> last);
void add_colours ();
std::weak_ptr<const Film> _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<dcpomatic::ContentTime>* _fade_in;
- wxCheckBox* _force_fade_out;
+ CheckBox* _force_fade_out;
Timecode<dcpomatic::ContentTime>* _fade_out;
wxSpinCtrl* _outline_width;
wxGridBagSizer* _table;