2017-05-20 09:53:17 -06:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2017-05-20 09:53:17 -06:00
|
|
|
|
2017-07-26 14:31:58 -06:00
|
|
|
#pragma once
|
|
|
|
|
2018-07-06 16:40:15 -06:00
|
|
|
#include "DolphinQt/Config/Mapping/MappingWidget.h"
|
2017-05-20 09:53:17 -06:00
|
|
|
|
|
|
|
class GCKeyboardEmu final : public MappingWidget
|
|
|
|
{
|
2018-05-13 14:16:20 -06:00
|
|
|
Q_OBJECT
|
2017-05-20 09:53:17 -06:00
|
|
|
public:
|
|
|
|
explicit GCKeyboardEmu(MappingWindow* window);
|
|
|
|
|
|
|
|
InputConfig* GetConfig() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void LoadSettings() override;
|
|
|
|
void SaveSettings() override;
|
|
|
|
void CreateMainLayout();
|
|
|
|
};
|