Qt/Properties: Implement "Gecko codes" tab

This commit is contained in:
spycrab
2017-09-10 19:10:45 +02:00
parent 5aecd61ede
commit f90e81b9db
12 changed files with 302 additions and 7 deletions

View File

@ -279,6 +279,8 @@ void MainWindow::ConnectGameList()
{
connect(m_game_list, &GameList::GameSelected, this, &MainWindow::Play);
connect(m_game_list, &GameList::NetPlayHost, this, &MainWindow::NetPlayHost);
connect(m_game_list, &GameList::OpenGeneralSettings, this, &MainWindow::ShowGeneralWindow);
}
void MainWindow::ConnectRenderWidget()
@ -551,6 +553,12 @@ void MainWindow::ShowAudioWindow()
ShowSettingsWindow();
}
void MainWindow::ShowGeneralWindow()
{
m_settings_window->SelectGeneralPane();
ShowSettingsWindow();
}
void MainWindow::ShowAboutDialog()
{
AboutDialog* about = new AboutDialog(this);