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>
|
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-07-16 21:25:36 +00:00
|
|
|
#include "DolphinQt2/QtUtils/ListTabWidget.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
|
|
|
|
2017-07-16 21:25:36 +00:00
|
|
|
static int AddTab(ListTabWidget* tab_widget, const QString& label, QWidget* widget,
|
|
|
|
const char* icon_name)
|
|
|
|
{
|
|
|
|
int index = tab_widget->addTab(widget, label);
|
|
|
|
auto set_icon = [=] { tab_widget->setTabIcon(index, Resources::GetScaledThemeIcon(icon_name)); };
|
|
|
|
QObject::connect(&Settings::Instance(), &Settings::ThemeChanged, set_icon);
|
|
|
|
set_icon();
|
|
|
|
return index;
|
|
|
|
}
|
|
|
|
|
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.
|
2017-07-16 21:25:36 +00:00
|
|
|
m_tabs = new ListTabWidget();
|
|
|
|
layout->addWidget(m_tabs);
|
2017-06-21 08:27:21 +00:00
|
|
|
|
2017-08-26 18:54:37 +00:00
|
|
|
m_general_pane_index = AddTab(m_tabs, tr("General"), new GeneralPane(), "config");
|
2017-07-16 21:25:36 +00:00
|
|
|
AddTab(m_tabs, tr("Interface"), new InterfacePane(), "browse");
|
2017-09-04 18:12:13 +00:00
|
|
|
m_audio_pane_index = AddTab(m_tabs, tr("Audio"), new AudioPane(), "play");
|
2018-01-04 00:41:31 +00:00
|
|
|
AddTab(m_tabs, tr("GameCube"), new GameCubePane(), "gcpad");
|
2017-07-16 21:25:36 +00:00
|
|
|
AddTab(m_tabs, tr("Paths"), new PathPane(), "browse");
|
2017-07-21 09:22:01 +00:00
|
|
|
|
|
|
|
auto* wii_pane = new WiiPane;
|
|
|
|
AddTab(m_tabs, tr("Wii"), wii_pane, "wiimote");
|
|
|
|
|
|
|
|
connect(&Settings::Instance(), &Settings::EmulationStateChanged, [wii_pane](Core::State state) {
|
|
|
|
wii_pane->OnEmulationStateChanged(state != Core::State::Uninitialized);
|
|
|
|
});
|
|
|
|
|
2017-06-28 04:36:27 +00:00
|
|
|
AddTab(m_tabs, tr("Advanced"), new AdvancedPane(), "config");
|
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()
|
|
|
|
{
|
|
|
|
m_tabs->setCurrentIndex(m_audio_pane_index);
|
|
|
|
}
|
2017-08-26 18:54:37 +00:00
|
|
|
|
|
|
|
void SettingsWindow::SelectGeneralPane()
|
|
|
|
{
|
|
|
|
m_tabs->setCurrentIndex(m_general_pane_index);
|
|
|
|
}
|