mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-04 23:39:02 +00:00
86 lines
1.9 KiB
Objective-C
86 lines
1.9 KiB
Objective-C
/*
|
|
Copyright 2014 Hardcoded Software (http://www.hardcoded.net)
|
|
|
|
This software is licensed under the "BSD" License as described in the "LICENSE" file,
|
|
which should be included with this package. The terms are also available at
|
|
http://www.hardcoded.net/licenses/bsd_license
|
|
*/
|
|
|
|
#import "NSEventAdditions.h"
|
|
|
|
@implementation NSEvent(NSEventAdditions)
|
|
|
|
- (unichar)firstCharacter
|
|
{
|
|
NSString *characters = [self characters];
|
|
if ([characters length] == 0)
|
|
{
|
|
return '\0';
|
|
}
|
|
return [characters characterAtIndex:0];
|
|
}
|
|
|
|
- (NSUInteger)flags
|
|
{
|
|
// get flags and strip the lower 16 (device dependant) bits
|
|
// See modifierFlags's doc for details
|
|
return [self modifierFlags] & NSDeviceIndependentModifierFlagsMask;
|
|
}
|
|
|
|
- (NSUInteger)modifierKeysFlags
|
|
{
|
|
// This is modifierFlags with only Command, Opt, Ctrl and Shift, without the rest of the flags
|
|
// to pollute.
|
|
return [self flags] & (NSShiftKeyMask | NSControlKeyMask | NSAlternateKeyMask | NSCommandKeyMask);
|
|
}
|
|
|
|
- (BOOL)isDeleteOrBackspace
|
|
{
|
|
unichar firstChar = [self firstCharacter];
|
|
return firstChar == NSDeleteFunctionKey || firstChar == NSDeleteCharFunctionKey ||
|
|
firstChar == NSDeleteCharacter || firstChar == NSBackspaceCharacter;
|
|
}
|
|
|
|
- (BOOL)isReturnOrEnter
|
|
{
|
|
unichar firstChar = [self firstCharacter];
|
|
return firstChar == NSCarriageReturnCharacter || firstChar == NSEnterCharacter;
|
|
}
|
|
|
|
- (BOOL)isTab
|
|
{
|
|
return [self firstCharacter] == NSTabCharacter;
|
|
}
|
|
|
|
- (BOOL)isBackTab
|
|
{
|
|
return [self firstCharacter] == NSBackTabCharacter;
|
|
}
|
|
|
|
- (BOOL)isSpace
|
|
{
|
|
return ([self firstCharacter] == 0x20) && (![self flags]);
|
|
}
|
|
|
|
- (BOOL)isUp
|
|
{
|
|
return [self firstCharacter] == NSUpArrowFunctionKey;
|
|
}
|
|
|
|
- (BOOL)isDown
|
|
{
|
|
return [self firstCharacter] == NSDownArrowFunctionKey;
|
|
}
|
|
|
|
- (BOOL)isLeft
|
|
{
|
|
return [self firstCharacter] == NSLeftArrowFunctionKey;
|
|
}
|
|
|
|
- (BOOL)isRight
|
|
{
|
|
return [self firstCharacter] == NSRightArrowFunctionKey;
|
|
}
|
|
|
|
@end
|