buggins / dlangui

Cross Platform GUI for D programming language
Boost Software License 1.0
805 stars 120 forks source link

How to change cursor type? #664

Closed bagomot closed 1 year ago

bagomot commented 1 year ago

I need to change the cursor type to Hand when hovering over my widget. I didn't find how to set the cursor type. Please advise how to do this if possible.

FreeSlave commented 1 year ago

Override getCursorType function. You can look at code, e.g. editor widget.

bagomot commented 1 year ago

Thank you!