26 lines
483 B
C
26 lines
483 B
C
|
// 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 HotkeyWii final : public MappingWidget
|
||
|
{
|
||
|
public:
|
||
|
explicit HotkeyWii(MappingWindow* window);
|
||
|
|
||
|
InputConfig* GetConfig() override;
|
||
|
|
||
|
private:
|
||
|
void LoadSettings() override;
|
||
|
void SaveSettings() override;
|
||
|
void CreateMainLayout();
|
||
|
|
||
|
// Main
|
||
|
QHBoxLayout* m_main_layout;
|
||
|
};
|