Xlib is a library used to communicate with X11 servers. This is the library that widget toolkits like GTK+, Qt, and Motif use to draw their graphics, and it's considered to be low-level.

learn more… | top users | synonyms

7
votes
5answers
13k views

How do determine if a polygon is complex/convex/nonconvex?

From the man page for XFillPolygon · If shape is Complex, the path may self-intersect. Note that con‐ tiguous coincident points in the path are not treated as self- ...
8
votes
7answers
7k views

Getting pid and details for topmost window

Does anyone know how to get the PID of the top active window and then how to get the properties of the window using the PID? I mean properties like process name, program name, etc. I'm using Qt under ...
5
votes
2answers
3k views

Global Hotkey with X11/Xlib

My goal is to have a program that sleeps in the background but can be activated by the user via some "hotkey". From digging around the Xlib manual and the Xlib O'reilly manual, I gather that the ...
5
votes
3answers
5k views

How to identify top-level X11 windows using xlib?

I'm trying to get a list of all top level desktop windows in an X11 session. Basically, I want to get a list of all windows that are shown in the window managers application-switching UI (commonly ...
24
votes
3answers
661 views

Does anyone know an xlib function to trap a keypress event without losing the original focus?

Does anyone know an xlib function to trap a keypress event without losing the original focus? (or "to use XGrabKey() without generating Grab-style focusout"?) The XGrabKey will lose focus on key ...
1
vote
2answers
1k views

Borderless windows on Linux

Is their a standard way to make a particular window borderless on Linux? I believe that the window border is drawn by your window manager, so it may be that I just need to use a particular window ...
3
votes
1answer
853 views

How do you install Python Xlib with pip? [closed]

"Python Xlib" ( http://pypi.python.org/pypi/Python%20Xlib ) is a low level python library for working with xlib. I have installed it on my Ubuntu Linux machine via apt, i.e. sudo aptitude install ...
1
vote
2answers
2k views

X11/Xlib: Create “GlassPane”-Window

I've tried to create a fully transparent window using C++ & X11. It should not consume any events and simply forwards them to the windows below. Some kind of GlassPane as it's known for ...
1
vote
1answer
2k views

Fatal IO error 0 (Success) on X server

What does the error "Fatal IO error 0 (Success) on X server" mean? The error is produced when an X client tries to call XvCreateImage(), and it results in the client terminating. X.0.log shows the ...
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)?
1
vote
1answer
1k views

Screenshots in X11

What functions would one use to take a screenshot of an X11 desktop, using the Xlib library? I would prefer a method that's more efficient than getting individual pixels. Thanks.
5
votes
1answer
1k views

How do take a screenshot correctly with xlib?

I am trying to capture an image of the screen for use in screencasting. Thus I need a fast solution, and cannot rely on shell programs such as import or xwd. This is the code I have written so far, ...
5
votes
2answers
495 views

What is the fastest way to display an image in QT on X11 without OpenGL?

I need to display a raw image in a QT widget. I'm running X11 on a framebuffer, so OpenGL is not available. Both the image and the framebuffer are in the same format - RGB565, but I can change it to ...
1
vote
1answer
994 views

Load image onto a window using xlib

I've created window class and i want to insert an image as a background of that window. File formats need to be png. I used XImage of magick++ to load an image. but don't know how to make its as a ...
1
vote
2answers
545 views

How do I detect the currently focused application?

I'd like to be able to track which application is currently focused on my X11 display from Python. The intent is to tie it into a timetracking tool so that I can keep track of how much time I spend ...
1
vote
2answers
1k views

How can I monitor mouse events with Python Xlib instead of capture them?

I need to monitor and filter mouse events with Xlib in Python. So far I have found out that this code receives events, but does not pass them on, so I can't actually do anything with the mouse ...
3
votes
1answer
2k views

drop/rewrite/generate keyboard events under Linux

I would like to hook into, intercept, and generate keyboard (make/break) events under Linux before they get delivered to any application. More precisely, I want to detect patterns in the key event ...
3
votes
1answer
2k views

X11: How do I REALLY grab the mouse pointer?

