mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 22:09:19 -07:00
30 lines
565 B
C
30 lines
565 B
C
|
// Copyright 2018 Dolphin Emulator Project
|
||
|
// Licensed under GPLv2+
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "DolphinQt2/Config/Mapping/MappingWidget.h"
|
||
|
|
||
|
class QCheckBox;
|
||
|
class QFormLayout;
|
||
|
class QGroupBox;
|
||
|
class QHBoxLayout;
|
||
|
class QLabel;
|
||
|
class QVBoxLayout;
|
||
|
|
||
|
class GCMicrophone final : public MappingWidget
|
||
|
{
|
||
|
public:
|
||
|
explicit GCMicrophone(MappingWindow* window);
|
||
|
|
||
|
InputConfig* GetConfig() override;
|
||
|
|
||
|
private:
|
||
|
void LoadSettings() override;
|
||
|
void SaveSettings() override;
|
||
|
void CreateMainLayout();
|
||
|
|
||
|
QHBoxLayout* m_main_layout;
|
||
|
};
|