summaryrefslogtreecommitdiff
path: root/src/wx/dcp_panel.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-06-03 15:31:21 +0100
committerCarl Hetherington <cth@carlh.net>2015-06-03 15:31:21 +0100
commitf98caf4af896e9be943046b84586da5c2e103f18 (patch)
tree993f719e293667c432c95026dc2bfd53d5b84982 /src/wx/dcp_panel.h
parent92c377d1b9e781fbb4b1f1b7a76ca7dba0bd637f (diff)
Make show audio work on the whole DCP, not individual content.
Diffstat (limited to 'src/wx/dcp_panel.h')
-rw-r--r--src/wx/dcp_panel.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wx/dcp_panel.h b/src/wx/dcp_panel.h
index 3aa97ad53..3179ad73a 100644
--- a/src/wx/dcp_panel.h
+++ b/src/wx/dcp_panel.h
@@ -31,6 +31,8 @@ class wxButton;
class wxSpinCtrl;
class wxSizer;
+class AudioDialog;
+
class Film;
class DCPPanel : public boost::noncopyable
@@ -69,6 +71,7 @@ private:
void encrypted_toggled ();
void edit_key_clicked ();
void audio_processor_changed ();
+ void show_audio_clicked ();
void setup_frame_rate_widget ();
void setup_container ();
@@ -98,6 +101,7 @@ private:
wxSizer* _frame_rate_sizer;
wxChoice* _audio_channels;
wxChoice* _audio_processor;
+ wxButton* _show_audio;
wxButton* _best_frame_rate;
wxCheckBox* _three_d;
wxChoice* _resolution;
@@ -108,6 +112,8 @@ private:
wxStaticText* _key;
wxButton* _edit_key;
+ AudioDialog* _audio_dialog;
+
boost::shared_ptr<Film> _film;
bool _generally_sensitive;
};