diff options
author | german77 <juangerman-13@hotmail.com> | 2021-11-21 21:12:01 +0100 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2021-11-25 03:30:28 +0100 |
commit | 746c85b56011b87afb57e37b75953435389fc810 (patch) | |
tree | 32d31216be1450b5fbe9897e15829ff9bc1f1e7c /src/common | |
parent | input_common: Fix SDL controller with inverted axis (diff) | |
download | yuzu-746c85b56011b87afb57e37b75953435389fc810.tar yuzu-746c85b56011b87afb57e37b75953435389fc810.tar.gz yuzu-746c85b56011b87afb57e37b75953435389fc810.tar.bz2 yuzu-746c85b56011b87afb57e37b75953435389fc810.tar.lz yuzu-746c85b56011b87afb57e37b75953435389fc810.tar.xz yuzu-746c85b56011b87afb57e37b75953435389fc810.tar.zst yuzu-746c85b56011b87afb57e37b75953435389fc810.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/input.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/common/input.h b/src/common/input.h index d997853c6..cc0cbd9b8 100644 --- a/src/common/input.h +++ b/src/common/input.h @@ -175,6 +175,28 @@ struct LedStatus { bool led_4{}; }; +// List of buttons to be passed to Qt that can be translated +enum class ButtonNames { + Undefined, + Invalid, + // This will display the engine name instead of the button name + Engine, + // This will display the button by value instead of the button name + Value, + ButtonLeft, + ButtonRight, + ButtonDown, + ButtonUp, + TriggerZ, + TriggerR, + TriggerL, + ButtonA, + ButtonB, + ButtonX, + ButtonY, + ButtonStart, +}; + // Callback data consisting of an input type and the equivalent data status struct CallbackStatus { InputType type{InputType::None}; |