Skip navigation.
 
mlRe: Fullscreen Window
FROM : Andrew James
DATE : Tue Apr 03 12:51:49 2007

Hi,

I was just getting back into the programming and just noticed that i 
can enter text into the text box now, any ideas?

NSRect screenRect = [[NSScreen mainScreen] frame];
   window = [[NSWindow alloc] initWithContentRect:screenRect
                                        styleMask:NSBorderlessWindowMask
                                         backing:NSBackingStoreBuffered
                                            defer:NO
                                           screen:[NSScreen mainScreen]];
   
   

   
   
   //[UnlockPanel setFrame:screenRect display:YES];
   [window setContentView:UnlockView];
   [window makeKeyAndOrderFront:nil];
   
   
   if(CGDisplayCapture(kCGDirectMainDisplay) != kCGErrorSuccess) {
       /* Handle errors here */
   }
   int windowLevel = CGShieldingWindowLevel();
   [window setLevel:windowLevel];

Related mailsAuthorDate
mlFullscreen Window Andrew James Mar 29, 11:19
mlRe: Fullscreen Window Fabio Mancinelli Mar 29, 11:48
mlRe: Fullscreen Window Andrew Farmer Mar 29, 12:09
mlRe: Fullscreen Window Michael Watson Mar 29, 16:44
mlRe: Fullscreen Window Ricky Sharp Mar 30, 23:21
mlRe: Fullscreen Window Andrew James Mar 31, 00:35
mlRe: Fullscreen Window Murat Konar Mar 31, 00:42
mlRe: Fullscreen Window Ricky Sharp Mar 31, 02:54
mlRe: Fullscreen Window Andrew James Apr 3, 12:51