Is it possible to have focus on an NSPanel without losing focus of other background windows?

1k Views Asked by At

I have a custom NSPanel: http://cl.ly/K8SY

I have it set to NSPopUpMenuWindowLevel, the level at which I want it to stay as. An example is the spotlight menu, when you click on it any other focus in the windows in the background remains yet you can still type into the search field.

I open it with:

[window orderFront:nil]

but this doesn't focus on the window as well as the background.

Is it possible to achieve this? If so, how?

1

There are 1 best solutions below

3
On

You need to use the -[NSWindow makeKeyAndOrderFront:] call instead.

NOTE: keyboard focus can only be directed at one view in one window. Cocoa's notion of mainWindow and keyWindow can be different windows, but its only the first responder within the keyWindow that accepts keyboard input.