How do I disable all mouse events to a specific NSView(and all its subviews)
For eg: In following image,
I have a scrollView and a border view(say MyBorderView) over it
The functionality I want to acheive is to disable all mouse events to scroll view when button is pressed.
My fix to it is to override mouseDown and rightMouseDown event of NSView. This seems to work fine but fails for scroll.
In simple words, I want to achieve some thing like [_scrollView disableAllMouseEvents]
