From 911999e98c3d9ae926bd62dc0f94d2ba861f5195 Mon Sep 17 00:00:00 2001 From: Haselnussbomber Date: Thu, 29 May 2025 19:38:29 +0200 Subject: [PATCH] Update AddonEventType (#2279) --- Dalamud/Game/Addon/Events/AddonEventType.cs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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. ///