I am playing with X-windows, Xlib, etc. I want to create a X-window independent of the window-manager: meaning that I do not want the WM to put a frame, minimize-maximize, close, menu, title-bar, etc. in the window. I want to create a vanilla X window. How?

[edit] Alternatively, how to I capture those events so my windowing app can at least die without an error?

[edit] ninjalj's answer led me to the following info:

ICCCM
Lots & lots of info :) cool!
Tutorial

link|improve this question

There are "hints" that you can set on a window that tells the window manager not to decorate it, but window managers are free to ignore the hints. – Paul Tomblin Oct 14 '10 at 17:58
Besides ICCCM, there is also NetWM / EWMH (standards.freedesktop.org/wm-spec/wm-spec-1.4.html) – ninjalj Oct 15 '10 at 17:38
feedback

1 Answer

up vote 1 down vote accepted

I think what you want is an override-redirect window. Just set the override-redirect on your XSetWindowAttributes struct (and the corresponding bit on valuemask) when creating the window.

link|improve this answer
wooof! okay, got it working. Facing the battle between: "this is my computer & I want to do whatever to it" vs "play nicely now". Interesting (& fun) doing X-development ;) thanks. – slashmais Oct 15 '10 at 4:29
feedback

Your Answer

 
or
required, but never shown

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