2018-02-14 22:25:01 +00:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-02-14 22:25:01 +00:00
|
|
|
|
2018-07-06 22:40:15 +00:00
|
|
|
#include "DolphinQt/Config/Mapping/HotkeyDebugging.h"
|
2018-02-14 22:25:01 +00:00
|
|
|
|
2019-03-16 16:55:47 +00:00
|
|
|
#include <QGridLayout>
|
2018-02-14 22:25:01 +00:00
|
|
|
#include <QGroupBox>
|
|
|
|
|
|
|
|
#include "Core/HotkeyManager.h"
|
|
|
|
|
|
|
|
HotkeyDebugging::HotkeyDebugging(MappingWindow* window) : MappingWidget(window)
|
|
|
|
{
|
|
|
|
CreateMainLayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
void HotkeyDebugging::CreateMainLayout()
|
|
|
|
{
|
2019-03-16 16:55:47 +00:00
|
|
|
m_main_layout = new QGridLayout();
|
2018-02-14 22:25:01 +00:00
|
|
|
|
|
|
|
m_main_layout->addWidget(
|
2019-03-16 16:55:47 +00:00
|
|
|
CreateGroupBox(tr("Stepping"), HotkeyManagerEmu::GetHotkeyGroup(HKGP_STEPPING)), 0, 0, -1, 1);
|
2018-02-14 22:25:01 +00:00
|
|
|
|
2019-03-16 16:55:47 +00:00
|
|
|
m_main_layout->addWidget(
|
|
|
|
CreateGroupBox(tr("Program Counter"), HotkeyManagerEmu::GetHotkeyGroup(HKGP_PC)), 0, 1);
|
|
|
|
m_main_layout->addWidget(
|
|
|
|
CreateGroupBox(tr("Breakpoint"), HotkeyManagerEmu::GetHotkeyGroup(HKGP_BREAKPOINT)), 1, 1);
|
2018-02-14 22:25:01 +00:00
|
|
|
|
|
|
|
setLayout(m_main_layout);
|
|
|
|
}
|
|
|
|
|
|
|
|
InputConfig* HotkeyDebugging::GetConfig()
|
|
|
|
{
|
|
|
|
return HotkeyManagerEmu::GetConfig();
|
|
|
|
}
|
|
|
|
|
|
|
|
void HotkeyDebugging::LoadSettings()
|
|
|
|
{
|
|
|
|
HotkeyManagerEmu::LoadConfig();
|
|
|
|
}
|
|
|
|
|
|
|
|
void HotkeyDebugging::SaveSettings()
|
|
|
|
{
|
|
|
|
HotkeyManagerEmu::GetConfig()->SaveConfig();
|
|
|
|
}
|