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

Is it possible to prevent a window in Cocoa to become activated/focused? I'm working on Qt but need to implement their custom macEvent function giving me a EventRef structure.. is there any way to use this to prevent a window to become active by certain circumstances?

thanks! Alex

share|improve this question

1 Answer

up vote 1 down vote accepted

in cocoa you can override NSWindow method - (BOOL)canBecomeKeyWindow

it is invoked every time the window should become key.

- (BOOL)canBecomeKeyWindow {
    return NO;
}
share|improve this answer

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.