Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is XCB ready for production use? Should I use Xlib instead?

If one needs low level access to X11 events, windowing and input without using GTK, QT et al., should one use Xlib or XCB? What are the pros and cons of each?

like image 443
x-x Avatar asked Jan 26 '12 22:01

x-x


2 Answers

You can use both of them. XCB is simpler to use, has a better response to a multithread environment but lacks documentation, while Xlib is a more dated/complex tool, better documented and fully implemented.

I'm currently studying the XCB API and the hardest thing to do is to find docs and good API references..

In the end: if you aim to faster development, you should use Xlib, otherwise XCB is meant to be the future (but it's still far from being such).

like image 141
moongoal Avatar answered Nov 10 '22 13:11

moongoal


What helps when learning XCB is to look at X11 specification, for example here https://www.x.org/releases/current/doc/xproto/x11protocol.pdf

Most XCB calls map directly to X11 requests. The same is true for extensions.

like image 27
gatis paeglis Avatar answered Nov 10 '22 13:11

gatis paeglis