summaryrefslogtreecommitdiff
path: root/src/wx/text_subtitle_appearance_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/text_subtitle_appearance_dialog.h')
-rw-r--r--src/wx/text_subtitle_appearance_dialog.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/wx/text_subtitle_appearance_dialog.h b/src/wx/text_subtitle_appearance_dialog.h
index c67ec8756..55fe51066 100644
--- a/src/wx/text_subtitle_appearance_dialog.h
+++ b/src/wx/text_subtitle_appearance_dialog.h
@@ -19,16 +19,17 @@
*/
#include "table_dialog.h"
+#include "timecode.h"
#include <boost/shared_ptr.hpp>
class wxRadioButton;
class wxColourPickerCtrl;
-class SubtitleContent;
+class Content;
class TextSubtitleAppearanceDialog : public TableDialog
{
public:
- TextSubtitleAppearanceDialog (wxWindow* parent, boost::shared_ptr<SubtitleContent> content);
+ TextSubtitleAppearanceDialog (wxWindow* parent, boost::shared_ptr<Content> content);
void apply ();
@@ -37,6 +38,8 @@ private:
wxRadioButton* _outline;
wxRadioButton* _shadow;
wxColourPickerCtrl* _effect_colour;
+ Timecode<ContentTime>* _fade_in;
+ Timecode<ContentTime>* _fade_out;
- boost::shared_ptr<SubtitleContent> _content;
+ boost::shared_ptr<Content> _content;
};