mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 07:25:46 +00:00
kraken: Fix errors from rebase and format files
This commit is contained in:
parent
06a5ef5874
commit
e0da5c1bbc
20 changed files with 83 additions and 53 deletions
|
@ -11,6 +11,10 @@ class QHideEvent;
|
|||
class QShowEvent;
|
||||
class PlayerControlPreview;
|
||||
|
||||
namespace Core {
|
||||
class System;
|
||||
}
|
||||
|
||||
namespace InputCommon {
|
||||
class InputSubsystem;
|
||||
}
|
||||
|
@ -19,11 +23,14 @@ class ControllerDialog : public QWidget {
|
|||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ControllerDialog(QWidget* parent = nullptr);
|
||||
explicit ControllerDialog(Core::System& system, QWidget* parent = nullptr);
|
||||
|
||||
/// Returns a QAction that can be used to toggle visibility of this dialog.
|
||||
QAction* toggleViewAction();
|
||||
|
||||
// Disables events from the emulated controller
|
||||
void UnloadController();
|
||||
|
||||
protected:
|
||||
void showEvent(QShowEvent* ev) override;
|
||||
void hideEvent(QHideEvent* ev) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue