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

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
485 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
1answer
678 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, ...
1
vote
1answer
588 views

selective RECORD using python xlib?

I'm trying to implement clickable areas on the root window, using python xlib's RECORD extension. this is what i've got so far: import sys import os from Xlib import X, XK, display from Xlib.ext ...
0
votes
1answer
796 views

Setting background color of root window

I am trying to learn XLib. And I searched throught source of Feh program to understand how to modify root window, but I had no results. There is code to test root window access, but I don't ...
0
votes
1answer
360 views

Set a image(jpeg | png) backgound using GLX ( opengl and Xlib)

I create a x11 window with opengl functionality, i need to load a image(jpeg | png) on its background where size of window be bigger than image, it doesn't matter. I surfed to get resylts like use ...
1
vote
1answer
1k 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 ...
4
votes
2answers
985 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 ...
-1
votes
1answer
400 views

Get relative position of mouse in a window in x11

I need to get the relative position of mouse pointer in the window in which it is clicked, i've coded to capture the click event, but when i use this code result = XQueryPointer(disp, ...
2
votes
2answers
131 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 ...
0
votes
2answers
264 views

Enable antialiasing using Xlib

I'm trying to develop a custom set of libraries for creating GUIs in Linux, with, you know, widgets, buttons, etc. So I'm now learning to creating user interfaces using X11 and its Xlib. I get to the ...
3
votes
1answer
103 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 ...
2
votes
1answer
315 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 ...
1
vote
1answer
730 views

How to manage my application window with python-xlib?

I would like to find a linux-wide (insofar as it uses X11) way to control the window geometry of my application, which I program using Python. All my researches point to using python-xlib, which ...
1
vote
2answers
317 views

Are Xlib's graphic functions fast?

I am a absolutely new GUI programmer with very little experience (except some small apps in Java). I am considering writing a small app that needs simple 2D graphs. I don't know if I should use Xlib ...
0
votes
2answers
188 views

Is handler set via XSetErrorHandler global or threadlocal?

If I set error handler using xlib function XSetErrorHandler will this handler work for the whole process or only for a thread where XSetErrorHandler was called?
3
votes
1answer
392 views

Block Keyboard but get global Hotkeys XLib

[SOLVED - Provided example contains the answer!] I am trying to implement a program which is started in fullscreen and does not allow any userinput (wether mouse nor keyboard) because it just reacts ...
0
votes
1answer
474 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
1answer
617 views

An error occurred because there is no graphics environment available

I am getting below error when I try to use hudson and maven, Any idea how to resolve? Xlib: connection to ":1.0" refused by server Xlib: No protocol specified [INFO] ...
1
vote
1answer
659 views

How do I properly intercept and forward mouse events with Xlib?

I'm working on a simple Xlib program where I want to intercept all mouse events (motion, button pressing, button releasing). I might want to do something with this data at some point, but right now, ...
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 ...
1
vote
1answer
1k views

Mouse button simulation - right button and context menu problem

I am programming remote touchpad. So I need to simulate mouse button press on Linux in C++. I use Xlib functions to do that. Both touchpad buttons works almost fine, but for example when I press ...
2
votes
1answer
447 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 = ...
0
votes
0answers
3k views

Xlib Fatal IO Error: 11 (resource temporarily unavailable)

FIXED: The error is simply becuase I quit the application without closing the display using XCloseDisplay(). And the reason i didnt get anything appearing on the screen was because the values for ...
0
votes
1answer
286 views

Xlib - focus mode

I'm writing a simple window manager (using xlib) for school and I have one problem. I really don't like the default X11 focus mode: 'sloppy focus' (the focus follows the mouse pointer) so I want to ...
1
vote
2answers
353 views

Python xlib warp_pointer not working properly inside games

I am trying to change the mouse pointer using python xlib. I successfully did it using warp_pointer. But when i try to play any games like Secret Maryo Chronicles, the mouse pointer moves to the ...
2
votes
2answers
407 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 ...
1
vote
2answers
846 views

Activating a Window on X11, why do I lose the title bar?

