Tagged Questions
1
vote
1answer
69 views
Marking sections of X11 window as draggable
In case I want to have an undecorated window (for example, I may paint the decorations myself), is there a way to tell the current X11 window manager that a region of window should be draggable and ...
0
votes
2answers
414 views
Xlib ARGB Window Icon
I have a ARGB image data. I wish to set my window icon to this data. After searching for hours I am still at the start with nothing at hand. I know that I need to create a pixmap for image data and ...
0
votes
1answer
284 views
Window manager. Internal content of X windows in separate window?
I am writing my own Window Manager using Xlib and Qt 4.7. So in my application I catch all events from XServer.
The problem is next. When I show window on "MapRequest" event, sometimes its internal ...
4
votes
2answers
980 views
minimize fullscreen Xlib OpenGL Window
I'm currently trying to enable alt-tabbing out of my fullscreen Xlib OpenGL window, but am having some difficulties. I've tried XUnmapWindow(..), which kindof works, but the resolution does not reset ...
9
votes
2answers
2k views
Modern ways to write a window manager
I'm trying to write a window manager. (Actually, I have written an OS and a compiler, but that's beside the point.)
XLib and xcb aren't exactly nasty, at least not by, say, win32 standards, but they ...
0
votes
1answer
286 views
Xlib - focus mode
I'm writing a simple window manager (using xlib) for school and I have one problem. I really don't like the default X11 focus mode: 'sloppy focus' (the focus follows the mouse pointer) so I want to ...
5
votes
1answer
2k views
Xlib How Does This (Removing Window Decoration) Work?
How does the following code remove window borders?
//note the struct is declared elsewhere, is here just for clarity.
//code is from [http://tonyobryan.com/index.php?article=9][1]
typedef struct ...
0
votes
1answer
505 views
Xlib getting events of a child window
I am writing a simple window manager using xlib. The code reparents client windows into a window slightly larger than the client window called frame window. I am trying to implement a click to focus ...