Re: NSSplitView-like cursor "grabbing"

2012-03-26 Thread Markus Spoettl
On 3/26/12 7:40 PM, Kevin Perry wrote: It overrides -[NSView hitTest:] to return self for clicks inside the draggable region. Fantastic, thanks a lot! Works great! Regards Markus -- __ Markus Spoettl ___ Coco

Re: NSSplitView-like cursor "grabbing"

2012-03-26 Thread Kevin Perry
It overrides -[NSView hitTest:] to return self for clicks inside the draggable region. -KP On Mar 26, 2012, at 10:30 AM, Markus Spoettl wrote: > Hello all, > > does anyone know how to grab the cursor like NSSplitView does? It somehow > manages to know that the cursor is near a divider when

NSSplitView-like cursor "grabbing"

2012-03-26 Thread Markus Spoettl
Hello all, does anyone know how to grab the cursor like NSSplitView does? It somehow manages to know that the cursor is near a divider when it actually is within a sub-view, it also "captures" clicks in those cases, even though they should strictly be sent to the sub-view the cursor is over.