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/audio_mapping_view.h | |
| parent | 30c9ecad729397574754163d13253c54a2285a6a (diff) | |
Add an output audio matrix (#1482).
Diffstat (limited to 'src/wx/audio_mapping_view.h')
| -rw-r--r-- | src/wx/audio_mapping_view.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wx/audio_mapping_view.h b/src/wx/audio_mapping_view.h index fd8a16d5c..aab6f64a6 100644 --- a/src/wx/audio_mapping_view.h +++ b/src/wx/audio_mapping_view.h @@ -45,7 +45,7 @@ class AudioMappingView : public wxPanel { public: - explicit AudioMappingView (wxWindow *); + explicit AudioMappingView (wxWindow *, wxString left_label, wxString from, wxString top_label, wxString to); void set (AudioMapping); void set_input_channels (std::vector<std::string> const & names); @@ -107,6 +107,11 @@ private: int _menu_input; int _menu_output; + wxString _left_label; + wxString _from; + wxString _top_label; + wxString _to; + std::vector<std::string> _input_channels; std::vector<std::string> _output_channels; std::vector<Group> _input_groups; |
