ResKnife/Cocoa/Categories/NSEvent-ModifierKeys.h

11 lines
198 B
C
Raw Normal View History

2002-04-27 18:17:47 +00:00
#import <Carbon/Carbon.h>
#import <AppKit/AppKit.h>
@interface NSEvent (ModifierKeys)
+ (BOOL) isControlKeyDown;
+ (BOOL) isOptionKeyDown;
+ (BOOL) isCommandKeyDown;
+ (BOOL) isShiftKeyDown;
@end