XCB, an "X-protocol C Binding", is a library for marshaling X Window System network protocol requests and responses. It is intended to replace Xlib.

learn more… | top users | synonyms

0
votes
1answer
40 views

“Failed to load platform plugin ”xcb“ ” while launching qt5 app on linux without qt installed

I wrote application for linux which uses QT5. But when I am trying to launch it on the linux without QT SDK installed, the output in console is: Failed to load platform plugin "xcb". Available ...
0
votes
0answers
23 views

X11 Xlib/Xcb — replace keyboard input events

Is it possible to intercept and replace X events from the keyboard? I want to write a prank program that will, when running, intercept X input from the keyboard and replace some of the input with ...
1
vote
1answer
49 views

QT 5 Application Crashes With No Monitor

I am running a Qt Desktop Application on CentOS 6.4 with Qt 5 Libraries. When I start the application from VNC, as some of our servers do not have monitors, the application crashes. Starting from: ...
0
votes
1answer
25 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 ...
0
votes
0answers
57 views

Detect a GUI “Cut” or “Copy” using command line

I'm trying to find out (from the terminal) if a "cut" or a "copy" operation has been performed on the file(s) selected from within a GUI application, say from a file manager. I tried xclip, xcb, ...
1
vote
2answers
40 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
1answer
55 views

Fake key presses using XHB

I'm trying to simulate key presses using XHB and XTest, using this example code as a reference. Unfortunately, whatever I do, the resulting program has no effect. No exceptions, no warnings. Any ...
0
votes
0answers
202 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 ...
1
vote
0answers
170 views

Global alt+space hotkey grabbing - weird keyboard focus behaviour

I'm grabbing Alt+Space global hotkey using xcb_grab_key, as follows: xcb_key_symbols_t *keysyms = xcb_key_symbols_alloc(c); xcb_keycode_t *keycodes = xcb_key_symbols_get_keycode(keysyms, XK_space), ...
0
votes
1answer
245 views

Where to learn X11 or XCB?

I want to create a software that requires X11 render window that is stacked on the top and grabs the keyboard and mouse(just like a screen locker) but all I could find was a shallow documentation with ...
0
votes
1answer
155 views

Qt vs XCB: How powerful is Qt to do low level tasks?

I'm trying to create a program to lock the screen of a computer with Linux OS which is to be unlocked using my own authentication mechanism. Can I do it in Qt alone( The lock screen, the ability to ...
2
votes
1answer
118 views

Can't change _NET_WM_STRUT_PARTIAL property

I want to reserve some space on the screen for my Gtk application written in Python. I've wrote this function: import xcb, xcb.xproto import struct def reserve_space(xid, data): connection = ...
1
vote
1answer
241 views

How do I provide the _NET_WM_STATE_FULLSCREEN hint with xcb?

I'm trying to write a fullscreen application with xcb for my own edification and I'm having trouble with the above. I've found a couple pieces of code that do this using Xlib, but none with xcb. ...
6
votes
1answer
422 views

Qt Threading Issues in Linux

I have been developing with Qt for some time now on my project, and we are starting to move to a more thread-oriented design. Upon moving some GL rendering widgets to other threads I have discovered ...
1
vote
1answer
163 views

How to get event when new application launches using XCB

I am trying to make a very simple window manager for learning purposes. I am using C and the xcb library. I am trying to get an event raised if a new application is launched. For now, I create a root ...
0
votes
0answers
65 views

Swig, Ruby sharing class between modules, modules mixin

I am currently writing binding of a lib for ruby. I have one main module Xcb_core defined in a swig file and I have another module Xcb_util defined created with another swig file. In the Xcb_core swig ...
0
votes
1answer
291 views

How to properly configure windows using xcb ConfigureWindow in python

I am working on an X11 window manager, writing it in python. I am encountering a problem, where I get, and handle ConfigureWindowEvents. But, even then, when a window is mapped, it shows up as a two ...
0
votes
1answer
159 views

How to set SubstructureRedirect event mask on the root window using xcb python for a X11 window manager

I have this code that does not give any exception, but I do not seem to be receiving events like MapRequests, or ConfigureNotifys: import xcb import xcb.xproto as xproto conn = xcb.connect() root = ...
0
votes
1answer
188 views

glXCreateWindow doesn't work when VISUAL_ID and screen->root_visual aren't equal

I'm working on code very similar to this: http://xcb.freedesktop.org/opengl/ It works fine when I use the default framebuffer configuration, although when I try to query a certain one it fails. I've ...
0
votes
2answers
254 views

XCB STRING and WM_NAME not defined

Where are STRING and WM_NAME defined? My xcb_atom.h file only contains 3 function declarations, when I was expecting it to look like this: ...
0
votes
1answer
93 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 ...
0
votes
1answer
81 views

Missing XCB header in Debian Squeeze/Wheezy

The docs talk about a file called input.h that doesn't seem to appear in any of the packages, at least according to: apt-file search /usr/include/xcb/xinput.h I need that because I was trying to ...
0
votes
2answers
113 views

swig xcb lib and ruby

I want to create a basic ruby module for xcb for my own use. I tried a basic test where I wrap header file with swig: here is my xcb_ruby.i %module ruxcby %{ #include <xcb/xcb.h> #include ...
0
votes
1answer
245 views

xcb illustrate pseudo transparency (copy of root window pixmap to a children window background)

I want to illustrate the pseudo transparency of windows with xcb (copy part of root windows pixmap on a window background) For that, I use: the root pixmap is set with feh then I launch my programm ...
2
votes
1answer
269 views

With X11, how can I get the user's time “away from keyboard” while ignoring certain events?

I'm making a little application that needs to know how long the user has been idle — as in, not using a keyboard or a mouse. Both XCB and Xlib promise to give me idle time through their respective ...
5
votes
1answer
707 views

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?
5
votes
1answer
324 views

How to send key event to application using XCB?

How can I send a key press or key release event to a window (the currently active window) from another program using XCB? I found some tutorials using XLib, however I would like to use XCB. I guess ...
0
votes
1answer
186 views

How to exit program with close button in XCB

Can not find any reference on how to close application by the "X" button. I'm programming using XCB and want to close the program by the "X" button. I looked and can't find anything about it. I know ...
1
vote
1answer
158 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 ...
2
votes
1answer
402 views

What should a Window Manager do with a ConfigureRequestEvent?

For my sins (and for fun the learning experience) I am writing a window manager (I know, I know). I'm using python and XCB (python-xpyb). So far I have figured out that I need to use a ...
1
vote
1answer
359 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)?