mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Update AddonEventType (#1516)
This commit is contained in:
parent
4e1e9a0fce
commit
9a8f370975
1 changed files with 28 additions and 2 deletions
|
|
@ -80,6 +80,18 @@ public enum AddonEventType : byte
|
||||||
/// </summary>
|
/// </summary>
|
||||||
ListItemToggle = 35,
|
ListItemToggle = 35,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Drag Drop Begin.
|
||||||
|
/// Sent on MouseDown over a draggable icon (will NOT send for a locked icon).
|
||||||
|
/// </summary>
|
||||||
|
DragDropBegin = 47,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Drag Drop Insert.
|
||||||
|
/// Sent when dropping an icon into a hotbar/inventory slot or similar.
|
||||||
|
/// </summary>
|
||||||
|
DragDropInsert = 50,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Drag Drop Roll Over.
|
/// Drag Drop Roll Over.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
@ -91,13 +103,27 @@ public enum AddonEventType : byte
|
||||||
DragDropRollOut = 53,
|
DragDropRollOut = 53,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Drag Drop Unknown.
|
/// Drag Drop Discard.
|
||||||
|
/// Sent when dropping an icon into empty screenspace, eg to remove an action from a hotBar.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
DragDropUnk54 = 54,
|
DragDropDiscard = 54,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Drag Drop Unknown.
|
/// Drag Drop Unknown.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[Obsolete("Use DragDropDiscard")]
|
||||||
|
DragDropUnk54 = 54,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Drag Drop Cancel.
|
||||||
|
/// Sent on MouseUp if the cursor has not moved since DragDropBegin, OR on MouseDown over a locked icon.
|
||||||
|
/// </summary>
|
||||||
|
DragDropCancel = 55,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Drag Drop Unknown.
|
||||||
|
/// </summary>
|
||||||
|
[Obsolete("Use DragDropCancel")]
|
||||||
DragDropUnk55 = 55,
|
DragDropUnk55 = 55,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue