// Copyright 2018 Dolphin Emulator Project // Licensed under GPLv2+ // Refer to the license.txt file included. #include "DolphinQt2/Config/Mapping/HotkeyStatesOther.h" #include #include #include "Core/HotkeyManager.h" HotkeyStatesOther::HotkeyStatesOther(MappingWindow* window) : MappingWidget(window) { CreateMainLayout(); } void HotkeyStatesOther::CreateMainLayout() { auto* layout = new QHBoxLayout; layout->addWidget( CreateGroupBox(tr("Select Last State"), HotkeyManagerEmu::GetHotkeyGroup(HKGP_SELECT_STATE))); layout->addWidget(CreateGroupBox(tr("Load Last State"), HotkeyManagerEmu::GetHotkeyGroup(HKGP_LOAD_LAST_STATE))); layout->addWidget( CreateGroupBox(tr("Other State Hotkeys"), HotkeyManagerEmu::GetHotkeyGroup(HKGP_STATE_MISC))); setLayout(layout); } InputConfig* HotkeyStatesOther::GetConfig() { return HotkeyManagerEmu::GetConfig(); } void HotkeyStatesOther::LoadSettings() { HotkeyManagerEmu::LoadConfig(); } void HotkeyStatesOther::SaveSettings() { HotkeyManagerEmu::GetConfig()->SaveConfig(); }