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
0answers
31 views

linux, C++, xft : how to use it?

I try to use Xft, the tutorial, well let them calling that a tutorial... looks like it was written in a north korean camp... I also found this one. So let me try to do a step-by-step : // g++ ...
0
votes
0answers
21 views

X11 Xlib/Xcb — replace keyboard input events

Is it possible to intercept and replace X events from the keyboard? I want to write a prank program that will, when running, intercept X input from the keyboard and replace some of the input with ...
0
votes
1answer
27 views

linux c++ xlib, how to use XSaveContext and XFindContext (example provided)

for XNextEvent(display,&e) returned by some windows I need to access to the class to whom this window belong, after some searchs on the web and books, XSaveContext and XFindContext looks to be ...
0
votes
1answer
44 views

X11/Xlib c/c++ char to XKeyEvent keycode

My need is to convert a char into a keycode to send an event with XSendEvent. I'm using XStringToKeysym("a"), but when I use chars like : I get an invalid result. Is it possible to bypass use of ...
2
votes
2answers
65 views

linux C++ xlib, does the processor go to fast?

here something sound like tricky for me, actualy i'm using Xlib to draw some windows. One is for plotting some 2D results in a image, so this one is drawn only when all calculus are done. another one ...
2
votes
2answers
43 views

Equivalent of “Invalidate Rect” / “WM_PAINT” in X11

I'm Porting some code from Windows to XLib. In the windows code, I can force a redraw by calling InvalidateRect and then handling the corresponding WM_PAINT message. However, I am having trouble ...
0
votes
0answers
25 views

Fixed relative position between two windows with Xlib

I'm using Xlib in Linux to draw two windows, let's say window A and window B. I want to keep fixed the relative position between two established corners of them that they have when mapped. So that if ...
0
votes
1answer
38 views

linux C++ XImage RGB <-> BGR?

I have a vector containing RGBA (actualy I don't care about the alpha channel) value from a picture, I want to draw this picture with xlib. So I have to use an XImage and to got one I need to use ...
0
votes
1answer
25 views

(XSetWindowBackground) how to convert “RGB” <-> “unsigned long”

I want to set the background of a window with color, but XSetWindowBackground has an unisgned long to set the color, how can I link an unsigned long for a rgb value ?
0
votes
1answer
28 views

XSelectInput is not working for ButtonPressEvents,how to do it?

I am writing a simple programmes in C where i want to capture all the mouse and Keyboard events that are taking place. I tried to use "XGrapPointer" but it results in locking the screen and i can not ...
0
votes
0answers
22 views

XLib and C++11 How to tell which button has been pressed?

In XLib, how can I determine which button has been pressed? For example: while (!quit) { int event_count; if ((event_count = XEventsQueued(d, QueuedAlready)) > 0) { XEvent e; ...
1
vote
1answer
20 views

How to use xlib to listen for screen resolution changes on Linux

I'm writing a little native routine to notify another process that the user has changed the screen resolution. I tried using gtk but it's unstable on non composite window managers and crashes often. ...
0
votes
0answers
37 views

Click through window, XSendEvent is not working properly

I am trying to make a click through window. So I assume I need to pass XButtonEvents to the window directly under mine. It is selecting the right window however when running xev on the window that ...
0
votes
1answer
44 views

Passing mouse events with XSendEvent

I am trying to use XSendEvent to pass events from one window to the next. More specifically I want all mouse events to be passed, so XFocusEvent, XButtonEvent and I assume the rest should be handled ...
0
votes
0answers
77 views

XGetWindowProperty does not list all open windows

I am working on Chrome extension for Linux that utilizes library .so created with Firebreath. For now it should move a Chrome window with no title or "untitled" to a different display. To achieve ...
1
vote
1answer
35 views

Xscreensaver code giving BadMatch error

I've been able to hack an Xscreensaver to where I'm getting my desired look (big thanks to luser droog for his aid). I added in some Cairo code because it was difficult to implement what I wanted ...
0
votes
1answer
16 views

What toolkits shall I use with xlib for just adding input fields and a button?

I'm emulating the Ubuntu lockscreen. Which toolkit do you recommend me to use?
1
vote
0answers
41 views

(xlib) how “mywm” can catches a window opened before itself?

I have in my ".xinitrc" : xterm & mywm in mywm I use XQueryTree to get the list of all windows children of root. I don't get the window of xterm. I need to do that to add my titlebar to windows ...
0
votes
0answers
71 views

Can I treat desktop background like a window using gtk or xlib?

Part of a school project is to figure out if you can use the Ubuntu desktop like an ordinary window, and draw to it, put buttons, etc... Is there any toolkit that doesn't just change the desktop ...
0
votes
1answer
34 views

Many XSetInputFocus's and XSync Causes Error

I'm getting an error when closing the display (or synchronizing it) after switching the input focus to each window with a matching process id. Below is the error that I am getting and the source code ...
1
vote
1answer
45 views

How a draw a string in a splash screen by Xlib

here is my code and I can not jump out of the while(!done) function use XFlush(d) can show the display form buffer and do not disappear before XCloseDisplay(d) and I want to make draw string like ...
0
votes
1answer
24 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 ...
2
votes
0answers
27 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
79 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
83 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 ...
1
vote
1answer
79 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
52 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
24 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
62 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
50 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
75 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
81 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
56 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
40 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
51 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
102 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
746 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
70 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
65 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
98 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
162 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
113 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
256 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
114 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
263 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
112 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
104 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
232 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
106 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
81 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 ...

1 2 3 4 5 8