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

Is there a simple way that I can make my application's floating tool palettes permanently active? They are all relevant to the open document, so there is no reason for them to be inactive at any point in time.

share|improve this question
What do you mean by "permanently active"? It can't be key all the time or you wouldn't be able to do anything in other windows. – rdelmar Sep 28 '12 at 4:13
If it can't actually be key, it needs to at least be drawn as if it were. – John Wells Sep 28 '12 at 4:15
Well, it can be key, but it won't be all the time if you click on another window. – rdelmar Sep 28 '12 at 4:17
What I'm really looking for, then, is for the titlebar and controls to never be drawn as inactive. – John Wells Sep 28 '12 at 4:21
I think you're trying to do something that (probably) can't be done. If you look at palettes in Apple's programs such as Numbers or Pages, the palettes only become key if you click in a text field or on the title bar, but you can still interact with any of the other controls without having to click on the window first to activate it -- in that sense it's always active even if not drawn that way. If the panel is floating and becomesKeyOnlyIfNeeded is set to YES, then you'll get a palette that looks like the Apple standard. – rdelmar Sep 28 '12 at 16:06

1 Answer

Use NSPanel for the utility window. That way the panel can also properly hide when the app is not active (it's a flag, though).

Consider making it 'Non-Activating':

If the receiver is a non-activating panel, then it becomes key only if the hit view returns YES from needsPanelToBecomeKey. This way, a non-activating panel can control whether it takes keyboard focus.

share|improve this answer
I'm already using NSPanel (note the tag). It's also non-activating. Unfortunately, the palette's titlebar can still appear inactive. – John Wells Sep 28 '12 at 9:51
Funny. Works fine for my apps (plenty of palettes..) – Jay Sep 29 '12 at 15:45

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.