Tagged Questions
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.
6
votes
1answer
369 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 ...
6
votes
6answers
634 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 ...
5
votes
2answers
70 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
2answers
189 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 ...
5
votes
3answers
3k 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 ...
4
votes
1answer
80 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 ...
4
votes
3answers
97 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
372 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
4answers
295 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
2answers
1k 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 ...
4
votes
6answers
4k 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 ...
4
votes
3answers
876 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
1answer
806 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
5answers
510 views
Anyone still program using xlib directly
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? ...
4
votes
5answers
6k 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-
...
3
votes
1answer
73 views
Desktop effects (compiz) turned on: How to capture the image of a window WITH border/frame/title bar?
I would like to get the image of an X server Window (toplevel window, parent is the root Window) with its border/frame/title bar. I have already tried several libraries (Xlib, XRender, gdk, cairo) but ...
3
votes
1answer
562 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 ...
3
votes
2answers
526 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)?
3
votes
1answer
609 views
Qt + XCompositeRender problem
I want to render the contents of the window in to QWidget ( or QPixmap ) using XComposite and XRender.
The Issue I'm facing is that I can't get the picture be rendered in the QWidget. The code below ...
3
votes
1answer
264 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 ...
3
votes
2answers
685 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 ...
3
votes
2answers
592 views
XCreateWindow gives a window ID that clashes with already existing window
I have created a program that creates a window using XCreateWindow. This works perfectly on my system and many others but on many, it is causing a few weird problems. e.g. the ID that I got from it ...
2
votes
1answer
25 views
Is necessary to use xlib's “XAllocSizeHints()”?
Xlib has a funciton called XAllocSizeHints to allocate a XSizeHints structure on the heap and set it to zero.
XSizeHints *sizehints;
sizehints=XAllocSizeHints();
However, can is it necessary to ...
2
votes
1answer
35 views
Explanation of Header Pixel in GIMP created C Header File of an XPM image
In GIMP, you're able to save an image as a C header file. I did so with an XPM file, which looks like the image below:
If I were to save the XPM image as a C header file, GIMP will output this C ...
2
votes
1answer
57 views
XFetchName always returns 0
im trying to write a C code to get the title of the Active Window in my Linux System, but the Function XFetchName always returnes zero, i also tried XGetWMName, same result...
but using xprop, i can ...
2
votes
1answer
86 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 ...
2
votes
1answer
105 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, ...
2
votes
1answer
158 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 ...
2
votes
2answers
85 views
Current stable xlib wrapper for ruby?
My project has simple requirements:
Grab the contents of an existing xorg app's window
(do some ocr)
Draw something over the existing app's window (to an overlay)
Requirement 2 isn't so important, ...
2
votes
2answers
166 views
Set X11 cursor to arrow
I attempted the following in a call to XCreateWindow():
unsigned long ctt_attribute_mask = CWWinGravity | CWCursor;
ctt_attributes->win_gravity = NorthEastGravity;
ctt_attributes->cursor = ...
2
votes
2answers
79 views
Is Display unique for every window in X11?
I'm a beginner to X11, i created a class just to create,show and destroy the window. In the Constructor i create variables for Window,Display etc, But do i need to create Display for every Window o ...
2
votes
1answer
119 views
How to provide X11 with a wm_name for a Qt4 window?
Background
I am about to resolve another issue, which consists in reserving screen-space for a Qt Window on X11. For this i use PyQt4 and Python-Xlib.
Situation
The application i want to save ...
2
votes
1answer
257 views
How to draw rectangle using Qt to Xlib window
Let say that i have id of another Xlib window and i want to draw over this window rectangle.
Is there way to to draw it using Qt? I found on solution but it doesn't work for me:
QPixmap pix = ...
2
votes
3answers
243 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.
2
votes
1answer
310 views
Get keysym for key char
I'm trying to implement global hotkeys in my application. I've got hooking and I've got the support for windows, so I just need to get some linux specific parts together. What I need is a way to get ...
2
votes
1answer
346 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
0answers
71 views
gnome window switches and password fields
I wrote a small key logger for Ubuntu, but I don't want it to record specific windows or password fields (in all windows). So I need some way to:
Detect when a new window gets focus (so that I can ...
2
votes
1answer
468 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
445 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 ...
2
votes
1answer
115 views
X11: How to make the application to be on top
Situation I'm using matchbox keyboard which is X11 based application. When any application is in full screen mode matchbox keyboard cannot be visible as the full screened application is on TOP. So is ...
2
votes
1answer
202 views
How to create a mapped but not visible window with XLib?
I'm working on a I/O verification tool based on Linux in a game project. It is written in C++, and,since using the same I/O module as our game, it's based on OIS 1.2. Thus, though all I need is to ...
2
votes
1answer
440 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 ...
2
votes
1answer
355 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?
2
votes
1answer
196 views
Top level window on X Window System
I want to print on the screen the information about Top level windows under Linux.
I use the xlib functions. I successfully recurse from the root window to print all the informations about all the ...
2
votes
1answer
484 views
Python: how to switch between workspaces using Xlib?
how do I switch between my window manager's workspaces using Python with Xlib module?
I've been searching Google the last couple of hours, and this is my most promising attempt:
#!/usr/bin/python
...
2
votes
4answers
1k 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 ...
2
votes
2answers
142 views
Window iconification status via Xlib
Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?
2
votes
3answers
851 views
Python: Xlib — How can I raise(bring to top) windows?
I've tried using:
win.configure(stack_mode=X.TopIf)
win.set_input_focus(X.RevertToParent, X.CurrentTime)
However even without any focus loss prevention on my window manager this does not ...
1
vote
1answer
33 views
XLib Asynchronous Event Handling (Without XBC)
With xlib in c++ is there a way to asynchronously handle events? XNextEvent blocks until an event arrives. Is the only way of doing this calling XNextEvent from a different thread? I am aware that XCB ...
1
vote
1answer
50 views
How does compositor works 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 ...