dolphin/Source/Core/DolphinQt2/Config/Mapping/GCPadWiiU.h

34 lines
619 B
C
Raw Normal View History

2017-05-20 15:53:17 +00:00
// Copyright 2017 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
2017-07-26 20:31:58 +00:00
#pragma once
2017-05-20 15:53:17 +00:00
#include "DolphinQt2/Config/Mapping/MappingWidget.h"
class QCheckBox;
class QLabel;
class QVBoxLayout;
class GCPadWiiU final : public MappingWidget
{
public:
explicit GCPadWiiU(MappingWindow* window);
InputConfig* GetConfig() override;
private:
void LoadSettings() override;
void SaveSettings() override;
void CreateLayout();
void ConnectWidgets();
QVBoxLayout* m_layout;
QLabel* m_status_label;
// Checkboxes
QCheckBox* m_rumble;
QCheckBox* m_simulate_bongos;
};