Add an output audio matrix (#1482).
[dcpomatic.git] / src / wx / config_dialog.h
index 1a9d97a436f0eee010a34ddac1941c596f108b62..565ecf1c4f738c026aa0901a1bee0256335b5885 100644 (file)
@@ -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