Rename Server -> EncodeServer, ServerFinder -> EncodeServerFinder, ServerDescription...
[dcpomatic.git] / src / wx / subtitle_panel.h
index ef94adb5468ca959457aa5722e97e6c10ee43f09..e3fd7cd75617e91c29a767cbfab3fd20a7b0a7d9 100644 (file)
@@ -23,6 +23,7 @@ class wxCheckBox;
 class wxSpinCtrl;
 class SubtitleView;
 class FontsDialog;
+class SubtitleAppearanceDialog;
 
 class SubtitlePanel : public ContentSubPanel
 {
@@ -32,9 +33,10 @@ public:
        void film_changed (Film::Property);
        void film_content_changed (int);
        void content_selection_changed ();
-       
+
 private:
        void use_toggled ();
+       void burn_toggled ();
        void x_offset_changed ();
        void y_offset_changed ();
        void x_scale_changed ();
@@ -43,10 +45,14 @@ private:
        void stream_changed ();
        void subtitle_view_clicked ();
        void fonts_dialog_clicked ();
+       void reference_clicked ();
+       void appearance_dialog_clicked ();
 
        void setup_sensitivity ();
-       
+
+       wxCheckBox* _reference;
        wxCheckBox* _use;
+       wxCheckBox* _burn;
        wxSpinCtrl* _x_offset;
        wxSpinCtrl* _y_offset;
        wxSpinCtrl* _x_scale;
@@ -57,4 +63,5 @@ private:
        SubtitleView* _subtitle_view;
        wxButton* _fonts_dialog_button;
        FontsDialog* _fonts_dialog;
+       wxButton* _appearance_dialog_button;
 };