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.
24
votes
3answers
658 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 ...
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 ...
9
votes
1answer
241 views
How do I use the xlib and OpenGL modules together with python?
I know it is possible to use Xlib and OpenGL together, with GLX (I've done it myself in C).
The problem is, how do I do this in python? The OpenGL module has GLX functionality [documentation], but ...
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 ...
8
votes
4answers
1k views
Listening to keyboard events without trapping them?
I'm writing an command-line application which listens for Control key release events in X Windows and alerts another process when it detects them.
Being new to GNU/Linux, I'd prefer avoiding to ...
8
votes
2answers
2k views
How do you exit X11 program without Error [closed]
I have a fairly simple "Hello World" in X11 at end of question. But when it exits I get the run time error messages below:
$ ./xtest
XIO: fatal IO error 11 (Resource temporarily unavailable) on X ...
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-
...
7
votes
6answers
1k views
How would you build a “pixel perfect” GUI on Linux?
I'd like build a GUI where every single pixel is under my control (i.e. not using the standard widgets that something like GTK+ provides). Renoise is a good example of what I'm looking to produce.
Is ...
7
votes
2answers
350 views
Gtk: get usable area of each monitor (excluding panels)
Using gdk_screen_get_monitor_geometry, I can get the total area in pixels and the relative position of each monitor, even when there are two or more used as a single screen.
However, I want to get ...
6
votes
6answers
817 views
Anyone still program using xlib directly [closed]
I am surprised at the lack of response to all the xlib related question I've had on SO, is this because no one uses xlib directly anymore or is this the wrong place to ask these types of questions? ...
6
votes
3answers
594 views
Is Xlib Still Used?
Is xlib still used? The helpful documentation I can find is http://tronche.com/ which looks, to me, very outdated. Who uses Xlib? Is GTK+ and QT built on it? thanks in advance, ell.
6
votes
2answers
605 views
Embedding QWidget into X11 Window
I want to embed two QWidgets into a window created using XLib. I have written this code:
// Assume all the necessary headers included
int main(int argc, char *argv[])
{
QApplication app(argc, ...
6
votes
2answers
406 views
How do we simulate a mouse click with Xlib / C?
All,
I can't believe that this question has been as hard to answer as it is. I've been Googling for the last two hours and can't find anything that works. All I want to do is find C / Xorg code to ...
5
votes
5answers
436 views
How to fix this script so that it won't peg the CPU?
On my home Kubuntu machine, I am running a script to beep on every keypress, no matter which window or application has focus, adapted from this insightful page
#!/usr/bin/env python
from ...
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 ...
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
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 ...
5
votes
1answer
882 views
Xlib center window
I am writing a Xlib app where I want the window to be centered. I have used XMoveWindow with (desktopWidth - width) / 2, (desktopHeight - height) / 2 and it is roughly in the right place.
However the ...
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
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 ...
5
votes
0answers
93 views
OSD support align attribute, and multiple span or div elements, can display multiple columns
Please let me know such an OSD on-screen-display program or techinque for Xorg/Linux platform which can render much richer XML than pango, at least support align attribute, and multiple
span or div ...
5
votes
1answer
289 views
Move window using PySide and PyKDE4
How should I go about moving a window created with PySide using the window manager?
I see that kdeui has the NETRootInfo class with a moveResizeRequest method, which does exactly what I want. The ...
4
votes
5answers
3k views
What do I need to do to link with xlib?
I am using GCC, what switches do I need to add to link with Xlib? After searching, all I could find was -lX11, but that gave me ld: library not found for -lX11
I am using a mac (10.6), but I would ...
4
votes
3answers
1k views
Anti-aliased text in X11
I'm experimenting with Xlib to gain a deeper understanding of how Linux GUI programs work. I've written a simple program that display "Hello, world" in a window, but it looks rather anachronistic ...
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)?
4
votes
2answers
2k views
how to quit the blocking of xlib's XNextEvent
Under windows, the GUI thread usually call GetMessage to waiting for message,
when another thread use PoseMessage put a message into the queue, then the
GUI thread will return GetMessage (quit ...
4
votes
4answers
523 views
Books/resources on learning Xlib (“the Linux Petzold”?) [closed]
I have stubbornly decided to learn Xlib programming for Linux GUIs, just for fun & the gained experience. I'm young and have lots of time to read useless stuff. Nobody seems to want people to ...
4
votes
1answer
623 views
How do I gracefully exit an X11 event loop?
Almost every tutorial I find tells me to do this for my event loop:
XEvent event;
while (true)
{
XNextEvent(display, &event);
switch (event.type)
{
case Expose:
...
4
votes
2answers
722 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 ...
4
votes
1answer
162 views
How to Detect when entering a password field
I am currently trying to debug an issue I've been experiencing with the program 'matchbox-keyboard'(http://matchbox-project.org/), and I'm hoping for some assistance. matchbox-keyboard is an on-screen ...
4
votes
3answers
313 views
CBM image file format: what is it? how to read it?
I have a collection of images in the CBM file format.
What is this format? How to read it? How to convert it to, say, a BMP bitmap?
Searching the net, I found that it could mean one of those three ...
4
votes
2answers
976 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 ...
4
votes
2answers
1k views
What is wrong with my X11 code?
I am attempting to get the X Window at a certain location on screen. When I asked people for a function to do this, they said you would just call XQueryTree recursively.
This is the code snippet ...
4
votes
1answer
434 views
Making a window a desktop in XLib/Qt
I am trying to write a simple program to act as my desktop background in Qt, I have made it all work fine apart from making it a Desktop Widget. I have no idea on how to do this, I don't mind using ...
4
votes
1answer
1k views
Handle “new top level window” events in Xlib/Xt
So I'm in a situation where I need to know when a top level window gets created. I'm working at the Xlib/Xt level and on a Window Manager that doesn't support the EWMH specification. My idea is to ...
4
votes
1answer
114 views
How to draw on an X11 Drawable with Cairo in Haskell
I recently made my first steps in X11 programming in Haskell and now I want to draw texts using Cairo/Pango. I found some C tutorials and it seems as I need to create an Xlib surface using ...
4
votes
2answers
150 views
Using GTK and Xlib in Python
I am writing some code where I need to drop down from GTK+ to Xlib. Specifically, I would like to set the icon of a toplevel window to be a window itself, rather than a pixmap, in order to write a ...
4
votes
2answers
272 views
xpath expression in findnodes() returning empty nodelist
XML:
<zoo xmlns="http://www.zoo.com" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:schemaLocation="http://www.zoo.com employee.xsd">
<area id="1" posizione="nord" ...
4
votes
1answer
444 views
C++ X11 clipboard selection transfer does not work
I have been porting my system to X11 and I have a problem with clipboard copy (paste is already working). I have followed this. After a while I noticed that his example does not work too. Problem is ...
4
votes
1answer
493 views
XLib, XTestFakeKeyEvent latences
I try to send key to an application with XLib and XTestFakeKeyEvent, and it works fine, with the following code :
XSetInputFocus(disp, list[selectWindow],RevertToPointerRoot,CurrentTime);
...
3
votes
1answer
717 views
Xlib: XGetWindowAttributes always returns 1x1?
I'd like to have width and height of the currently focussed window. The selection of the window works like a charm whereas the height and width are always returning 1.
#include <X11/Xlib.h>
...
3
votes
1answer
850 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 ...
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 ...
3
votes
1answer
4k views
Filling a Polygon: Performance of Winding Rule vs Even Odd Rule
For a complex polygon (ie: self intersecting) the choice between the Winding or the Even-Odd filling rules makes a difference in the way the polygon is filled.
But for non intersecting polygons is ...
3
votes
1answer
831 views
What is the format of Xlib ZPixmap format
does anyone know what is XLib ZPixmap format for 32/24bit images/pixmaps. Is it RGB(A) or BGR(A), etc. or highly implementation dependent?
3
votes
2answers
69 views
How to remove borders of widgets in an x window program using x resource?
I would like to change the ugly default looking of gv's GUI. I used editres to get the x resource tree of gv and tried to remove borders of buttons using the following settings:
...
3
votes
1answer
279 views
How can I move/resize a window using python-xlib?
How can I resize/move a window using python-xlib? I have the X window ID. What's the equivalent python-xlib snippet to wmctrl -i -r $id -e $gravity,$x,$y,$width,$height?
3
votes
1answer
259 views
How does compositor work on X?
I am trying to understand how compositors work on X (well basically because neither xcompmgr nor cairo-compmgr can draw shadow properly for my awesome wm~~~)
I have read part of the source code both ...
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
54 views
Click through transparent xlib windows
I have a transparent, watermark like application that is written with XLib in C. Currently if you click anywhere on the application nothing happens but I would like it to pass mouse input to whatever ...

