2016-05-09 13:34:07 +00:00
|
|
|
// Copyright 2016 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2017-05-31 23:53:46 +00:00
|
|
|
#include <QDialogButtonBox>
|
2018-03-20 09:12:11 +00:00
|
|
|
#include <QPushButton>
|
2018-04-16 20:55:37 +00:00
|
|
|
#include <QTabWidget>
|
2017-05-31 23:53:46 +00:00
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
2016-05-09 13:34:07 +00:00
|
|
|
#include "DolphinQt2/Config/SettingsWindow.h"
|
2017-06-21 08:27:21 +00:00
|
|
|
#include "DolphinQt2/MainWindow.h"
|
2017-06-05 07:15:15 +00:00
|
|
|
#include "DolphinQt2/Resources.h"
|
2017-05-04 07:47:59 +00:00
|
|
|
#include "DolphinQt2/Settings.h"
|
2017-06-28 04:36:27 +00:00
|
|
|
#include "DolphinQt2/Settings/AdvancedPane.h"
|
2017-06-21 08:27:21 +00:00
|
|
|
#include "DolphinQt2/Settings/AudioPane.h"
|
2018-01-04 00:41:31 +00:00
|
|
|
#include "DolphinQt2/Settings/GameCubePane.h"
|
2017-05-04 04:19:51 +00:00
|
|
|
#include "DolphinQt2/Settings/GeneralPane.h"
|
2017-05-04 07:47:59 +00:00
|
|
|
#include "DolphinQt2/Settings/InterfacePane.h"
|
2017-05-31 08:08:04 +00:00
|
|
|
#include "DolphinQt2/Settings/PathPane.h"
|
2017-07-21 09:22:01 +00:00
|
|
|
#include "DolphinQt2/Settings/WiiPane.h"
|
|
|
|
|
|
|
|
#include "Core/Core.h"
|
2016-05-09 13:34:07 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
SettingsWindow::SettingsWindow(QWidget* parent) : QDialog(parent)
|
2016-05-09 13:34:07 +00:00
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
// Set Window Properties
|
|
|
|
setWindowTitle(tr("Settings"));
|
2017-06-30 00:52:53 +00:00
|
|
|
setWindowFlags(windowFlags() & ~Qt::WindowContextHelpButtonHint);
|
2016-05-09 13:34:07 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Main Layout
|
|
|
|
QVBoxLayout* layout = new QVBoxLayout;
|
2016-05-09 13:34:07 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
// Add content to layout before dialog buttons.
|
2018-04-16 20:55:37 +00:00
|
|
|
m_tab_widget = new QTabWidget();
|
|
|
|
layout->addWidget(m_tab_widget);
|
2017-06-21 08:27:21 +00:00
|
|
|
|
2018-04-16 20:55:37 +00:00
|
|
|
m_tab_widget->addTab(new GeneralPane(), tr("General"));
|
|
|
|
m_tab_widget->addTab(new InterfacePane(), tr("Interface"));
|
|
|
|
m_tab_widget->addTab(new AudioPane(), tr("Audio"));
|
|
|
|
m_tab_widget->addTab(new PathPane(), tr("Paths"));
|
|
|
|
m_tab_widget->addTab(new GameCubePane(), tr("GameCube"));
|
2017-07-21 09:22:01 +00:00
|
|
|
|
|
|
|
auto* wii_pane = new WiiPane;
|
2018-04-16 20:55:37 +00:00
|
|
|
m_tab_widget->addTab(wii_pane, tr("Wii"));
|
2017-07-21 09:22:01 +00:00
|
|
|
|
|
|
|
connect(&Settings::Instance(), &Settings::EmulationStateChanged, [wii_pane](Core::State state) {
|
|
|
|
wii_pane->OnEmulationStateChanged(state != Core::State::Uninitialized);
|
|
|
|
});
|
|
|
|
|
2018-04-16 20:55:37 +00:00
|
|
|
m_tab_widget->addTab(new AdvancedPane(), tr("Advanced"));
|
2017-07-16 21:25:36 +00:00
|
|
|
|
|
|
|
// Dialog box buttons
|
2018-03-20 09:12:11 +00:00
|
|
|
QDialogButtonBox* close_box = new QDialogButtonBox(QDialogButtonBox::Close);
|
|
|
|
|
|
|
|
connect(close_box, &QDialogButtonBox::rejected, this, &QDialog::reject);
|
|
|
|
|
|
|
|
layout->addWidget(close_box);
|
2016-05-09 13:34:07 +00:00
|
|
|
|
2017-07-16 21:25:36 +00:00
|
|
|
setLayout(layout);
|
2016-05-09 13:34:07 +00:00
|
|
|
}
|
2017-07-16 21:11:11 +00:00
|
|
|
|
|
|
|
void SettingsWindow::SelectAudioPane()
|
|
|
|
{
|
2018-04-16 20:55:37 +00:00
|
|
|
m_tab_widget->setCurrentIndex(static_cast<int>(TabIndex::Audio));
|
2017-07-16 21:11:11 +00:00
|
|
|
}
|
2017-08-26 18:54:37 +00:00
|
|
|
|
|
|
|
void SettingsWindow::SelectGeneralPane()
|
|
|
|
{
|
2018-04-16 20:55:37 +00:00
|
|
|
m_tab_widget->setCurrentIndex(static_cast<int>(TabIndex::Audio));
|
2017-08-26 18:54:37 +00:00
|
|
|
}
|