mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
DolphinQt: Move "Controllers" to main settings window.
This commit is contained in:
23
Source/Core/DolphinQt/Config/ControllersPane.h
Normal file
23
Source/Core/DolphinQt/Config/ControllersPane.h
Normal file
@ -0,0 +1,23 @@
|
||||
// Copyright 2025 Dolphin Emulator Project
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
class WiimoteControllersWidget;
|
||||
|
||||
class ControllersPane final : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
ControllersPane();
|
||||
|
||||
protected:
|
||||
void showEvent(QShowEvent* event) override;
|
||||
|
||||
private:
|
||||
void CreateMainLayout();
|
||||
|
||||
WiimoteControllersWidget* m_wiimote_controllers;
|
||||
};
|
Reference in New Issue
Block a user