I've implemented a horizontal splitter widget in Xlib. I'm trying to grab the mouse when the user clicks & drags on the splitter bar (so that the user can dynamically move the split & thus ...
2
votes
1answer
811 views

How to create OpenGL-enabled window with transparent background using xlib and glx

I'd like to create a window with transparent background and then render something onto it using OpenGL. I don't want to use the trick where whatever is behind the window is captured and then painted ...
2
votes
1answer
1k views

Where are some good Xlib programming guides?

I'm a little confused on Xlib programming now. I started to use dwm (a lightweight window manager) a few weeks ago, and I'd like to pickup some Xlib programming books or online resource to customize ...
1
vote
2answers
1k views

capture mouse with Xlib

I want to write a simple Xlib program changing the mouse behavior (to give an example, invert vertical movement). I have a problem with capturing the events. I would like the code to capture ...
4
votes
2answers
723 views

How to upload 32 bit image to server-side pixmap

I'm trying to create server-side RGBA pixmap from client-side buffer. CreatePixmap & CreateImage work ok for 32 and 24 bit, but XPutImage result in Match Error returned by server X Error of ...
2
votes
2answers
393 views

Create a c/c++ application (with Xlib) to render SWF files

Constraint : AS to be in C/C++ SO basically, the idea is to create my own window application (on a Linux environment) and load up (play) my swf file. Pretty "simple" question. I was thinking to go ...
2
votes
2answers
400 views

Embed an app into a window

FvwmButtons (a module of fvwm window manager) has the Swallow function, that embeds the window of an application into a panel. I have to do something like this with Motif and Xlib. I want to embed an ...
2
votes
1answer
764 views

XLib Lock Mouse position (Mouse wrap)

I am trying to create a a mouse wrap within X11 for openGL games/content. The approach I was trying to take is to hide the cursor (which I can do just fine), lock the mouse position in the center of ...
2
votes
1answer
791 views

Excluding some keys from XGrabKeyboard

Consider an application where it's desirable to grab the keyboard when focused in order to capture all window manager commands (Alt+F4 and whatnot) for processing. Now, this has the downside that the ...
1
vote
1answer
126 views

Xlib: window is created in wrong position

I have simple xlib program which creates window. I think it has to show window on the upper-left corner of the screen because I pass 0, 0 to XCreateSimpleWindow function, but it's in upper-middle ...
1
vote
1answer
141 views

Is it safe for X's error handler to throw exceptions?

Is it safe to do something like this? int foo(Display*, XErrorEvent*) { throw 0; } XSetErrorHandler(foo); I won't run into any troubles?
1
vote
1answer
1k views

OpenGL Rendering Context Produces “opcode of failed request 152 (GLX)” (Mesa 8.0 - OpenGL 3.0, Linux)

This one is a huge issue: first off, while I know a little bit about the XLib API, I wanted to test and make sure I could actually create an OpenGL rendering context (3.0) before I did anything, thus ...
1
vote
1answer
375 views

Is it possible to programmatically click button of another app in Linux?

Is it possible to send an event to a particular widget (say a button) in Linux (X window system) I am looking for an equivalent to the following code for Linux (using Xlib) #include ...
1
vote
1answer
2k views

How to save XImage as bitmap?

i'm trying to create JNI C++ library that will capture desktop video (frames). First step is to simply make a screenshot of desktop. Code is : #include <iostream> #include <X11/Xlib.h> ...
1
vote
1answer
600 views

problem with dead keys (acute, diaeresis, etc) c++

I'm currently writing my own virtual keyboard for linux using the X11 lib and i just can't find the way to simulate a KeyPress event of any dead keys. I'd tried , for example, to write "á" using the ...
1
vote
1answer
1k views

How to resize a pixmap with XLib?

I'm using a pixmap as a window's backup in order to restore it under expose events. When the window is resized, must I resize the backup pixmap? If so, what is the best way? Create a new pixmap with ...
0
votes
0answers
247 views

Xlib XSendEvent click event do not work inside of some windows on Ubuntu 12.04

i'm trying to send mouse click event using xlib in a ubuntu 12.04, all works when i do the click in the desktop bar icons and works when i do click in the title bar of each window (close, minimize, ...
0
votes
1answer
52 views

Second Cursor is not triggering a screen refresh

I previously posted about controlling two separate cursors in two xsessions. (http://stackoverflow.com/questions/13714831/controlling-multiple-pointers-with-xlib-or-xinput-in-ubuntu-linux) That ...
0
votes
0answers
173 views

Xlib & Qt: can't get screenshot of root window, XImage seems empty

I'm trying to retrieve the screenshot of root window with XLib: void Widget::paintEvent(QPaintEvent *) { Display *disp; XWindowAttributes windowAttrib; if ( (disp = XOpenDisplay(NULL)) ...
0
votes
2answers
1k views

X11 Mouse Movement Event

When creating a Window in XLib What are the masks I provide to the SetWindowAttributes.event_mask member? What do I have to pass to the 11th paramater of XCreateWindow() What are the Events I am ...
0
votes
1answer
352 views

Qt with XComposite problem

I'm trying to write a simple program, which redirects all the windows to the backbuffer( as the composite manager does ), then write them to pixmap and save to disk. But I got this error: ...
0
votes
1answer
471 views

XCreateWindow fails on CentOS 5.6 with error: BadValue

I'm using the following code to create a fake window for some integration tests: class CXWindowsClipboardTests { protected: virtual void SetUp() { m_display = XOpenDisplay(NULL); ...
0
votes
2answers
1k views

Xlib: Create window in mimized or maximized state

Is it possible to create a Window in maximized or minimized state with Xlib? If so, how would I go about doing that?
-2
votes
1answer
671 views

How to draw an image from file on window with Xlib

This is my code: int main() { Display *d = XOpenDisplay(0); unsigned int bitmap_width, bitmap_height; int x, y; Pixmap bitmap; if ( d ) { Window w = XCreateWindow(d, ...