2021-01-21 16:51:24 -08:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
class QAction;
|
|
|
|
class QHideEvent;
|
|
|
|
class QShowEvent;
|
2021-02-04 06:54:27 -08:00
|
|
|
class PlayerControlPreview;
|
2021-01-21 16:51:24 -08:00
|
|
|
|
2021-06-18 07:15:42 -07:00
|
|
|
namespace InputCommon {
|
|
|
|
class InputSubsystem;
|
|
|
|
}
|
|
|
|
|
2021-01-21 16:51:24 -08:00
|
|
|
class ControllerDialog : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2021-09-20 17:59:09 -07:00
|
|
|
explicit ControllerDialog(QWidget* parent = nullptr);
|
2021-01-21 16:51:24 -08:00
|
|
|
|
|
|
|
/// Returns a QAction that can be used to toggle visibility of this dialog.
|
|
|
|
QAction* toggleViewAction();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void showEvent(QShowEvent* ev) override;
|
|
|
|
void hideEvent(QHideEvent* ev) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
QAction* toggle_view_action = nullptr;
|
2021-02-04 06:54:27 -08:00
|
|
|
PlayerControlPreview* widget;
|
2021-01-21 16:51:24 -08:00
|
|
|
};
|