Yes. NSWindow inherits from NSResponder , which has convenient methods such as -rightMouseDown:
change
In fact, the best way to do this would be to use a custom NSView subclass for the contentView window and override -menuForEvent: (the method on NSView ) to return your right menu with the NSEvent passed - a right-click event.
source share