summaryrefslogtreecommitdiff
path: root/src/wx/film_editor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/film_editor.h')
-rw-r--r--src/wx/film_editor.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/wx/film_editor.h b/src/wx/film_editor.h
index c599cd285..2a3be6d0c 100644
--- a/src/wx/film_editor.h
+++ b/src/wx/film_editor.h
@@ -24,6 +24,7 @@
#include <wx/wx.h>
#include <wx/spinctrl.h>
#include <wx/filepicker.h>
+#include <wx/collpane.h>
#include "lib/trim_action.h"
#include "lib/film.h"
@@ -58,6 +59,9 @@ private:
void audio_gain_changed (wxCommandEvent &);
void audio_gain_calculate_button_clicked (wxCommandEvent &);
void audio_delay_changed (wxCommandEvent &);
+ void with_subtitles_toggled (wxCommandEvent &);
+ void subtitle_offset_changed (wxCommandEvent &);
+ void subtitle_scale_changed (wxCommandEvent &);
void still_duration_changed (wxCommandEvent &);
/* Handle changes to the model */
@@ -69,6 +73,7 @@ private:
void set_things_sensitive (bool);
void setup_formats ();
+ void setup_subtitle_button ();
wxControl* video_control (wxControl *);
wxControl* still_control (wxControl *);
@@ -79,6 +84,8 @@ private:
Film* _film;
/** The Film's name */
wxTextCtrl* _name;
+ wxCheckBox* _use_dci_name;
+ wxButton* _edit_dci_button;
/** The Film's format */
wxComboBox* _format;
/** The Film's content file */
@@ -103,6 +110,9 @@ private:
wxButton* _audio_gain_calculate_button;
/** The Film's audio delay */
wxSpinCtrl* _audio_delay;
+ wxCheckBox* _with_subtitles;
+ wxSpinCtrl* _subtitle_offset;
+ wxSpinCtrl* _subtitle_scale;
/** The Film's DCP content type */
wxComboBox* _dcp_content_type;
/** The Film's frames per second */