Re: mouseDragged: with NSTableView

2009-04-20 Thread Ben Lachman
Ok. Found a work around--it's a big pain in the butt though. What you have to do is override the tableview's mouseDown, install an event tap on drag events for the current process as a listener, then process drag events in the tap's callback and send them off to the correct view as needed.

Re: mouseDragged: with NSTableView

2009-04-17 Thread Corbin Dunn
On Apr 17, 2009, at 1:56 PM, Ben Lachman wrote: Does anyone know of a way to get a mouseDragged event for a tableview? I've sub-classed NSTableView and it's enclosing scrollview to no effect (doesn't even hit -mouseDragged:). My guess is that it is being eaten by the clip view, but there

mouseDragged: with NSTableView

2009-04-17 Thread Ben Lachman
Does anyone know of a way to get a mouseDragged event for a tableview? I've sub-classed NSTableView and it's enclosing scrollview to no effect (doesn't even hit -mouseDragged:). My guess is that it is being eaten by the clip view, but there isn't an easy way to sub- class that from what I