vote up 0 vote down star

If I wanted to write my own window manager for OS X (please dont respond with "whats the point"??), what APIs should I be looking at?

flag
To replace the OS X window server or to run in the X Windows environment? – Jason Coco Apr 28 at 23:14
Well this is where the original problem comes from.. I thought X couldnt display cocoa apps ? – osx_luser Apr 28 at 23:16
You cannot run Cocoa apps in an X window server. It sounds like you want to replace the OS X WindowServer process. – Barry Wark Apr 29 at 0:42

2 Answers

vote up 1 vote down

There is no such thing as a "window manager" in OS X, and no public interface to implement one. The functions that an X11 window manager would perform are split between the GUI toolkit (Carbon/Cocoa), the Dock application and the window server.

Your only real choice if you want to change OS X's windowing behavior is to patch individual applications, the Dock (which has a privileged connection to the window server) and/or the window server. It'd involve a great deal of reverse engineering and almost certainly break in 10.6, but it's certainly possible.

link|flag
Clearly this is possible, given the existence of commercial tools like irradiatedsoftware.com/sizeup. What are the window server APIs like? – Glyph Oct 18 at 21:09
SizeUp works by using a combination of accessibility and scripting interfaces. It doesn't modify existing windowing behavior. – Nicholas Riley Oct 19 at 1:04
vote up 0 vote down

At the hardware level, write your own APIs.

Otherwise, there are various graphics architectures in which to plug in your window manager:

link|flag
ok cool, i was pretty sure quartz is what i wanted to look at. thanks for confirmation – osx_luser Apr 28 at 23:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.