tags:

views:

27

answers:

1

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

+1  A: 

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.

ninjalj
wooof! okay, got it working. Facing the battle between: "this is my computer ) thanks.
slashmais