• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: NSTrackingArea + cursorUpdate: problem
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: NSTrackingArea + cursorUpdate: problem


  • Subject: Re: NSTrackingArea + cursorUpdate: problem
  • From: "Raphael Sebbe @ Google" <email@hidden>
  • Date: Sat, 1 Dec 2007 09:18:00 +0100

Works great, thanks, avoids using an additional ivar.

For 2., no extensive testing, but it doesn't seem to be supported.


Raphael


On 29 Nov 2007, at 04:52, Nygard Steve wrote:


On Nov 28, 2007, at 2:41 PM, Raphael Sebbe@Google wrote:

Hi,

I am trying to use the new cursor handling mecanism of Leopard.

My view has some regions (rects) inside of it where the cursor should be changed, otherwise should be a regular arrow.

1. From the doc, it is unclear to me if NSTrackingCursorUpdate can be used or not in that case (rect != bounds). At least what I get is the cursorUpdate: method being invoked both when entering AND leaving the area. Which means the cursor never becomes an arrow again inside that view.
How should this be handled ?

Store the cursor in the user info when you set up the tracking areas, and then you can do this:


- (void)cursorUpdate:(NSEvent *)event;
{
   NSPoint hitPoint;
   NSTrackingArea *trackingArea;

trackingArea = [event trackingArea];
hitPoint = [self convertPoint:[event locationInWindow] fromView:nil];


   if ([self mouse:hitPoint inRect:[trackingArea rect]]) {
       [[[trackingArea userInfo] objectForKey:@"cursor"] set];
   } else {
       [[NSCursor arrowCursor] set];
   }
}

2. Also the doc states that NSTrackingArea can overlap in different views. What about overlapping in the same view ?

I don't know. You could try it and see what happens.

--
Steve

_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden

_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


  • Next by Date: Subclassed NSTextField can't bind backgroundColor to NSCollectionViewItem
  • Next by thread: Subclassed NSTextField can't bind backgroundColor to NSCollectionViewItem
  • Index(es):
    • Date
    • Thread