Work around deadlock when destroying J2KEncoder with a full writer queue (#2784).
[dcpomatic.git] / src / wx / audio_panel.h
index f7161f10a8af39c9fb5729d7668f6b5f6c50d957..61dd2783ac8cd54d4ad5e20f8a884490ca7c3ffd 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"
+#include "lib/audio_mapping.h"
 
-class wxSpinCtrlDouble;
+
+class AudioDialog;
+class AudioMappingView;
+class CheckBox;
+class LanguageTagWidget;
 class wxButton;
 class wxChoice;
+class wxSpinCtrlDouble;
 class wxStaticText;
-class AudioMappingView;
-class AudioDialog;
+
 
 class AudioPanel : public ContentSubPanel
 {
 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(FilmProperty) override;
+       void film_content_changed (int) override;
+       void content_selection_changed () override;
+       void set_film (std::shared_ptr<Film>);
 
 private:
        void show_clicked ();
@@ -49,10 +55,13 @@ private:
        void active_jobs_changed (boost::optional<std::string>, boost::optional<std::string>);
        void setup_sensitivity ();
        void reference_clicked ();
-       void add_to_grid ();
+       void add_to_grid () override;
        boost::optional<float> peak () const;
+       void fade_in_changed ();
+       void fade_out_changed ();
+       void use_same_fades_as_video_changed ();
 
-       wxCheckBox* _reference;
+       CheckBox* _reference;
        wxStaticText* _reference_note;
        wxButton* _show;
        wxStaticText* _gain_label;
@@ -63,10 +72,17 @@ private:
        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;
+       CheckBox* _use_same_fades_as_video;
        AudioMappingView* _mapping;
        wxStaticText* _description;
-       AudioDialog* _audio_dialog;
+       wx_ptr<AudioDialog> _audio_dialog;
 
        boost::signals2::scoped_connection _mapping_connection;
        boost::signals2::scoped_connection _active_jobs_connection;
+
+       static std::map<boost::filesystem::path, float> _peak_cache;
 };