Make show audio work on the whole DCP, not individual content.
[dcpomatic.git] / src / wx / dcp_panel.h
index 96786d8a1d93ef912881498e796fc2654b4c2501..3179ad73ae26ec3be20922b491a3edf6661340cf 100644 (file)
@@ -31,6 +31,8 @@ class wxButton;
 class wxSpinCtrl;
 class wxSizer;
 
+class AudioDialog;
+
 class Film;
 
 class DCPPanel : public boost::noncopyable
@@ -68,7 +70,9 @@ private:
        void burn_subtitles_toggled ();
        void encrypted_toggled ();
        void edit_key_clicked ();
-
+       void audio_processor_changed ();
+       void show_audio_clicked ();
+       
        void setup_frame_rate_widget ();
        void setup_container ();
        void setup_dcp_name ();
@@ -87,6 +91,7 @@ private:
        wxStaticText* _dcp_name;
        wxCheckBox* _use_isdcf_name;
        wxChoice* _container;
+       wxStaticText* _container_size;
        wxButton* _edit_isdcf_button;
        wxButton* _copy_isdcf_name_button;
        wxSpinCtrl* _j2k_bandwidth;
@@ -95,6 +100,8 @@ private:
        wxSpinCtrl* _frame_rate_spin;
        wxSizer* _frame_rate_sizer;
        wxChoice* _audio_channels;
+       wxChoice* _audio_processor;
+       wxButton* _show_audio;
        wxButton* _best_frame_rate;
        wxCheckBox* _three_d;
        wxChoice* _resolution;
@@ -105,6 +112,8 @@ private:
        wxStaticText* _key;
        wxButton* _edit_key;
 
+       AudioDialog* _audio_dialog;
+
        boost::shared_ptr<Film> _film;
        bool _generally_sensitive;
 };