dolphin/Source/Core/DolphinQt/Config/ControllersWindow.h

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

29 lines
623 B
C
Raw Normal View History

2017-05-09 18:49:10 +02:00
// Copyright 2017 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <QDialog>
class CommonControllersWidget;
class GamecubeControllersWidget;
2017-05-09 18:49:10 +02:00
class QDialogButtonBox;
class WiimoteControllersWidget;
2017-05-09 18:49:10 +02:00
class ControllersWindow final : public QDialog
{
Q_OBJECT
public:
explicit ControllersWindow(QWidget* parent);
private:
void CreateMainLayout();
void ConnectWidgets();
QDialogButtonBox* m_button_box;
GamecubeControllersWidget* m_gamecube_controllers;
WiimoteControllersWidget* m_wiimote_controllers;
CommonControllersWidget* m_common;
2017-05-09 18:49:10 +02:00
};