summaryrefslogtreecommitdiff
path: root/src/wx/subtitle_appearance_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-01-13 01:00:08 +0000
committerCarl Hetherington <cth@carlh.net>2018-01-13 01:00:08 +0000
commitd54c8291f83bd9f2cf964ca0372f74734ccb0ae2 (patch)
treec7a0b929c444476a6cc430dfb29193cbe181a9be /src/wx/subtitle_appearance_dialog.h
parent9b1c6dd87c2a1b0b480a23da756d22c3bfedd9f1 (diff)
Forcing for fade in/out.
Diffstat (limited to 'src/wx/subtitle_appearance_dialog.h')
-rw-r--r--src/wx/subtitle_appearance_dialog.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wx/subtitle_appearance_dialog.h b/src/wx/subtitle_appearance_dialog.h
index 7a23b8199..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,6 +43,7 @@ public:
private:
void setup_sensitivity ();
void restore ();
+ wxCheckBox* set_to (wxWindow* w, int& r);
wxCheckBox* _force_colour;
wxColourPickerCtrl* _colour;
@@ -48,7 +51,9 @@ private:
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;