Is it possible to add a HUD overlay for a Cocoa application that runs in full screen mode?
I switch into full screen mode as follows.
// An NSView.
[self enterFullScreenMode:m_screen withOptions:nil];
The HUD overlay is of type NSPanel
and a member of the above view. To display the HUD panel I run the following lines of code.
[m_hudPanel setFloatingPanel:YES];
[m_hudPanel orderFront:self];
[m_hudPanel orderWindow:NSWindowAbove relativeTo:[[self window] windowNumber]];
[m_hudPanel makeKeyAndOrderFront:self];
[m_hudPanel makeFirstResponder:self];
Though, the panel does not appear until I leave the full screen mode.