I have 2 subclasses of NSView that are subviews to a common superview. They dont overlap and they both intercept mousedragged calls. When I drag from one of the subclasses to the other the mousedragged function will be called until I release the mouse button even when I drag all over the screen. I though the default behavior was for the mousedragged function to be called only when the mouse was over the bounds of the receiver. Iam also using NSTrackingArea for mouse enter, exit and move events, but from what I've been reading does not involve drag events

Thank you for your time, Jose.

link|improve this question

71% accept rate
That is the normal behaviour. What is your question? – Tom Dalling Jan 3 '11 at 6:17
Well, I was getting a different behavior before, and unfortunately I don't know what did I changed. The mousedragged event was jumping to the other subclass view immediately when entering it's bounds. And that's what I need. – the Reverend Jan 3 '11 at 6:26
feedback

1 Answer

up vote 0 down vote accepted

You could subclass the NSWindow and override sendEvent:. That way, you can intercept the NSLeftMouseDragged events and dispatch them in whatever way you wish.

link|improve this answer
Thanks Tom, this sounds better.. What I ended up doing was to call [super mousedragged] on both subviews, and then the superview will call a [subview distributed_mouseDragged] depending on the location. – the Reverend Jan 6 '11 at 15:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.