22

我正在尝试为辅助技术目的创建一个 OS X 键盘挂钩(即不要担心,不是键盘记录器)。

当用户按下一个键时,我想阻止真正的按键并发送一个假按键(我选择的字符)。

我有以下代码:

- (void) hookTheKeyboard {
    CGEventMask keyboardMask = CGEventMaskBit(kCGEventKeyDown);
    id eventHandler = [NSEvent addGlobalMonitorForEventsMatchingMask:keyboardMask handler:^(NSEvent *keyboardEvent) {
        NSLog(@"keyDown: %c", [[keyboardEvent characters] characterAtIndex:0]);
        //Want to: Stop the keyboard input
        //Want to: Send another key input instead
    }];
}

任何帮助实现这些目标?基本上修改 NSEvent "keyboardEvent" 以发送不同的字符。谢谢。

4

3 回答 3

54

您无法使用NSEventAPI 执行此操作,但您可以使用CGEventTap. 您可以创建一个活动事件点击并注册一个回调,该回调接收CGEventRef并可以修改它(如果需要)并返回它以修改实际的事件流。


编辑

这是一个简单的程序,它在运行时将每个“b”键击替换为“v”:

#import <Cocoa/Cocoa.h>

CGEventRef myCGEventCallback(CGEventTapProxy proxy, CGEventType type, CGEventRef event, void *refcon) {
  //0x0b is the virtual keycode for "b"
  //0x09 is the virtual keycode for "v"
  if (CGEventGetIntegerValueField(event, kCGKeyboardEventKeycode) == 0x0B) {
    CGEventSetIntegerValueField(event, kCGKeyboardEventKeycode, 0x09);
  }

  return event;
}

int main(int argc, char *argv[]) {
  NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  CFRunLoopSourceRef runLoopSource;

  CFMachPortRef eventTap = CGEventTapCreate(kCGHIDEventTap, kCGHeadInsertEventTap, kCGEventTapOptionDefault, kCGEventMaskForAllEvents, myCGEventCallback, NULL);

  if (!eventTap) {
    NSLog(@"Couldn't create event tap!");
    exit(1);
  }

  runLoopSource = CFMachPortCreateRunLoopSource(kCFAllocatorDefault, eventTap, 0);

  CFRunLoopAddSource(CFRunLoopGetCurrent(), runLoopSource, kCFRunLoopCommonModes);

  CGEventTapEnable(eventTap, true);

  CFRunLoopRun();

  CFRelease(eventTap);
  CFRelease(runLoopSource);
  [pool release];

  exit(0);
}

(有趣的故事:当我在编辑这篇文章时,我一直在尝试写“替换每个 'b' 键击”,但它一直显示为“替换每个 'v' 键击”。我很困惑。然后我记得我还没有停止应用程序。)

于 2011-04-26T04:21:32.527 回答
5

我碰巧遇到了这个答案,需要做同样的事情,但只针对我自己的应用程序中的事件而不是 global 。对于这个更简单的问题,有一个更简单的解决方案,我在这里指出它对其他人有用:

  • 我通过为 sendEvent: 创建一个覆盖来拦截窗口中的事件。然后我检查关键事件(KeyUp 或 KeyDown),然后使用几乎所有来自前一个事件的数据创建一个新事件,然后用这个事件调用 NSWindow 超类。

这似乎对我来说非常有效,我什至不必修改 keyCode 部分 - 但也许这可能是一个问题......

斯威夫特的例子:

class KeyInterceptorWindow : NSWindow {

    override func sendEvent(theEvent: NSEvent) {

        if theEvent.type == .KeyDown || theEvent.type == .KeyUp {
            println(theEvent.description)
            let newEvent = NSEvent.keyEventWithType(theEvent.type, 
                location: theEvent.locationInWindow, 
                modifierFlags: theEvent.modifierFlags, 
                timestamp: theEvent.timestamp, 
                windowNumber: theEvent.windowNumber, 
                context: theEvent.context, 
                characters: "H", 
                charactersIgnoringModifiers: theEvent.charactersIgnoringModifiers!, 
                isARepeat: theEvent.ARepeat, 
                keyCode: theEvent.keyCode)
            super.sendEvent(newEvent!)
        } else {
            super.sendEvent(theEvent)
        }

    }

}
于 2015-04-28T12:47:46.597 回答
2

Swift 4+ 版本的james_alvarez 的回答

class KeyInterceptorWindow: NSWindow {
    override func sendEvent(_ event: NSEvent) {
        if [.keyDown, .keyUp].contains(event.type) {
            let newEvent = NSEvent.keyEvent(with: event.type,
                                            location: event.locationInWindow,
                                            modifierFlags: event.modifierFlags,
                                            timestamp: event.timestamp,
                                            windowNumber: event.windowNumber,
                                            context: nil,
                                            characters: "H",
                                            charactersIgnoringModifiers: event.charactersIgnoringModifiers ?? "",
                                            isARepeat: event.isARepeat,
                                            keyCode: event.keyCode)

            if let newEvent = newEvent {
                super.sendEvent(newEvent)
            }
        } else {
            super.sendEvent(event)
        }
    }
}
于 2019-04-04T18:45:59.683 回答