diff --git a/Dalamud/Game/Addon/Events/AddonEventType.cs b/Dalamud/Game/Addon/Events/AddonEventType.cs index ec46c368b..cd04152ca 100644 --- a/Dalamud/Game/Addon/Events/AddonEventType.cs +++ b/Dalamud/Game/Addon/Events/AddonEventType.cs @@ -1,4 +1,4 @@ -namespace Dalamud.Game.Addon.Events; +namespace Dalamud.Game.Addon.Events; /// /// Reimplementation of AtkEventType. @@ -50,6 +50,17 @@ public enum AddonEventType : byte /// InputReceived = 12, + /// + /// Input Navigation (LEFT, RIGHT, UP, DOWN, TAB_NEXT, TAB_PREV, TAB_BOTH_NEXT, TAB_BOTH_PREV, PAGEUP, PAGEDOWN). + /// + InputNavigation = 13, + + /// + /// InputBase Input Received (AtkComponentTextInput and AtkComponentNumericInput).
+ /// For example, this is fired for moving the text cursor, deletion of a character and inserting a new line. + ///
+ InputBaseInputReceived = 15, + /// /// Focus Start. ///