dolphin/Source/Core/DolphinQt/Config/Mapping/WiimoteEmuExtensionMotionSimulation.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
645 B
C
Raw Normal View History

2019-11-03 20:19:33 -07:00
// Copyright 2019 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2019-11-03 20:19:33 -07:00
#pragma once
#include "DolphinQt/Config/Mapping/MappingWidget.h"
#include "Core/HW/WiimoteEmu/ExtensionPort.h"
class QGroupBox;
class QHBoxLayout;
class WiimoteEmuExtensionMotionSimulation final : public MappingWidget
{
Q_OBJECT
public:
explicit WiimoteEmuExtensionMotionSimulation(MappingWindow* window);
InputConfig* GetConfig() override;
private:
void LoadSettings() override;
void SaveSettings() override;
void CreateNunchukLayout();
void CreateMainLayout();
// Main
QHBoxLayout* m_main_layout;
QGroupBox* m_nunchuk_box;
};