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

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 ...
1
vote
1answer
817 views

How to create a window and fill it with color using OpenES 2.0 + X11?

I googled as hard as I can, but I found nothing. What I want to do: create a window with X11 (Xlib) and show it fill the window with color using OpenGL ES 2.0 For OpenGL ES 2.0 support on my ...
1
vote
1answer
399 views

X11 Fullscreen window (OpenGL)

I'm writing and OpenGL application on linux (Ubuntu 11.10) using Xlib (X11). What is the simplest way to implement toggle between windowed and fullscreen mode?
1
vote
1answer
93 views

Creating InputOnly window

I want to create "InputOnly" window which should be invisible and taking input, but when running code bellow, my InputOnly window does get any event. I want to have my focus on other window and still ...
2
votes
1answer
164 views

pygtk window with box that ignores all X(mouse)events (passes them through)

I'd like to do the following: Create a fullscreen, always on top pygtk window with a webkit widget displaying some html, but with a box that is completely transparent, so that the windows below are ...
0
votes
1answer
100 views

How can I limit the surface in which Xlib graphics primitives draw?

I think that's what clip are used for but I can't find any example to do this. I need to: Limit the region by setting a new clipmask (altering the GC) Draw Set the GC back to its previous state
0
votes
1answer
200 views

Determine if a key is shifted with Python-xlib

I'm using python-xlib to generate some key press events. In order to do this I need to determine if a particular character (say 'A') needs a shift mask or not. The C XLib defines a method called ...
1
vote
1answer
211 views

XLib: How do I return to windowed mode once I make it full screen?

I was able to make my app go full screen, but I can't make it go back to the windowed mode with borders visible. I tried to call XDeleteProperty to clear out the settings for full screen but it ...
2
votes
1answer
63 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
882 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 ...
5
votes
1answer
886 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 ...
2
votes
1answer
236 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 ...
0
votes
0answers
764 views

Simulate key press in Xlib using XSendEvent (focus, vmware unity)

I have trouble with keyPress function which should simulate keypress in window. Everything work fine when i focus window by click to it. But when focus is in different window, key press simulation ...
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 ...
1
vote
3answers
2k views

GLEW build fail

I need to load extensions in Ubuntu 11.10. I tried building GLEW but I get the following odd error... ~/Downloads/glew-1.7.0$ make cc -shared -Wl,-soname=libGLEW.so.1.7 -o lib/libGLEW.so.1.7.0 ...
0
votes
1answer
916 views

Get display count and resolution for each display in Python without xrandr

I'm running Ubuntu and I want to get the number of attached displays, their current resolution and, if possible, their position in relation to each other. Because I don't like parsing Console output ...
0
votes
1answer
165 views

What XWindow property can prevent a window from getting focus, while letting it receive mouse events?

I am writing an Onscreen Keyboard in python, with clutter. I've gotten the ClutterStage's XWindow object, but I can't find any properties which prevent the window from stealing focus. Basically, it ...
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 ...
1
vote
1answer
205 views

I need to draw a line moving with the cursor, but I want to avoid redrawing the whole window every 100ms

I have a program which displays a ruler on the screen, and with Xlib it polls for the cursor position every 100ms and updates the display. The display consists of numbers/lines etc, in particular a ...
1
vote
1answer
199 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
11k views

OpenGL GLX extension not supported

I had installed OpenGL and freeglut in Ubuntu 10.04 and it worked fine in 10.04 and 10.10. But after I upgraded to 11.04, the applications I've developed using OpenGL is not running properly. They're ...
3
votes
1answer
261 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 ...
0
votes
1answer
84 views

keep gtk window fixed on screen

How you keep gtk window fixed on screen like a taskbar or keep some space like taskbar reserved for our gtk window, Do i need to write some WM plugin. if it helps my wm is metacity, and can you ...
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, ...
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 ...
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 ...
0
votes
1answer
152 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 ...
1
vote
0answers
153 views

Python Xlib issue

I have a small python app using the Xlib package. I am not sure how to create a window/app properly to be managed by a window manager. Everytime I set the DISPLAY to xorg, the window is automatically ...
1
vote
1answer
703 views

Showing Mouseposition with python

