Scroll to navigation

ImageList_SetDragCursorImage(3w) Wine API ImageList_SetDragCursorImage(3w)

NAME

ImageList_SetDragCursorImage (COMCTL32.@)

SYNOPSIS

BOOL ImageList_SetDragCursorImage
(
HIMAGELIST himlDrag,
INT iDrag,
INT dxHotspot,
INT dyHotspot
)
 

DESCRIPTION

Combines the specified image with the current drag image.
 

PARAMS

himlDrag [In] handle to drag image list.
iDrag [In] drag image index.
dxHotspot [In] X position of the hot spot.
dyHotspot [In] Y position of the hot spot.
 

RETURNS

Success: TRUE
Failure: FALSE.
 

NOTES

- The names dxHotspot, dyHotspot are misleading because they have nothing to do with a hotspot but are only the offset of the origin of the new image relative to the origin of the old image.
- When this function is called and the drag image is visible, a short flickering occurs but this matches the Win9x behavior. It is possible to fix the flickering using code like in ImageList_DragMove.
 

IMPLEMENTATION

Declared in "commctrl.h".
Implemented in "dlls/comctl32/imagelist.c".
Debug channel "imagelist".
Oct 2012 Wine API