Qt/Settings: Implement audio pane

This commit is contained in:
spycrab
2017-06-21 10:27:21 +02:00
parent 15243093c4
commit ba3df3db05
7 changed files with 327 additions and 0 deletions

View File

@ -121,6 +121,11 @@ void MainWindow::CreateComponents()
m_settings_window = new SettingsWindow(this);
m_hotkey_window = new MappingWindow(this, 0);
connect(this, &MainWindow::EmulationStarted, m_settings_window,
&SettingsWindow::EmulationStarted);
connect(this, &MainWindow::EmulationStopped, m_settings_window,
&SettingsWindow::EmulationStopped);
InstallHotkeyFilter(m_hotkey_window);
InstallHotkeyFilter(m_controllers_window);
InstallHotkeyFilter(m_settings_window);