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". https://source.winehq.org/source/include/commctrl.h

Implemented in "dlls/comctl32/imagelist.c". https://source.winehq.org/source/dlls/comctl32/imagelist.c

Debug channel "imagelist".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Apr 2024.