DolphinQt: Move "Controllers" to main settings window.

This commit is contained in:
Jordan Woyak
2025-05-13 01:03:37 -05:00
parent 8665b22822
commit b9bea58f0f
10 changed files with 82 additions and 112 deletions

View 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;
};