Skip navigation.
 
mlRe: Position window title offscreen
FROM : Scott Stevenson
DATE : Sat Feb 02 08:38:00 2008

On Feb 1, 2008, at 5:27 PM, David Dunham wrote:

> I don't seem to be able to do the same in Cocoa. No matter what, the 
> title bar remains entirely visible. (I've even tried getting the 
> Carbon WindowRef and using Carbon calls to move the window -- I'm 
> not sure this works at all.)


Leopard has built-in full screen abilities:

NSView
-enterFullScreenMode:withOptions:
-exitFullScreenModeWithOptions:;
-isInFullScreenMode;

Can you use those?


If not, try this:

<http://developer.apple.com/documentation/Cocoa/Conceptual/CocoaDrawingGuide/AdvancedDrawing/chapter_9_section_4.html#//apple_ref/doc/uid/TP40003290-CH207-DontLinkElementID_8
>


    - Scott

Related mailsAuthorDate
mlPosition window title offscreen David Dunham Feb 2, 02:27
mlRe: Position window title offscreen Scott Stevenson Feb 2, 08:38
mlRe: Position window title offscreen David Dunham Feb 2, 19:33