Qt: Implement hotkeys (+ configuration)

This commit is contained in:
spycrab
2017-06-06 13:49:49 +02:00
parent 096399d371
commit 151ae38a56
24 changed files with 958 additions and 3 deletions

View File

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