mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-07 08:24:37 +01:00
Update AddonEventType
This commit is contained in:
parent
27414d33dd
commit
9b9a66bdd2
1 changed files with 55 additions and 10 deletions
|
|
@ -61,6 +61,11 @@ public enum AddonEventType : byte
|
|||
/// </summary>
|
||||
InputBaseInputReceived = 15,
|
||||
|
||||
/// <summary>
|
||||
/// Fired at the very beginning of AtkInputManager.HandleInput on AtkStage.ViewportEventManager. Used in LovmMiniMap.
|
||||
/// </summary>
|
||||
RawInputData = 16,
|
||||
|
||||
/// <summary>
|
||||
/// Focus Start.
|
||||
/// </summary>
|
||||
|
|
@ -107,7 +112,12 @@ public enum AddonEventType : byte
|
|||
SliderReleased = 30,
|
||||
|
||||
/// <summary>
|
||||
/// AtkComponentList RollOver.
|
||||
/// AtkComponentList Button Press.
|
||||
/// </summary>
|
||||
ListButtonPress = 31,
|
||||
|
||||
/// <summary>
|
||||
/// AtkComponentList Roll Over.
|
||||
/// </summary>
|
||||
ListItemRollOver = 33,
|
||||
|
||||
|
|
@ -126,11 +136,31 @@ public enum AddonEventType : byte
|
|||
/// </summary>
|
||||
ListItemDoubleClick = 36,
|
||||
|
||||
/// <summary>
|
||||
/// AtkComponentList Highlight.
|
||||
/// </summary>
|
||||
ListItemHighlight = 37,
|
||||
|
||||
/// <summary>
|
||||
/// AtkComponentList Select.
|
||||
/// </summary>
|
||||
ListItemSelect = 38,
|
||||
|
||||
/// <summary>
|
||||
/// AtkComponentList Pad Drag Drop Begin.
|
||||
/// </summary>
|
||||
ListItemPadDragDropBegin = 40,
|
||||
|
||||
/// <summary>
|
||||
/// AtkComponentList Pad Drag Drop End.
|
||||
/// </summary>
|
||||
ListItemPadDragDropEnd = 41,
|
||||
|
||||
/// <summary>
|
||||
/// AtkComponentList Pad Drag Drop Insert.
|
||||
/// </summary>
|
||||
ListItemPadDragDropInsert = 42,
|
||||
|
||||
/// <summary>
|
||||
/// AtkComponentDragDrop Begin.
|
||||
/// Sent on MouseDown over a draggable icon (will NOT send for a locked icon).
|
||||
|
|
@ -142,12 +172,22 @@ public enum AddonEventType : byte
|
|||
/// </summary>
|
||||
DragDropEnd = 51,
|
||||
|
||||
/// <summary>
|
||||
/// AtkComponentDragDrop Insert Attempt.
|
||||
/// </summary>
|
||||
DragDropInsertAttempt = 52,
|
||||
|
||||
/// <summary>
|
||||
/// AtkComponentDragDrop Insert.
|
||||
/// Sent when dropping an icon into a hotbar/inventory slot or similar.
|
||||
/// </summary>
|
||||
DragDropInsert = 53,
|
||||
|
||||
/// <summary>
|
||||
/// AtkComponentDragDrop Can Accept Check.
|
||||
/// </summary>
|
||||
DragDropCanAcceptCheck = 54,
|
||||
|
||||
/// <summary>
|
||||
/// AtkComponentDragDrop Roll Over.
|
||||
/// </summary>
|
||||
|
|
@ -165,23 +205,18 @@ public enum AddonEventType : byte
|
|||
DragDropDiscard = 57,
|
||||
|
||||
/// <summary>
|
||||
/// Drag Drop Unknown.
|
||||
/// AtkComponentDragDrop Click.
|
||||
/// Sent on MouseUp if the cursor has not moved since DragDropBegin, OR on MouseDown over a locked icon.
|
||||
/// </summary>
|
||||
[Obsolete("Use DragDropDiscard", true)]
|
||||
DragDropUnk54 = 54,
|
||||
DragDropClick = 58,
|
||||
|
||||
/// <summary>
|
||||
/// AtkComponentDragDrop Cancel.
|
||||
/// Sent on MouseUp if the cursor has not moved since DragDropBegin, OR on MouseDown over a locked icon.
|
||||
/// </summary>
|
||||
[Obsolete("Renamed to DragDropClick")]
|
||||
DragDropCancel = 58,
|
||||
|
||||
/// <summary>
|
||||
/// Drag Drop Unknown.
|
||||
/// </summary>
|
||||
[Obsolete("Use DragDropCancel", true)]
|
||||
DragDropUnk55 = 55,
|
||||
|
||||
/// <summary>
|
||||
/// AtkComponentIconText Roll Over.
|
||||
/// </summary>
|
||||
|
|
@ -217,6 +252,11 @@ public enum AddonEventType : byte
|
|||
/// </summary>
|
||||
TimerEnd = 65,
|
||||
|
||||
/// <summary>
|
||||
/// AtkTimer Start.
|
||||
/// </summary>
|
||||
TimerStart = 66,
|
||||
|
||||
/// <summary>
|
||||
/// AtkSimpleTween Progress.
|
||||
/// </summary>
|
||||
|
|
@ -247,6 +287,11 @@ public enum AddonEventType : byte
|
|||
/// </summary>
|
||||
WindowChangeScale = 72,
|
||||
|
||||
/// <summary>
|
||||
/// AtkTimeline Active Label Changed.
|
||||
/// </summary>
|
||||
TimelineActiveLabelChanged = 75,
|
||||
|
||||
/// <summary>
|
||||
/// AtkTextNode Link Mouse Click.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue