2018-02-14 22:25:01 +00:00
|
|
|
// Copyright 2018 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-07-06 22:40:15 +00:00
|
|
|
#include "DolphinQt/Config/Mapping/HotkeyDebugging.h"
|
2018-02-14 22:25:01 +00:00
|
|
|
|
|
|
|
#include <QGroupBox>
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
|
|
#include "Core/HotkeyManager.h"
|
|
|
|
|
|
|
|
HotkeyDebugging::HotkeyDebugging(MappingWindow* window) : MappingWidget(window)
|
|
|
|
{
|
|
|
|
CreateMainLayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
void HotkeyDebugging::CreateMainLayout()
|
|
|
|
{
|
|
|
|
m_main_layout = new QHBoxLayout();
|
|
|
|
|
|
|
|
m_main_layout->addWidget(
|
|
|
|
CreateGroupBox(tr("Stepping"), HotkeyManagerEmu::GetHotkeyGroup(HKGP_STEPPING)));
|
|
|
|
|
|
|
|
auto* vbox = new QVBoxLayout();
|
|
|
|
vbox->addWidget(CreateGroupBox(tr("Program Counter"), HotkeyManagerEmu::GetHotkeyGroup(HKGP_PC)));
|
|
|
|
vbox->addWidget(
|
|
|
|
CreateGroupBox(tr("Breakpoint"), HotkeyManagerEmu::GetHotkeyGroup(HKGP_BREAKPOINT)));
|
2018-05-08 23:54:47 +00:00
|
|
|
m_main_layout->addLayout(vbox);
|
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();
|
|
|
|
}
|