2017-06-06 11:49:49 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-06-06 11:49:49 +00:00
|
|
|
|
2018-07-06 22:40:15 +00:00
|
|
|
#include "DolphinQt/Config/Mapping/HotkeyGeneral.h"
|
2017-06-06 11:49:49 +00:00
|
|
|
|
2019-03-16 16:55:47 +00:00
|
|
|
#include <QGridLayout>
|
2017-06-06 11:49:49 +00:00
|
|
|
#include <QGroupBox>
|
|
|
|
|
|
|
|
#include "Core/HotkeyManager.h"
|
|
|
|
|
|
|
|
HotkeyGeneral::HotkeyGeneral(MappingWindow* window) : MappingWidget(window)
|
|
|
|
{
|
|
|
|
CreateMainLayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
void HotkeyGeneral::CreateMainLayout()
|
|
|
|
{
|
2019-03-16 16:55:47 +00:00
|
|
|
m_main_layout = new QGridLayout;
|
2017-06-06 11:49:49 +00:00
|
|
|
|
|
|
|
m_main_layout->addWidget(
|
2019-03-16 16:55:47 +00:00
|
|
|
CreateGroupBox(tr("General"), HotkeyManagerEmu::GetHotkeyGroup(HKGP_GENERAL)), 0, 0, -1, 1);
|
2017-06-06 11:49:49 +00:00
|
|
|
|
2019-03-16 16:55:47 +00:00
|
|
|
m_main_layout->addWidget(
|
|
|
|
CreateGroupBox(tr("Volume"), HotkeyManagerEmu::GetHotkeyGroup(HKGP_VOLUME)), 0, 1);
|
|
|
|
m_main_layout->addWidget(
|
|
|
|
CreateGroupBox(tr("Emulation Speed"), HotkeyManagerEmu::GetHotkeyGroup(HKGP_SPEED)), 1, 1);
|
2017-06-06 11:49:49 +00:00
|
|
|
|
|
|
|
setLayout(m_main_layout);
|
|
|
|
}
|
|
|
|
|
|
|
|
InputConfig* HotkeyGeneral::GetConfig()
|
|
|
|
{
|
|
|
|
return HotkeyManagerEmu::GetConfig();
|
|
|
|
}
|
|
|
|
|
|
|
|
void HotkeyGeneral::LoadSettings()
|
|
|
|
{
|
|
|
|
HotkeyManagerEmu::LoadConfig();
|
|
|
|
}
|
|
|
|
|
|
|
|
void HotkeyGeneral::SaveSettings()
|
|
|
|
{
|
|
|
|
HotkeyManagerEmu::GetConfig()->SaveConfig();
|
|
|
|
}
|