Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like my application to receive a notification when a certain keyboard event happens (for example left alt-key depressed twice in less than 0.5 second). The application is not supposed to be the front application. How can I do this ?

share|improve this question

1 Answer

up vote 1 down vote accepted

You'll need to install an event tap for modifier key changes.

This ought to get you started:

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
    CFMachPortRef eventTap;
    CGEventMask eventMask;
    CFRunLoopSourceRef runLoopSource;

    eventMask = CGEventMaskBit(kCGEventFlagsChanged);

    eventTap = CGEventTapCreate(kCGSessionEventTap, kCGHeadInsertEventTap, 0,
                                eventMask, KeyHandler, NULL);
    if (!eventTap) {
        NSLog(@"failed to create event tap");
        exit(1);
    }

    runLoopSource = CFMachPortCreateRunLoopSource(kCFAllocatorDefault, eventTap, 0);
    CFRunLoopAddSource(CFRunLoopGetCurrent(), runLoopSource, kCFRunLoopCommonModes);    
    CGEventTapEnable(eventTap, true);
}

static CGEventFlags previousFlags = 0;

CGEventRef KeyHandler(CGEventTapProxy proxy, CGEventType type, CGEventRef event, void *refcon)
{
    if (type == kCGEventFlagsChanged) {
        CGEventFlags curAltkey = CGEventGetFlags(event)&kCGEventFlagMaskAlternate;
        if (curAltkey != previousFlags)
            NSLog(@"alt key changed");
    }

    return event;
}
share|improve this answer
@Antoine The code fragment above taps only "flags changed" events -- it has nothing to do with mouse events. And as you can see, all events are returned un-altered -- I think something else must be going on with your mouse events. – Smilin Brian Nov 20 '12 at 22:01
Sorry, I see I missed a "left-over" from some code I Copied this from -- you should remove the CFRunLoopRun(); statement. Answer updated to have this removed. – Smilin Brian Nov 21 '12 at 21:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.