mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 12:52:21 +00:00
52 lines
1.2 KiB
Objective-C
52 lines
1.2 KiB
Objective-C
//
|
|
// MPAutotypeSpecialKey.m
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 24/11/13.
|
|
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPAutotypeKeyPress.h"
|
|
#import "MPKeyMapper.h"
|
|
|
|
@implementation MPAutotypeKeyPress
|
|
|
|
- (instancetype)initWithModifierMask:(CGEventFlags)modiferMask keyCode:(CGKeyCode)code {
|
|
self = [super init];
|
|
if(self) {
|
|
_modifierMask = modiferMask;
|
|
_keyCode = code;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (instancetype)initWithModifierMask:(CGEventFlags)modiferMask character:(NSString *)character {
|
|
CGKeyCode mappedKey = [MPKeyMapper keyCodeForCharacter:character];
|
|
if(mappedKey == kMPUnknownKeyCode) {
|
|
self = nil;
|
|
}
|
|
else {
|
|
self = [self initWithModifierMask:modiferMask keyCode:mappedKey];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (void)execute {
|
|
if(![self isValid]) {
|
|
return; // no valid command. Stop.
|
|
}
|
|
CGKeyCode mappedKey = [self _transformKeyCode];
|
|
[self sendPressKey:mappedKey modifierFlags:self.modifierMask];
|
|
}
|
|
|
|
- (BOOL)isValid {
|
|
return ([self _transformKeyCode] != kMPUnknownKeyCode);
|
|
}
|
|
|
|
- (CGKeyCode)_transformKeyCode {
|
|
NSString *key = [MPKeyMapper stringForKey:self.keyCode];
|
|
return [MPKeyMapper keyCodeForCharacter:key];
|
|
}
|
|
|
|
@end
|