UFO: Alien Invasion
|
#include "../../shared/ufotypes.h"
Go to the source code of this file.
Enumerations | |
enum | uiDNDType_t { DND_NOTHING, DND_SOMETHING, DND_ITEM } |
Functions | |
void | UI_DrawDragAndDrop (int mousePosX, int mousePosY) |
Draw to dragging object and catch mouse move event. More... | |
void | UI_DNDDragItem (uiNode_t *node, const Item *item) |
Start to drag an item. More... | |
void | UI_DNDDrop (void) |
Drop the object at the current position. More... | |
void | UI_DNDAbort (void) |
Drop the object at the current position. More... | |
bool | UI_DNDIsDragging (void) |
Return true if we are dragging something. More... | |
bool | UI_DNDIsTargetNode (uiNode_t *node) |
Return true if the requested node is the current target of the DND. More... | |
bool | UI_DNDIsSourceNode (uiNode_t *node) |
Return true if the requested node is the source of the DND. More... | |
uiNode_t * | UI_DNDGetTargetNode (void) |
Return target of the DND. More... | |
uiNode_t * | UI_DNDGetSourceNode (void) |
Return source of the DND. More... | |
int | UI_DNDGetType (void) |
Return the current type of the dragging object, else DND_NOTHING. More... | |
Item * | UI_DNDGetItem (void) |
enum uiDNDType_t |
Enumerator | |
---|---|
DND_NOTHING | |
DND_SOMETHING |
Untyped object |
DND_ITEM |
Definition at line 32 of file ui_dragndrop.h.
Drop the object at the current position.
Definition at line 147 of file ui_dragndrop.cpp.
References DND_NOTHING, nodeAcceptDND, objectType, UI_DNDCleanup(), UI_DNDIsDragging(), UI_InvalidateMouse(), UI_Node_DndFinished(), and UI_Node_DndLeave().
Referenced by uiBaseInventoryNode::onMouseDown(), uiContainerNode::onMouseDown(), UI_DNDDrop(), UI_KeyPressed(), and UI_ReleaseInput().
Start to drag an item.
Definition at line 124 of file ui_dragndrop.cpp.
References DND_ITEM, objectType, UI_DNDDrag(), and UI_DNDIsDragging().
Referenced by uiBaseInventoryNode::onCapturedMouseMove(), and uiContainerNode::onCapturedMouseMove().
Drop the object at the current position.
Definition at line 167 of file ui_dragndrop.cpp.
References DND_NOTHING, mousePosX, mousePosY, objectType, positionAcceptDND, UI_DNDAbort(), UI_DNDCleanup(), UI_DNDIsDragging(), UI_InvalidateMouse(), UI_Node_DndDrop(), UI_Node_DndFinished(), and UI_PlaySound().
Referenced by uiBaseInventoryNode::onMouseUp(), and uiContainerNode::onMouseUp().
Definition at line 190 of file ui_dragndrop.cpp.
References DND_ITEM, draggingItem, and objectType.
Referenced by uiBaseInventoryNode::draw(), uiContainerNode::draw(), uiContainerNode::onDndFinished(), uiContainerNode::onDndMove(), UI_ContainerNodeDrawDropPreview(), and UI_ContainerNodeDrawFreeSpace().
Return source of the DND.
Definition at line 97 of file ui_dragndrop.cpp.
References sourceNode, and UI_DNDIsDragging().
Referenced by uiBaseInventoryNode::onDndEnter(), and uiContainerNode::onDndEnter().
Return target of the DND.
Definition at line 88 of file ui_dragndrop.cpp.
References targetNode, and UI_DNDIsDragging().
Referenced by uiContainerNode::onDndFinished().
Return the current type of the dragging object, else DND_NOTHING.
Definition at line 80 of file ui_dragndrop.cpp.
References objectType.
Referenced by uiBaseInventoryNode::draw(), uiContainerNode::draw(), uiBaseInventoryNode::onDndEnter(), and uiContainerNode::onDndEnter().
bool UI_DNDIsDragging | ( | void | ) |
Return true if we are dragging something.
Definition at line 52 of file ui_dragndrop.cpp.
References DND_NOTHING, and objectType.
Referenced by uiBaseInventoryNode::draw(), uiContainerNode::draw(), uiBaseInventoryNode::onMouseDown(), uiContainerNode::onMouseDown(), uiBaseInventoryNode::onMouseUp(), uiContainerNode::onMouseUp(), SCR_DrawCursor(), UI_ContainerNodeDrawFreeSpace(), UI_DNDAbort(), UI_DNDDrag(), UI_DNDDragItem(), UI_DNDDrop(), UI_DNDGetSourceNode(), UI_DNDGetTargetNode(), UI_DNDIsSourceNode(), UI_DNDIsTargetNode(), UI_Draw(), UI_KeyPressed(), UI_MouseMove(), and UI_ReleaseInput().
bool UI_DNDIsSourceNode | ( | uiNode_t * | node | ) |
Return true if the requested node is the source of the DND.
Definition at line 70 of file ui_dragndrop.cpp.
References UI_DNDIsDragging().
Referenced by UI_ContainerNodeDrawFreeSpace().
bool UI_DNDIsTargetNode | ( | uiNode_t * | node | ) |
Return true if the requested node is the current target of the DND.
Definition at line 60 of file ui_dragndrop.cpp.
References UI_DNDIsDragging().
Referenced by uiContainerNode::draw().
Draw to dragging object and catch mouse move event.
Definition at line 230 of file ui_dragndrop.cpp.
References DND_ITEM, mousePosX, mousePosY, objectType, oldMousePosX, oldMousePosY, positionAcceptDND, scale, UI_DNDMouseMove(), UI_DrawItem(), and VectorSet.
Referenced by UI_DrawCursor().