up vote 1 down vote favorite
1
share [g+] share [fb]

In my cross-platform architecture, I would like to act on a context menu click (right button click) during a mouse click event. In Cocoa, can you detect that the user either Ctrl-Clicked or double-tapped on touchpad (right-click equivalent) DURING the mouseDown event? I am aware of NSView's menuForEvent but do not wish to handle it here.

link|improve this question

67% accept rate
feedback

2 Answers

up vote 5 down vote accepted

If you're using AppKit, and you want to detect a right-click in your view, you should override -[NSResponder rightMouseDown:].

link|improve this answer
Duh. I don't know how I missed that event. Thanks. – AlanKley Oct 22 '08 at 22:49
feedback

In general, -rightMouseDown: should get called automatically, but I've seen situations where it isn't -- these may be patched in Leopard.

But right now, in -mouseDown: I check whether the control key is down, using this code:

- (void)mouseDown:(NSEvent *)event;
{
    if (event.modifierFlags & NSControlKeyMask)
        return [self rightMouseDown:event];

...
}

-Wil

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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