mirror of https://github.com/PCSX2/pcsx2.git
51 lines
1.8 KiB
C++
51 lines
1.8 KiB
C++
// SPDX-FileCopyrightText: 2002-2025 PCSX2 Dev Team
|
|
// SPDX-License-Identifier: GPL-3.0+
|
|
|
|
#include "DebugUserInterfaceSettingsWidget.h"
|
|
|
|
#include "SettingWidgetBinder.h"
|
|
|
|
static const char* s_drop_indicators[] = {
|
|
QT_TRANSLATE_NOOP("DebugUserInterfaceSettingsWidget", "Classic"),
|
|
QT_TRANSLATE_NOOP("DebugUserInterfaceSettingsWidget", "Segmented"),
|
|
QT_TRANSLATE_NOOP("DebugUserInterfaceSettingsWidget", "Minimalistic"),
|
|
nullptr,
|
|
};
|
|
|
|
DebugUserInterfaceSettingsWidget::DebugUserInterfaceSettingsWidget(SettingsWindow* dialog, QWidget* parent)
|
|
: QWidget(parent)
|
|
{
|
|
SettingsInterface* sif = dialog->getSettingsInterface();
|
|
|
|
m_ui.setupUi(this);
|
|
|
|
SettingWidgetBinder::BindWidgetToBoolSetting(
|
|
sif, m_ui.showOnStartupCheckBox, "Debugger/UserInterface", "ShowOnStartup", false);
|
|
|
|
dialog->registerWidgetHelp(
|
|
m_ui.showOnStartupCheckBox, tr("Show On Startup"), tr("Unchecked"),
|
|
tr("Open the debugger window automatically when PCSX2 starts."));
|
|
|
|
SettingWidgetBinder::BindWidgetToBoolSetting(
|
|
sif, m_ui.saveWindowGeometryCheckBox, "Debugger/UserInterface", "SaveWindowGeometry", true);
|
|
|
|
dialog->registerWidgetHelp(
|
|
m_ui.saveWindowGeometryCheckBox, tr("Save Window Geometry"), tr("Checked"),
|
|
tr("Save the position and size of the debugger window when it is closed so that it can be restored later."));
|
|
|
|
SettingWidgetBinder::BindWidgetToEnumSetting(
|
|
sif,
|
|
m_ui.dropIndicatorCombo,
|
|
"Debugger/UserInterface",
|
|
"DropIndicatorStyle",
|
|
s_drop_indicators,
|
|
s_drop_indicators,
|
|
s_drop_indicators[0],
|
|
"DebugUserInterfaceSettingsWidget");
|
|
|
|
dialog->registerWidgetHelp(
|
|
m_ui.dropIndicatorCombo, tr("Drop Indicator Style"), tr("Classic"),
|
|
tr("Choose how the drop indicators that appear when you drag dock windows in the debugger are styled. "
|
|
"You will have to restart the debugger for this option to take effect."));
|
|
}
|