I want to track my mouse-position and show that in a tiny window. For that, I created this piece of code: #! /usr/bin/python from Tkinter import * from Xlib import display def mousepos(): data ...
0
votes
1answer
284 views

Window manager. Internal content of X windows in separate window?

I am writing my own Window Manager using Xlib and Qt 4.7. So in my application I catch all events from XServer. The problem is next. When I show window on "MapRequest" event, sometimes its internal ...
1
vote
2answers
160 views

Getting a pointer to my XDisplay (Linux) (X)?

I need to be able to access the X Event Loop to add clipboard support for a game API. The problem is the game API does not know which API it will use for display (It could use SDL or other). As a ...
1
vote
1answer
276 views

How to prevent reparented window blocking X session?

I reparent an external window into Qt application (XReparentWindow, XMapRaised, XMoveResizeWindow). It works, but when I click to that reparented window the system locks (no mouse or keyboard events), ...
0
votes
1answer
119 views

Why are XVisuals repeated in xdpyinfo

Looking into my output of xdpyinfo, I see a lot of Visuals of the exact same characteristics repeated. Why are they repeated? For example, visual: visual id: 0x6e class: TrueColor depth: 32 ...
1
vote
1answer
654 views

XSetInputFocus fails

In my Xlib application, I need to set up the keyboard to focus on a specific component, and I though of doing it with XSetInputFocus. For some reason I always get a BadMatch error even though my ...
0
votes
2answers
382 views

Qt 4.7+Xlib crash on QWidget::winId() method

Sorry for my english, but I have the next problem. I am writing a window manager using Qt 4.7 and Xlib. I have class Manager that inherits QApplication and reimplemented method X11EventFilter in it. ...
0
votes
0answers
328 views

Python Xlib CreateNotify - Catch new window

Why this code doesn't work? When I start new program (e.g. lxappearance) nothing happens, but if I do something in program's window, code works from Xlib.display import Display from Xlib import X, ...
5
votes
2answers
496 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 ...
0
votes
1answer
473 views

Xlib: How to check if a window is minimized or not?

How can I check if a window is minimized or not using the C interface of xlib? Edit: Should this code work? int window_is_minimized(Display *display, Window window) { Atom actual_type; int ...
1
vote
1answer
175 views

Highlight Select Box in Python

I am trying to rebuild the functionality of the desktop's "highlight to select" feature so that I can use it in my own app. When I say "highlight to select" I mean the selection box that shows up if ...
1
vote
1answer
172 views

Why does only one child window show?(x11)

I have a small piece of code where I create 4 non overlapping sets(Top/Bottom Left/Right) of 3 windows(1 parent window 1 child window almost as large as the parent window and 1 small button window). ...
0
votes
1answer
85 views

X11 XM_NAME type is 'UTF-8' rather than STRING_UTF8

I'm looking at some X11 code that uses XmbTextListToTextProperty to set the WM_NAME property, with encoding style XTextStyle. ...
0
votes
1answer
353 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: ...
1
vote
1answer
320 views

Is there a way to get a transparent OpenGL ES background with X11?

I can find questions/answers for iPhone/Windows but none for X11. Also if there is anyone with a ton of OpenGL experience who can explain the general concepts involved for any windowing system?
2
votes
2answers
294 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, ...
1
vote
1answer
377 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
756 views

How to get Gdk window from xid?

I'm lost in version 3.. in python2+gdk2 is: #!/usr/bin/env python2 import gtk gtk.gdk.window_process_all_updates() window_xid = 54525964 gdk_window = gtk.gdk.window_foreign_new(window_xid) which ...
0
votes
2answers
229 views

Zoom far in on an image with Xlib

I have an ximage which I want to zoom in on, and display. I'm currently taking the naive approach: allocate bigger image use nearest-neighbor interpolation to fill it in. put the whole image on a ...
0
votes
2answers
280 views

How to embed a program inside another using GTK, XLib or any similar?

I'm trying to make a "simple" program, all it does is to list all opened programs and, once you choose one, it opens it inside your window (like a thumbnail you may say, but you can also interact). ...
0
votes
1answer
256 views

Click through transparent window in Xlib

I would like to be able to draw anywhere on the screen, so I think I should create a transparent, fullscreen, undecorated window. The problem is, all events pass through the window. I'd like to ...
2
votes
2answers
481 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 = ...

1 2 3 4 5 7