Improved analog support for scrolling, and allow speed adjustments.
[enjoyable.git] / NSView+FirstResponder.h
1 #import <Cocoa/Cocoa.h>
2
3 @interface NSView (FirstResponder)
4
5 - (BOOL)resignIfFirstResponder;
6 // Resign first responder status if this view is the active first
7 // responder in its window. Returns whether first responder status
8 // was resigned; YES if it was and NO if refused or the view was
9 // not the first responder.
10
11 @end