Add FilmViewer::time_until_next_frame.
[dcpomatic.git] / src / wx / text_panel.h
index 349960f8e7ad6d925d06eff9ade2b6fafb2dec93..4a8b8c17bef466cd39f9bd677e3422d55561ff35 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2018 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2019 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -53,21 +53,38 @@ private:
        TextType current_type () const;
        void update_dcp_tracks ();
        void update_dcp_track_selection ();
+       void add_to_grid ();
 
        void setup_sensitivity ();
+       void setup_visibility ();
 
        wxCheckBox* _reference;
        wxStaticText* _reference_note;
        wxCheckBox* _use;
        wxChoice* _type;
        wxCheckBox* _burn;
+       wxStaticText* _offset_label;
+       wxStaticText* _x_offset_label;
+       wxStaticText* _x_offset_pc_label;
+       wxStaticText* _y_offset_label;
+       wxStaticText* _y_offset_pc_label;
        wxSpinCtrl* _x_offset;
        wxSpinCtrl* _y_offset;
+       wxStaticText* _scale_label;
+       wxStaticText* _x_scale_label;
+       wxStaticText* _x_scale_pc_label;
+       wxStaticText* _y_scale_label;
+       wxStaticText* _y_scale_pc_label;
        wxSpinCtrl* _x_scale;
        wxSpinCtrl* _y_scale;
+       wxStaticText* _line_spacing_label;
+       wxStaticText* _line_spacing_pc_label;
        wxSpinCtrl* _line_spacing;
+       wxStaticText* _dcp_track_label;
        wxChoice* _dcp_track;
+       wxStaticText* _language_label;
        wxTextCtrl* _language;
+       wxStaticText* _stream_label;
        wxChoice* _stream;
        wxButton* _text_view_button;
        TextView* _text_view;
@@ -75,4 +92,6 @@ private:
        FontsDialog* _fonts_dialog;
        wxButton* _appearance_dialog_button;
        TextType _original_type;
+
+       int _language_row;
 };