43 lines
923 B
C++
43 lines
923 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "DolphinQt/Config/Mapping/HotkeyStates.h"
|
|
|
|
#include <QGroupBox>
|
|
#include <QHBoxLayout>
|
|
|
|
#include "Core/HotkeyManager.h"
|
|
|
|
HotkeyStates::HotkeyStates(MappingWindow* window) : MappingWidget(window)
|
|
{
|
|
CreateMainLayout();
|
|
}
|
|
|
|
void HotkeyStates::CreateMainLayout()
|
|
{
|
|
m_main_layout = new QHBoxLayout();
|
|
|
|
m_main_layout->addWidget(
|
|
CreateGroupBox(tr("Save"), HotkeyManagerEmu::GetHotkeyGroup(HKGP_SAVE_STATE)));
|
|
m_main_layout->addWidget(
|
|
CreateGroupBox(tr("Load"), HotkeyManagerEmu::GetHotkeyGroup(HKGP_LOAD_STATE)));
|
|
|
|
setLayout(m_main_layout);
|
|
}
|
|
|
|
InputConfig* HotkeyStates::GetConfig()
|
|
{
|
|
return HotkeyManagerEmu::GetConfig();
|
|
}
|
|
|
|
void HotkeyStates::LoadSettings()
|
|
{
|
|
HotkeyManagerEmu::LoadConfig();
|
|
}
|
|
|
|
void HotkeyStates::SaveSettings()
|
|
{
|
|
HotkeyManagerEmu::GetConfig()->SaveConfig();
|
|
}
|