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
|
|
|
|
|
2018-07-06 22:40:15 +00:00
|
|
|
#include "DolphinQt/Config/Mapping/MappingWidget.h"
|
2017-05-20 15:53:17 +00:00
|
|
|
|
|
|
|
class QComboBox;
|
|
|
|
class WiimoteEmuExtension;
|
|
|
|
|
|
|
|
class WiimoteEmuGeneral final : public MappingWidget
|
|
|
|
{
|
2018-05-13 20:16:20 +00:00
|
|
|
Q_OBJECT
|
2017-05-20 15:53:17 +00:00
|
|
|
public:
|
|
|
|
explicit WiimoteEmuGeneral(MappingWindow* window, WiimoteEmuExtension* extension);
|
|
|
|
|
|
|
|
InputConfig* GetConfig() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void LoadSettings() override;
|
|
|
|
void SaveSettings() override;
|
|
|
|
void CreateMainLayout();
|
2018-10-03 03:32:00 +00:00
|
|
|
void Connect(MappingWindow* window);
|
2017-05-20 15:53:17 +00:00
|
|
|
void OnAttachmentChanged(int index);
|
2019-04-27 15:51:57 +00:00
|
|
|
void ConfigChanged();
|
2017-05-20 15:53:17 +00:00
|
|
|
|
|
|
|
// Extensions
|
|
|
|
QComboBox* m_extension_combo;
|
|
|
|
|
|
|
|
WiimoteEmuExtension* m_extension_widget;
|
|
|
|
};
|