dolphin/Source/Core/DolphinQt/Config/Mapping/HotkeyDebugging.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
482 B
C
Raw Normal View History

2018-02-14 23:25:01 +01:00
// Copyright 2018 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2018-02-14 23:25:01 +01:00
#pragma once
2018-07-07 00:40:15 +02:00
#include "DolphinQt/Config/Mapping/MappingWidget.h"
2018-02-14 23:25:01 +01:00
class QGridLayout;
2018-02-14 23:25:01 +01:00
class HotkeyDebugging final : public MappingWidget
{
Q_OBJECT
2018-02-14 23:25:01 +01:00
public:
explicit HotkeyDebugging(MappingWindow* window);
InputConfig* GetConfig() override;
private:
void LoadSettings() override;
void SaveSettings() override;
void CreateMainLayout();
// Main
QGridLayout* m_main_layout;
2018-02-14 23:25:01 +01:00
};