Qt/Hotkeys: Implement missing "Other State Management" tab

This commit is contained in:
spycrab
2018-06-03 12:41:58 +02:00
parent 1e51e263e0
commit 9c26a1a458
5 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,23 @@
// Copyright 2018 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include "DolphinQt2/Config/Mapping/MappingWidget.h"
class QHBoxLayout;
class HotkeyStatesOther final : public MappingWidget
{
Q_OBJECT
public:
explicit HotkeyStatesOther(MappingWindow* window);
InputConfig* GetConfig() override;
private:
void LoadSettings() override;
void SaveSettings() override;
void CreateMainLayout();
};