mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
Update AddonEventType (#2279)
This commit is contained in:
parent
e20f132abe
commit
911999e98c
1 changed files with 12 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
namespace Dalamud.Game.Addon.Events;
|
namespace Dalamud.Game.Addon.Events;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Reimplementation of AtkEventType.
|
/// Reimplementation of AtkEventType.
|
||||||
|
|
@ -50,6 +50,17 @@ public enum AddonEventType : byte
|
||||||
/// </summary>
|
/// </summary>
|
||||||
InputReceived = 12,
|
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>
|
/// <summary>
|
||||||
/// Focus Start.
|
/// Focus Start.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue