How to set the cursor in a custom NSView?

1.8k Views Asked by At

I have a custom view which needs to set a cursor depending on where the mouse is. I use [NSCursor set] to set the cursor in a mouseMoved: handler. This works on OS X 10.5, but most of the time not on 10.6. Sometimes the cursor changes, but it usually doesn't.

The problem is I have to set the cursor in response to a mouseMoved: event, I can't register cursor rects or use a NSTrackingArea and the updateCursor: event. I am working on a Cocoa frontend for the NetSurf browser. The engine expects mouse movement events from the frontend. If the cursor is over a link or something that requires a different cursor the engine calls a function from the frontend to set the new cursor.

Any ideas of how to make this work on Snow Leopard?

2

There are 2 best solutions below

0
On

Simply use NSCursor object with push and pop in mouseEnter and mouseExit

0
On

Normally, you should use CursorRects to avoid other views changing your cursor. But since you can't do that, you can prevent their interference by disabling CursorRects at the window level, on mouse entering your view. On mouse exiting your view, enable back cursorrects for the window.