Using the bellow code, I am activating a window on X11. I'm using FindWindow to get the window handle, which works just fine. Then I want to bring the specified window in the foreground. To do this, ...
0
votes
1answer
227 views

Xlib - Ignore Modifier Keys in XGrab*

Holla, I'm currently hacking out some changes to TinyWM - one I'd like to implement is a click-to-focus policy. I've figured out that I need to run an XGrabButton on the child as it is created in an ...
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.
0
votes
2answers
512 views

KeyRelease event never sent

I'm having a little problem catching a key released event to stop my character from walking in my game.. i'm trying to do this: switch (xev.type) { case Expose: { ...
1
vote
2answers
670 views

Does xlib have an active window event?

I am trying to write a program that tracks when the active window changes using Xlib. I am have trouble figuring out the best way to do this. These are my ideas so far: Every second use ...
0
votes
2answers
184 views

StretchBlt for Xlib?

I'm looking for a function that does the same thing as GDI's StretchBlt for Xlib. I can't find any such function in the XLib headers so I am beginning to think I will have to understand how ...
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 ...
0
votes
0answers
209 views

copying screen contents

i need a certain area of the screen to be drawn in my app...although my code works fine, its very very slow...takes more than 20 seconds with inferior quality and around 30-40 with best quality... is ...
1
vote
1answer
220 views

Accept keyboard shortcuts in pyGTK

I would like to be able to have a keyboard shortcut to do a certain thing, like CTRL+O, or something else... xlib or pyGTK will work well.
1
vote
2answers
284 views

get xorg.conf serverLayout with c++

I am currently working on a multi window application that spans over multiple screens. The software is written with xlib and runs on ubuntu 10.10, gnome desktop. To get the position of every window ...
0
votes
3answers
839 views

x11/xlib XCreateSimpleWindow over multiple X servers

I'm trying to follow this tutorial for programming with xlib http://tronche.com/gui/x/xlib/ this is the code i've written so far display = XOpenDisplay(NULL); screen = XDefaultScreen(display); ...
6
votes
3answers
596 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.
0
votes
1answer
452 views

Segmentation Fault In My Xlib Wrapper Class (C++)

I am attempting to create a wrapper class to the Xlib library, but I get a segmentation fault! I am new to C++ and this is probably out of my depth and maybe have my goals set to high, other than that ...
0
votes
1answer
569 views

Xlib: draw a text input box and read text as it is typed

I am trying to implement a text box where a user can type, use arrow keys, backspace, delete, etc. I would like to be able to know what is in this text box without the user needing to submit ...
0
votes
1answer
349 views

Drawing a XBM using XLib, getting black rectangle

I'm trying to do something I thought would be very simple: draw a hardcoded XBM image on a simple X window using XLib. I am using the following code, but only getting a black rectangle in the top ...
2
votes
1answer
574 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 ...
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
1k views

Saving xlib XImage to PNG

I am using xlib. I have an XImage structure filled with information from an XGetImage() call. Is there a popular method to get from XImage to something more meaningful.. namely PNG? I have looked at ...
0
votes
1answer
564 views

XOpenDisplay fails from udev event

I am trying to open the X display like so: disp = XOpenDisplay(NULL); When I run this from my users shell it works fine but if it is run from a udev event (Ubuntu 10.10) the function call returns ...
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 ...
0
votes
1answer
709 views

capture key press event using xlib

while trying to capture the F1, there is a problem, i can't capture it, because the system hook was execute showing the "help" content before my program, could anyone help me? Is there any ways to ...
0
votes
1answer
488 views

Use xlib XChangeWindowAttributes to retrieve all XWindow events

I'm trying to retrieve all windows's events by xlib. I used XChangeWindowAttributes to add SubstructureRedirectMask to root window. But when I executed this program, it showed BadAccess as following: ...
0
votes
1answer
617 views

using Xlib XnextEvent on linux using JNA

I want to grab the all global key events on linux using JNA same as window hooks. following is the code: package pack.tracker.services; //import sun.awt.X11.XEvent; //import ...

1 3 4 5 6 7