Skip navigation.
 
mlRe: acceptsMouseMovedEvents?
FROM : Clark Cox
DATE : Wed Apr 27 22:44:48 2005

On 4/27/05, Brian O'Brien <<email_removed>> wrote:
>
> On Apr 27, 2005, at 2:32 PM, Brian O'Brien wrote:
>
> > In my subclass of NSImageView I want to receive mouse move events.
> > I defined the method acceptsMouseMovedEvents and returned true.
> > I also defined the method - (void)mouseMoved:(NSEvent *)theEvent
> > and put an NSLog message in that function. However I get no mouse
> > motion events.
> >
>
> in my init I did
> [[self window] setAcceptsMouseMovedEvents:YES];


While inside you're init method, [self window[ cannot possibly be
returning anything other than nil. That is, if the view's still being
init'ed, it can't have been placed in a superview yet.

--
Clark S. Cox III
<email_removed>
http://www.livejournal.com/users/clarkcox3/
http://homepage.mac.com/clarkcox3/

Related mailsAuthorDate
mlacceptsMouseMovedEvents? Brian O'Brien Apr 27, 22:32
mlRe: acceptsMouseMovedEvents? Brian O'Brien Apr 27, 22:39
mlRe: acceptsMouseMovedEvents? Geoff Levner Apr 27, 22:40
mlRe: acceptsMouseMovedEvents? Brian O'Brien Apr 27, 22:44
mlRe: acceptsMouseMovedEvents? Clark Cox Apr 27, 22:44
mlRe: acceptsMouseMovedEvents? Brian O'Brien Apr 27, 23:11
mlRe: acceptsMouseMovedEvents? glenn andreas Apr 27, 23:26
mlRe: acceptsMouseMovedEvents? Brian O'Brien Apr 27, 23:41