2021-12-13 12:12:54 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
|
|
|
* Copyright (C) 2002-2022 PCSX2 Dev Team
|
|
|
|
*
|
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* PCSX2 is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "PrecompiledHeader.h"
|
|
|
|
|
|
|
|
#include "InterfaceSettingsWidget.h"
|
2022-04-04 11:27:23 +00:00
|
|
|
#include "AutoUpdaterDialog.h"
|
2021-12-13 12:12:54 +00:00
|
|
|
#include "MainWindow.h"
|
|
|
|
#include "SettingWidgetBinder.h"
|
|
|
|
#include "SettingsDialog.h"
|
|
|
|
|
2022-05-25 20:52:46 +00:00
|
|
|
static const char* THEME_NAMES[] = {
|
|
|
|
QT_TRANSLATE_NOOP("InterfaceSettingsWidget", "Native"),
|
2022-02-16 15:37:48 +00:00
|
|
|
QT_TRANSLATE_NOOP("InterfaceSettingsWidget", "Fusion [Light]"),
|
|
|
|
QT_TRANSLATE_NOOP("InterfaceSettingsWidget", "Dark Fusion (Gray) [Dark]"),
|
|
|
|
QT_TRANSLATE_NOOP("InterfaceSettingsWidget", "Dark Fusion (Blue) [Dark]"),
|
|
|
|
QT_TRANSLATE_NOOP("InterfaceSettingsWidget", "Untouched Lagoon (Grayish Green/-Blue ) [Light]"),
|
|
|
|
QT_TRANSLATE_NOOP("InterfaceSettingsWidget", "Baby Pastel (Pink) [Light]"),
|
|
|
|
QT_TRANSLATE_NOOP("InterfaceSettingsWidget", "PCSX2 (White/Blue) [Light]"),
|
2022-05-25 20:52:46 +00:00
|
|
|
QT_TRANSLATE_NOOP("InterfaceSettingsWidget", "Scarlet Devil (Red/Purple) [Dark]"),
|
|
|
|
nullptr
|
|
|
|
};
|
2021-12-13 12:12:54 +00:00
|
|
|
|
2022-05-25 20:52:46 +00:00
|
|
|
static const char* THEME_VALUES[] = {
|
|
|
|
"",
|
|
|
|
"fusion",
|
|
|
|
"darkfusion",
|
|
|
|
"darkfusionblue",
|
|
|
|
"UntouchedLagoon",
|
|
|
|
"BabyPastel",
|
|
|
|
"PCSX2Blue",
|
|
|
|
"ScarletDevilRed",
|
|
|
|
nullptr
|
|
|
|
};
|
2021-12-13 12:12:54 +00:00
|
|
|
|
2022-02-15 14:29:18 +00:00
|
|
|
InterfaceSettingsWidget::InterfaceSettingsWidget(SettingsDialog* dialog, QWidget* parent)
|
2021-12-13 12:12:54 +00:00
|
|
|
: QWidget(parent)
|
|
|
|
{
|
2022-02-15 14:29:18 +00:00
|
|
|
SettingsInterface* sif = dialog->getSettingsInterface();
|
|
|
|
|
2021-12-13 12:12:54 +00:00
|
|
|
m_ui.setupUi(this);
|
|
|
|
|
2022-02-15 14:29:18 +00:00
|
|
|
SettingWidgetBinder::BindWidgetToBoolSetting(sif, m_ui.inhibitScreensaver, "UI", "InhibitScreensaver", true);
|
2022-03-04 10:40:03 +00:00
|
|
|
SettingWidgetBinder::BindWidgetToBoolSetting(sif, m_ui.confirmShutdown, "UI", "ConfirmShutdown", true);
|
2022-05-07 12:56:44 +00:00
|
|
|
SettingWidgetBinder::BindWidgetToBoolSetting(sif, m_ui.saveStateOnShutdown, "EmuCore", "SaveStateOnShutdown", false);
|
2022-02-15 14:29:18 +00:00
|
|
|
SettingWidgetBinder::BindWidgetToBoolSetting(sif, m_ui.pauseOnStart, "UI", "StartPaused", false);
|
|
|
|
SettingWidgetBinder::BindWidgetToBoolSetting(sif, m_ui.pauseOnFocusLoss, "UI", "PauseOnFocusLoss", false);
|
2021-12-13 12:12:54 +00:00
|
|
|
|
2022-02-15 14:29:18 +00:00
|
|
|
SettingWidgetBinder::BindWidgetToBoolSetting(sif, m_ui.startFullscreen, "UI", "StartFullscreen", false);
|
|
|
|
SettingWidgetBinder::BindWidgetToBoolSetting(sif, m_ui.doubleClickTogglesFullscreen, "UI", "DoubleClickTogglesFullscreen",
|
2021-12-13 12:12:54 +00:00
|
|
|
true);
|
2022-02-15 14:29:18 +00:00
|
|
|
SettingWidgetBinder::BindWidgetToBoolSetting(sif, m_ui.hideMouseCursor, "UI", "HideMouseCursor", false);
|
|
|
|
SettingWidgetBinder::BindWidgetToBoolSetting(sif, m_ui.renderToMainWindow, "UI", "RenderToMainWindow", true);
|
2021-12-13 12:12:54 +00:00
|
|
|
|
2022-02-15 14:29:18 +00:00
|
|
|
SettingWidgetBinder::BindWidgetToEnumSetting(sif, m_ui.theme, "UI", "Theme", THEME_NAMES, THEME_VALUES,
|
2021-12-13 12:12:54 +00:00
|
|
|
MainWindow::DEFAULT_THEME_NAME);
|
|
|
|
connect(m_ui.theme, QOverload<int>::of(&QComboBox::currentIndexChanged), [this]() { emit themeChanged(); });
|
|
|
|
|
|
|
|
dialog->registerWidgetHelp(
|
|
|
|
m_ui.inhibitScreensaver, tr("Inhibit Screensaver"), tr("Checked"),
|
|
|
|
tr("Prevents the screen saver from activating and the host from sleeping while emulation is running."));
|
|
|
|
|
2022-04-04 11:27:23 +00:00
|
|
|
if (AutoUpdaterDialog::isSupported())
|
2021-12-13 12:12:54 +00:00
|
|
|
{
|
2022-02-15 14:29:18 +00:00
|
|
|
SettingWidgetBinder::BindWidgetToBoolSetting(sif, m_ui.autoUpdateEnabled, "AutoUpdater", "CheckAtStartup", true);
|
2021-12-13 12:12:54 +00:00
|
|
|
dialog->registerWidgetHelp(m_ui.autoUpdateEnabled, tr("Enable Automatic Update Check"), tr("Checked"),
|
|
|
|
tr("Automatically checks for updates to the program on startup. Updates can be deferred "
|
|
|
|
"until later or skipped entirely."));
|
|
|
|
|
2022-04-04 11:27:23 +00:00
|
|
|
m_ui.autoUpdateTag->addItems(AutoUpdaterDialog::getTagList());
|
|
|
|
SettingWidgetBinder::BindWidgetToStringSetting(sif, m_ui.autoUpdateTag, "AutoUpdater", "UpdateTag",
|
|
|
|
AutoUpdaterDialog::getDefaultTag());
|
2021-12-13 12:12:54 +00:00
|
|
|
|
2022-04-04 11:27:23 +00:00
|
|
|
m_ui.autoUpdateCurrentVersion->setText(tr("%1 (%2)").arg(AutoUpdaterDialog::getCurrentVersion()).arg(AutoUpdaterDialog::getCurrentVersionDate()));
|
|
|
|
connect(m_ui.checkForUpdates, &QPushButton::clicked, this, []() { g_main_window->checkForUpdates(true); });
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_ui.verticalLayout->removeWidget(m_ui.automaticUpdaterGroup);
|
|
|
|
m_ui.automaticUpdaterGroup->hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
dialog->registerWidgetHelp(
|
2022-03-04 10:40:03 +00:00
|
|
|
m_ui.confirmShutdown, tr("Confirm Shutdown"), tr("Checked"),
|
|
|
|
tr("Determines whether a prompt will be displayed to confirm shutting down the virtual machine "
|
2021-12-13 12:12:54 +00:00
|
|
|
"when the hotkey is pressed."));
|
2022-05-07 12:56:44 +00:00
|
|
|
dialog->registerWidgetHelp(m_ui.saveStateOnShutdown, tr("Save State On Shutdown"), tr("Checked"),
|
2021-12-13 12:12:54 +00:00
|
|
|
tr("Automatically saves the emulator state when powering down or exiting. You can then "
|
|
|
|
"resume directly from where you left off next time."));
|
|
|
|
dialog->registerWidgetHelp(m_ui.pauseOnStart, tr("Pause On Start"), tr("Unchecked"),
|
|
|
|
tr("Pauses the emulator when a game is started."));
|
|
|
|
dialog->registerWidgetHelp(m_ui.pauseOnFocusLoss, tr("Pause On Focus Loss"), tr("Unchecked"),
|
|
|
|
tr("Pauses the emulator when you minimize the window or switch to another application, "
|
|
|
|
"and unpauses when you switch back."));
|
|
|
|
dialog->registerWidgetHelp(m_ui.startFullscreen, tr("Start Fullscreen"), tr("Unchecked"),
|
|
|
|
tr("Automatically switches to fullscreen mode when a game is started."));
|
|
|
|
dialog->registerWidgetHelp(m_ui.hideMouseCursor, tr("Hide Cursor In Fullscreen"), tr("Checked"),
|
|
|
|
tr("Hides the mouse pointer/cursor when the emulator is in fullscreen mode."));
|
|
|
|
dialog->registerWidgetHelp(
|
|
|
|
m_ui.renderToMainWindow, tr("Render To Main Window"), tr("Checked"),
|
|
|
|
tr("Renders the display of the simulated console to the main window of the application, over "
|
|
|
|
"the game list. If unchecked, the display will render in a separate window."));
|
2022-05-23 12:28:41 +00:00
|
|
|
|
|
|
|
// Not yet used, disable the options
|
|
|
|
m_ui.pauseOnStart->setDisabled(true);
|
|
|
|
m_ui.pauseOnFocusLoss->setDisabled(true);
|
|
|
|
m_ui.disableWindowResizing->setDisabled(true);
|
2022-05-24 14:59:26 +00:00
|
|
|
m_ui.language->setDisabled(true);
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
InterfaceSettingsWidget::~InterfaceSettingsWidget() = default;
|