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

I've been using the example from here to create a custom titlebar-less window:

Drawing a custom window on Mac OS X

I've found this is the only way i can create a titlebar-less window in Leopard, Snow Leopard and Lion, other methods don't work right either on Leopard or Lion. (If i try to invoke a titlebar-less window via normal NSWindow and IB, it won't start up in Leopard anymore)

So far this custom titlebar-less window works great everywhere, but i can't center it, only a hard fixed position in Interface Builder.

It's fairly easy to center a normal NSWindow *window implementation with [window center], but i've found nothing that works on this custom window subclass, a window that isn't created from nib via Interface Builder.

I've tried a few things from NSWindow, but nothing seems to work.

Any Ideas?

share|improve this question

2 Answers

up vote 4 down vote accepted
CGFloat xPos = NSWidth([[window screen] frame])/2 - NSWidth([window frame])/2;
CGFloat yPos = NSHeight([[window screen] frame])/2 - NSHeight([window frame])/2;
[window setFrame:NSMakeRect(xPos, yPos, NSWidth([window frame]), NSHeight([window frame])) display:YES];

This puts it at the literal center of the screen, not taking into account the space occupied by the dock and menu bar. If you want to do that, change [[window screen] frame] to [[window screen] visibleFrame].

share|improve this answer
Looking at the example xcode project, there is no 'window' definition. (window is undeclared). even if i declare 'window' to the programmatically created 'RoundWindow', the Titlebar shows again because it's now a normal window class. – devilhunter Apr 16 '11 at 12:11
Keep in mind that in order to be correct for multiple displays, you also need to do xPos += [[window screen] frame].origin.x; yPos += [[window screen] frame].origin.y; – Glyph Jul 14 '12 at 7:55
Just use [window center] – Suresh Apr 1 at 13:17

The question should probably be why [window center] does not work; but assuming that is the case use NSScreen to get the screen coordinates, do the math, and center the window directly.

share|improve this answer
Taking the top code from the 'Drawing a custom window on Mac OS X' link, where and how should NSScreen be used there? – devilhunter Apr 15 '11 at 22:09
@devilhunter: see @Wekwa - [window screen] returns an NSScreen, the one the window is currently on. If you want to place the window on a particular screen NSScreen will give you a list of all of them, the main one, etc. – CRD Apr 16 '11 at 0:29

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.