Fix resizing/redraw problems on Windows.
[dcpomatic.git] / src / wx / film_editor.h
index bd0300aed6c5e9efd7fde7a35729b2008039ab58..e2a4d583641eb9ae23ea5d76afc0262b602be20e 100644 (file)
@@ -29,8 +29,8 @@
 #include "lib/film.h"
 
 class wxNotebook;
-
 class Film;
+class AudioDialog;
 
 /** @class FilmEditor
  *  @brief A wx widget to edit a film's metadata, and perform various functions.
@@ -65,6 +65,7 @@ private:
        void format_changed (wxCommandEvent &);
        void trim_start_changed (wxCommandEvent &);
        void trim_end_changed (wxCommandEvent &);
+       void trim_type_changed (wxCommandEvent &);
        void dcp_content_type_changed (wxCommandEvent &);
        void dcp_ab_toggled (wxCommandEvent &);
        void scaler_changed (wxCommandEvent &);
@@ -82,6 +83,8 @@ private:
        void subtitle_stream_changed (wxCommandEvent &);
        void use_audio_changed (wxCommandEvent &);
        void external_audio_changed (wxCommandEvent &);
+       void dcp_frame_rate_changed (wxCommandEvent &);
+       void best_dcp_frame_rate_clicked (wxCommandEvent &);
 
        /* Handle changes to the model */
        void film_changed (Film::Property);
@@ -96,6 +99,10 @@ private:
        void setup_streams ();
        void setup_audio_details ();
        void setup_dcp_name ();
+       void setup_show_audio_sensitivity ();
+       void setup_scaling_description ();
+       void setup_notebook_size ();
+       void setup_frame_rate_description ();
        
        wxControl* video_control (wxControl *);
        wxControl* still_control (wxControl *);
@@ -121,6 +128,7 @@ private:
        wxButton* _edit_dci_button;
        /** The Film's format */
        wxChoice* _format;
+       wxStaticText* _scaling_description;
        /** The Film's content file */
        wxFilePickerCtrl* _content;
        wxCheckBox* _trust_content_header;
@@ -157,10 +165,11 @@ private:
        wxSpinCtrl* _j2k_bandwidth;
        /** The Film's DCP content type */
        wxChoice* _dcp_content_type;
-       /** The Film's frames per second */
-       wxStaticText* _frames_per_second;
-       /** The Film's original size */
-       wxStaticText* _original_size;
+       /** The Film's source frame rate */
+       wxStaticText* _source_frame_rate;
+       wxChoice* _dcp_frame_rate;
+       wxButton* _best_dcp_frame_rate;
+       wxStaticText* _frame_rate_description;
        /** The Film's length */
        wxStaticText* _length;
        /** The Film's audio details */
@@ -170,6 +179,7 @@ private:
 
        wxSpinCtrl* _trim_start;
        wxSpinCtrl* _trim_end;
+       wxChoice* _trim_type;
        /** Selector to generate an A/B comparison DCP */
        wxCheckBox* _dcp_ab;
 
@@ -179,4 +189,5 @@ private:
        std::vector<Format const *> _formats;
 
        bool _generally_sensitive;
+       AudioDialog* _audio_dialog;
 };