Update AddonEventType (#2279)

This commit is contained in:
Haselnussbomber 2025-05-29 19:38:29 +02:00 committed by GitHub
parent e20f132abe
commit 911999e98c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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