Add controller window and single joycon top view

This commit is contained in:
german 2021-01-21 18:51:24 -06:00
parent ea1f656d7e
commit a7f9983563
7 changed files with 391 additions and 29 deletions

View file

@ -0,0 +1,28 @@
// 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;
class ControllerDialog : public QWidget {
Q_OBJECT
public:
explicit ControllerDialog(QWidget* parent = nullptr);
/// 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;
};