Tidying.
[dcpomatic.git] / src / wx / audio_panel.h
index 66667e1ad8a318b84b8c121493d1fe340335b787..2faec25df68f5e33fd09cf8bfe084a1dd8c46f09 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2012-2022 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "lib/audio_mapping.h"
 #include "content_sub_panel.h"
 #include "content_widget.h"
+#include "timecode.h"
+
 
 class wxSpinCtrlDouble;
 class wxButton;
@@ -28,6 +31,8 @@ class wxChoice;
 class wxStaticText;
 class AudioMappingView;
 class AudioDialog;
+class LanguageTagWidget;
+
 
 class AudioPanel : public ContentSubPanel
 {
@@ -35,10 +40,11 @@ public:
        explicit AudioPanel (ContentPanel *);
        ~AudioPanel ();
 
-       void film_changed (Film::Property);
-       void film_content_changed (int);
-       void content_selection_changed ();
-       void set_film (boost::shared_ptr<Film>);
+       void create () override;
+       void film_changed (Film::Property) override;
+       void film_content_changed (int) override;
+       void content_selection_changed () override;
+       void set_film (std::shared_ptr<Film>);
 
 private:
        void show_clicked ();
@@ -49,17 +55,30 @@ private:
        void active_jobs_changed (boost::optional<std::string>, boost::optional<std::string>);
        void setup_sensitivity ();
        void reference_clicked ();
+       void add_to_grid () override;
+       boost::optional<float> peak () const;
+       void fade_in_changed ();
+       void fade_out_changed ();
 
        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;
+       wxStaticText* _fade_in_label;
+       Timecode<dcpomatic::ContentTime>* _fade_in;
+       wxStaticText* _fade_out_label;
+       Timecode<dcpomatic::ContentTime>* _fade_out;
        AudioMappingView* _mapping;
        wxStaticText* _description;
-       AudioDialog* _audio_dialog;
+       AudioDialog* _audio_dialog = nullptr;
 
        boost::signals2::scoped_connection _mapping_connection;
+       boost::signals2::scoped_connection _active_jobs_connection;
 };