ImageList_SetDragCursorImage (COMCTL32.@)
BOOL ImageList_SetDragCursorImage ( HIMAGELIST himlDrag, INT iDrag, INT dxHotspot, INT dyHotspot )
Combines the specified image with the current drag image.
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. |
Success: TRUE
Failure: FALSE.
- 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.
Declared in "include/commctrl.h". gitlab.winehq.org/wine/wine/blob/master/include/commctrl.h
Implemented in "dlls/comctl32/imagelist.c". gitlab.winehq.org/wine/wine/blob/master/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 Nov 2024.