mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Move DolphinQt2 to DolphinQt
This commit is contained in:
52
Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.h
Normal file
52
Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtension.h
Normal file
@ -0,0 +1,52 @@
|
||||
// Copyright 2017 Dolphin Emulator Project
|
||||
// Licensed under GPLv2+
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "DolphinQt/Config/Mapping/MappingWidget.h"
|
||||
|
||||
class QGroupBox;
|
||||
class QHBoxLayout;
|
||||
|
||||
class WiimoteEmuExtension final : public MappingWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
enum class Type
|
||||
{
|
||||
NONE,
|
||||
CLASSIC_CONTROLLER,
|
||||
DRUMS,
|
||||
GUITAR,
|
||||
NUNCHUK,
|
||||
TURNTABLE
|
||||
};
|
||||
|
||||
explicit WiimoteEmuExtension(MappingWindow* window);
|
||||
|
||||
InputConfig* GetConfig() override;
|
||||
|
||||
void ChangeExtensionType(Type type);
|
||||
|
||||
private:
|
||||
void LoadSettings() override;
|
||||
void SaveSettings() override;
|
||||
|
||||
void CreateClassicLayout();
|
||||
void CreateDrumsLayout();
|
||||
void CreateGuitarLayout();
|
||||
void CreateNoneLayout();
|
||||
void CreateNunchukLayout();
|
||||
void CreateTurntableLayout();
|
||||
void CreateMainLayout();
|
||||
|
||||
// Main
|
||||
QHBoxLayout* m_main_layout;
|
||||
QGroupBox* m_classic_box;
|
||||
QGroupBox* m_drums_box;
|
||||
QGroupBox* m_guitar_box;
|
||||
QGroupBox* m_none_box;
|
||||
QGroupBox* m_nunchuk_box;
|
||||
QGroupBox* m_turntable_box;
|
||||
};
|
Reference in New Issue
Block a user