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.
0
votes
1answer
18 views
Why is the lock activated by XInitThreads non-recursive?
Consider the following call flow:
Function A calls XCheckIfEvent passing a pointer to function B in the predicate parameter. Function B calls XGetWindowProperty.
If XLib is initialized with the ...
1
vote
0answers
20 views
Replaying “active” keyboard grabs with Xlib on Linux
I've been using Xlib's XGrabKey to track input events for single keys with XAllowEvents=ReplayPointer so that the target window also gets the event.
I need to do this for the entire keyboard, ...
3
votes
1answer
57 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 ...
2
votes
2answers
75 views
Generating Perlin Noise with Xlib
I'm trying to add a cloud to an Xscreensaver. I like the looks of a "plasma" cloud, so I'm trying to draw a perlin noise-based cloud to the background of the Xscreensaver. I have code which creates ...
0
votes
0answers
41 views
cv2.imshow() on a different screen
In a Python script using OpenCV, I would like to open named windows on different screens/displays.
I'm on Linux and X is set up such that I have two displays. I can control on which display named ...
2
votes
1answer
40 views
Zoom MandelBrot Set
My calculations seem to be moving the image around more than scaling it. Not quite sure where I'm going wrong. I thought I followed the other post on here correctly but it's not quite right.
int xPos ...
0
votes
0answers
19 views
Unity with Xlib: How to get panel and launcher information?
I'm trying to size and position my window in an adaptive way on my application's start-up; taking up as much screen space as possible, without overlapping the panel or launcher.
Does Xlib provide a ...
0
votes
0answers
54 views
Creating custom tk canvas widget
I need to crate custom tk canvas widget (plot). How to do it is described http://www.tcl.tk/man/tcl8.0/TkLib/CrtItemType.htm.
It is the dispay function which is called when canvas need to show ...
1
vote
1answer
45 views
XRender Display pictures from disk / application generated images
I am making an application on Linux with GCC in which I've been loading my pictures from disk with PngLIB for some time now. I jumped from the standard xlib to the Xrender extension in order to make ...
1
vote
2answers
44 views
getting mouseclick coordinates with Xlib
I would like to know how to get the x and y coordinates of a mouseclick with Xlib anywhere on the screen. I've found this post which gets the current pointer position
How can I get the current mouse ...
0
votes
1answer
65 views
Xlib: Showing the webcam using PIxmap and XDrawPoint is too slow… how can I improbe?
I want to open the webcam and show the video with Xlib.
So, I open the webcam, get the image, and I do something like:
for(x = 0; x < webcamX; x++){
for(y = 0; y < webcamY; y++){
...
0
votes
0answers
45 views
Display data from pnglib as an ximage
I need to import a PNG and display it on screen in a Motif application. For reasons best known to myself, I don't want to use any more libraries than I need to, and I'd like to stick with just Motif ...
1
vote
2answers
38 views
Need for XEventsQueued(display, QueuedAfterReading) in XCB
I am migrating some code of CYBOI from Xlib to XCB.
CYBOI uses a couple of threads for different communication channels like:
serial_port, terminal, socket, x_window_system.
However, it uses these ...
0
votes
1answer
41 views
XKB - Get Caps Lock mask
I've been trying to write a program that enables/disables different locks (num lock, caps lock, scroll lock), but I've been having issues with caps lock. For some reason, XKB doesn't know about ...
0
votes
2answers
67 views
Making a screenshot using Xlib and Cairo libs [fail]
I'm trying to make a screenshot using Xlib and Cairo, however I'm not sure to do it the good way, "stride" is really confusing me.
Here's the code :
#include <stdio.h>
#include ...
24
votes
3answers
671 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 ...
0
votes
0answers
60 views
How to free Xlib cursor? XFreeCursor has no effect
Using XCreateFontCursor() and freeing it by XFreeCursor() has no effect. I keep getting memory use on exit using Valgrind.
Is there some way to fix this?
As far as I can understand there is no other ...
0
votes
0answers
44 views
XDrawString flicker even with double-buffering
I'm working on an xscreensaver, and can't figure out what's causing text drawn with XDrawString to flicker so much. I'm drawing a box with XFillRectangle, and then drawing the text in this box. I have ...
0
votes
1answer
81 views
Increase font size and Properties in X11 R6
I am using X11 R6 to write text using XDrawString() .In this i can't increase the font size and i don't know how to use superscript and subscript.
Thanks in Advance
0
votes
0answers
147 views
bind window pixmap to texture using GLX_EXT_texture_from_pixmap in opengl
i want to know how to bind a window pixmap to a OpenGL Texture using the GLX_EXT_texture_from_pixmap extension , i don't get it to work, this is my code:
const int pixmap_config[] = {
...
0
votes
1answer
97 views
Drawing on the GtkDrawingArea with Xlib func
I have a problem.
I need to draw on the widget type GtkDrawingArea using functions Xlib (XDrawLine etc).
Why?
I use the library, which draws with Xlib. And I need to pass any arguments (Display, ...
0
votes
1answer
219 views
How to load bmp file using x11 window background
I try to set background image in x11 window using bmp file. I have using XReadBitmapFile but its not working. How can i use bmp file to set x11 window background. Thanks in advance
0
votes
1answer
88 views
how do I convert XLib keycode to microsoft virtual key?
How do I convert the X11 keycode to a microsoft virtual key code
int processKeyboardMessage( XEvent *event )
{
assert( KeyPress == event->type );
//TODO: Before returning convert keycode into ...
9
votes
1answer
248 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 ...
1
vote
2answers
97 views
How to avoid flickering in Graphical drawings using X11
We are drawing graph in a window. We are updating the curves for every 50ms
with the values received from hardware say like sensors.
We need to display the values in graphical format. So we are ...
0
votes
0answers
84 views
xlib PropertyNotify Events (FullScreen/Maximize)
How do you read for specific FullScreen/Maximize events? If my program sends a state client message "xSendEvent" with _NET_WM_STATE and the appropriate _NET_WM_STATE_FULLSCREEN or ...
1
vote
1answer
212 views
How to do a fake mouse wheel move in linux
I'm trying to simulate keyboard and mouse events, i've successfully made fake keyboard keydown, keyup. Fake mouse button down, up and fake mouse move, but i don't found how to do fake mouse wheel ...
0
votes
0answers
98 views
Some keys are not blocked with XGrabKeyboard
I'm writing a code to get pressed/released key and to prevent that key to interact with the system (ex.: if the user press Alt+F4, the key is displayed in the console but no window is closed)
In ...
0
votes
1answer
71 views
Acessing other window's title in Xwindow
I'm writing a program in C++ (Linux,XWindow) that is supposed to modify an active window's title. More specifically, append certain text to it.
Is it possible to get a Window handle of an active ...
0
votes
0answers
25 views
0
votes
0answers
248 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
0answers
187 views
Migrating from xlib to xcb, drawing
Edit: I modified the code a little to take out some unnecessary stuff, for some reason before I needed to use fillrectangle so the window was drawn correctly i tested and now works fine for some ...
0
votes
2answers
219 views
How to read mouse click event from X server
I want to log my mouse click positions. I have tried this;
#include <stdio.h>
#include <stddef.h>
#include <X11/Xlib.h>
#include <assert.h>
#include <unistd.h>
#include ...
0
votes
1answer
60 views
XWarpPointer does not work on ubuntu 12.04 in wmware player
Hello i'm trying to move the mouse pointer by using Xlib in my Qt application:
cout <<"move mouse to "<<x<<","<<y<<endl;
XWarpPointer(defaultdisplay, None, desktoproot, ...
0
votes
0answers
27 views
How can I grab buttonRelease events from outside my window?
I want to be notified of buttonRelease events that happen outside of my client window (specifically, buttonRelease on the window's toolbar) but I can't seem to make it work. I think I need to use ...
0
votes
0answers
73 views
Sending a MotionNotify using XSendEvent
I'm trying to figure out how to send a MotionNotify event to X. I know about XWarpPointer but I don't want to use it now.
This code is the result of some googling about XSendEvent.
I can see that ...
0
votes
1answer
97 views
Disable actions, move, resize, minimize, etc using python-xlib
I'm making a program where I need to lock the position of a window on the screen, one would think the easy way to do this is using _NET_WM_ALLOWED_ACTIONS but apparently didn't work or I don't know ...
0
votes
0answers
70 views
Certain GLX calls in one dynamic library segfault unless first called in another library
I'm trying to create an application which uses OpenGL but dynamically chooses the window system, window system binding, and OpenGL profile (i.e. Xlib+GLX+OpenGL, Xlib+EGL+OpenGL, Xlib+EGL+OpenGLES, ...
0
votes
0answers
29 views
Point jumps after XGrabPointer call
I got a window set up with xlib and I'm using XGrabPointer to lock the pointer inside this window. Resolution is 640 x 480
When I call XGrabPointer if the pointer is located somwhere outside of the ...
0
votes
1answer
48 views
Determining if there are events in the queue with X11/Xlib
I'm working on an X11 application and I'm trying to write a function that will process any events currently in the queue and then return without blocking.
All of the Xlib tutorials that I've found ...
0
votes
0answers
28 views
Why can't I call XSelectInput in main thread of chrome?
I'm writing a chrome plugin and I have to track the move and resize event of chrome, so I open a display by XOpenDisplay(NULL), and use XSelectInput to select the StructureNotifyMask event.
But the ...
0
votes
0answers
222 views
NV-GLX missing extension in OS X Lion
I connect to a remote linux machine using "ssh -X machine", and then I run a graphical application, so its window is displayed on my local OS X Lion machine using X Window. I get the error
"Xlib: ...
0
votes
1answer
121 views
How to interpret the field 'data' of an XImage
I am trying to understand how the data obtained from XGetImage is disposed in memory:
XImage img = XGetImage(display, root, 0, 0, width, height, AllPlanes, ZPixmap);
Now suppose I want to decompose ...
0
votes
0answers
98 views
How can I simulate a drag action using Xlib?
I have an application which uses Xlib library for simulate a mouse on the screen.
I used XQueryPointer and XWarpPointer functions with which I can simulate a mouse movement and also a click. My ...
2
votes
1answer
235 views
Draw on top of the screen using xlib
I want to draw some primitives on top of all windows on the screen. I've found some code in C and tried to port it to use python's xlib:
from Xlib.display import Display
from Xlib import X
from Xlib ...
1
vote
2answers
136 views
Xlib keyboard polling
I'm working on a multi-platform OpenGL application, for which I'm using Xlib under Linux. I understand that Xlib input handling is strongly event-based, but my program already does its own event ...
0
votes
1answer
255 views
Change Xlib window background color with C++
This is Linux. I have created a window and I want to change its background color to green. This is how my code looks like:
Window xwin = XCreateSimpleWindow(dis,
...
5
votes
0answers
94 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 ...
4
votes
1answer
116 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 ...
-2
votes
1answer
95 views
Capture global mouse press and release
I'd like to capture press and separately release of button 2 of my mouse. I wanted to use xbindkeys but afaik it doesn't give me such functionality. (does it?)
This: ...





