Add option to set project properties from a DCP loaded as content (#1688).
[dcpomatic.git] / src / wx / audio_panel.h
index 66667e1ad8a318b84b8c121493d1fe340335b787..f7161f10a8af39c9fb5729d7668f6b5f6c50d957 100644 (file)
@@ -49,17 +49,24 @@ private:
        void active_jobs_changed (boost::optional<std::string>, boost::optional<std::string>);
        void setup_sensitivity ();
        void reference_clicked ();
+       void add_to_grid ();
+       boost::optional<float> peak () const;
 
        wxCheckBox* _reference;
        wxStaticText* _reference_note;
        wxButton* _show;
+       wxStaticText* _gain_label;
+       wxStaticText* _gain_db_label;
        ContentSpinCtrlDouble<AudioContent>* _gain;
        wxButton* _gain_calculate_button;
        wxStaticText* _peak;
+       wxStaticText* _delay_label;
+       wxStaticText* _delay_ms_label;
        ContentSpinCtrl<AudioContent>* _delay;
        AudioMappingView* _mapping;
        wxStaticText* _description;
        AudioDialog* _audio_dialog;
 
        boost::signals2::scoped_connection _mapping_connection;
+       boost::signals2::scoped_connection _active_jobs_connection;
 };