diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-12-18 01:09:25 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-12-19 22:11:47 +0100 |
| commit | e0b2ef3dbac6fc4900cad6fea4395c212578602b (patch) | |
| tree | 9ff34490552015577080f0d9bbe4d54b87e5d327 /src/wx/config_dialog.h | |
| parent | 30c9ecad729397574754163d13253c54a2285a6a (diff) | |
Add an output audio matrix (#1482).
Diffstat (limited to 'src/wx/config_dialog.h')
| -rw-r--r-- | src/wx/config_dialog.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/wx/config_dialog.h b/src/wx/config_dialog.h index 1a9d97a43..565ecf1c4 100644 --- a/src/wx/config_dialog.h +++ b/src/wx/config_dialog.h @@ -44,6 +44,8 @@ #include <boost/foreach.hpp> #include <iostream> +class AudioMappingView; + class Page { public: @@ -200,12 +202,16 @@ private: void config_changed (); boost::optional<std::string> get_sound_output (); void sound_changed (); - void sound_output_changed (); + void sound_output_changed (); void setup_sensitivity (); + void map_changed (AudioMapping m); + void reset_to_default (); wxCheckBox* _sound; wxChoice* _sound_output; wxStaticText* _sound_output_details; + AudioMappingView* _map; + Button* _reset_to_default; }; #endif |
