32 lines
613 B
C++
32 lines
613 B
C++
// Copyright 2019 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "DolphinQt/Config/Mapping/MappingWidget.h"
|
|
|
|
class QCheckBox;
|
|
class QFormLayout;
|
|
class QGroupBox;
|
|
class QHBoxLayout;
|
|
class QLabel;
|
|
class QVBoxLayout;
|
|
|
|
class WiimoteEmuMotionControlIMU final : public MappingWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit WiimoteEmuMotionControlIMU(MappingWindow* window);
|
|
|
|
InputConfig* GetConfig() override;
|
|
|
|
private:
|
|
void LoadSettings() override;
|
|
void SaveSettings() override;
|
|
void CreateMainLayout();
|
|
|
|
// Main
|
|
QVBoxLayout* m_main_layout;
|
|
};
|