// Copyright 2018 Dolphin Emulator Project // Licensed under GPLv2+ // Refer to the license.txt file included. #include "DolphinQt/Config/Mapping/HotkeyControllerProfile.h" #include #include #include "Core/HotkeyManager.h" HotkeyControllerProfile::HotkeyControllerProfile(MappingWindow* window) : MappingWidget(window) { CreateMainLayout(); } void HotkeyControllerProfile::CreateMainLayout() { const auto main_layout = new QGridLayout; main_layout->addWidget( CreateGroupBox(tr("Wii Remote %1").arg(1), HotkeyManagerEmu::GetHotkeyGroup(HKGP_CONTROLLER_PROFILE_1)), 0, 0); main_layout->addWidget( CreateGroupBox(tr("Wii Remote %1").arg(2), HotkeyManagerEmu::GetHotkeyGroup(HKGP_CONTROLLER_PROFILE_2)), 0, 1); main_layout->addWidget( CreateGroupBox(tr("Wii Remote %1").arg(3), HotkeyManagerEmu::GetHotkeyGroup(HKGP_CONTROLLER_PROFILE_3)), 1, 0); main_layout->addWidget( CreateGroupBox(tr("Wii Remote %1").arg(4), HotkeyManagerEmu::GetHotkeyGroup(HKGP_CONTROLLER_PROFILE_4)), 1, 1); setLayout(main_layout); } InputConfig* HotkeyControllerProfile::GetConfig() { return HotkeyManagerEmu::GetConfig(); } void HotkeyControllerProfile::LoadSettings() { HotkeyManagerEmu::LoadConfig(); } void HotkeyControllerProfile::SaveSettings() { HotkeyManagerEmu::GetConfig()->SaveConfig(); }