diff options
| author | bunnei <bunneidev@gmail.com> | 2020-09-10 19:28:23 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-10 19:28:23 -0400 |
| commit | 03179ecafe8a5e9dedcab57f593f47ecc71b6877 (patch) | |
| tree | ac862b62f9d1e8c3c50915dcefc3f34863140e93 /src/yuzu/main.h | |
| parent | 41b8ecdeb66b8314f40c3823da9d3d0887eaa8f9 (diff) | |
| parent | 5043036688126eeaa71752cfc5885fba7626fe20 (diff) | |
Merge pull request #4597 from Morph1984/mjolnir-p2
Project Mjölnir: Part 2 - Controller Applet
Diffstat (limited to 'src/yuzu/main.h')
| -rw-r--r-- | src/yuzu/main.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 0ce66a1ca..afcfa68a9 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -37,6 +37,7 @@ enum class InstalledEntryType; class GameListPlaceholder; namespace Core::Frontend { +struct ControllerParameters; struct SoftwareKeyboardParameters; } // namespace Core::Frontend @@ -116,9 +117,12 @@ signals: void UpdateInstallProgress(); + void ControllerSelectorReconfigureFinished(); + void ErrorDisplayFinished(); void ProfileSelectorFinishedSelection(std::optional<Common::UUID> uuid); + void SoftwareKeyboardFinishedText(std::optional<std::u16string> text); void SoftwareKeyboardFinishedCheckDialog(); @@ -127,6 +131,8 @@ signals: public slots: void OnLoadComplete(); + void ControllerSelectorReconfigureControllers( + const Core::Frontend::ControllerParameters& parameters); void ErrorDisplayDisplayError(QString body); void ProfileSelectorSelectProfile(); void SoftwareKeyboardGetText(const Core::Frontend::SoftwareKeyboardParameters& parameters); |
