0
votes
1answer
19 views

Why is the lock activated by XInitThreads non-recursive?

Consider the following call flow: Function A calls XCheckIfEvent passing a pointer to function B in the predicate parameter. Function B calls XGetWindowProperty. If XLib is initialized with the ...
1
vote
2answers
38 views

Need for XEventsQueued(display, QueuedAfterReading) in XCB

I am migrating some code of CYBOI from Xlib to XCB. CYBOI uses a couple of threads for different communication channels like: serial_port, terminal, socket, x_window_system. However, it uses these ...
0
votes
0answers
189 views

Migrating from xlib to xcb, drawing

Edit: I modified the code a little to take out some unnecessary stuff, for some reason before I needed to use fillrectangle so the window was drawn correctly i tested and now works fine for some ...
0
votes
1answer
92 views

Do I need to disconnect an xcb_connection_t that I got from XGetXCBConnection?

Here's an example I saw for some GLX code: display = XOpenDisplay(0); // ... xcb_connection_t *connection = XGetXCBConnection(display); // ... XCloseDisplay(display); I noticed that there was no ...
1
vote
1answer
154 views

How can I get a window's icon name in Xorg?

I am attempting to get a window's icon name with python, for use in a pyclutter-based taskbar. I have gotten the XID via wnck, but wnck seems to only be capable of giving me a gtk.gdk.Pixbuf, which is ...
1
vote
1answer
350 views

xlib/ xcb deadlock or block

I’ve a program developed using xlib and cairo. Just for the reference I do mix calls between cairo and xlib, although I’m not sure If that might be the cause of the error. I get a deadlock or a block ...
4
votes
2answers
2k views

Window position in Xlib

How to get top-level window position relative to root window (i.e. whole screen) using plain ol' xlib (or brand new XCB)?