Tagged Questions
0
votes
1answer
11 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 ...
0
votes
1answer
26 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
19 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
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
2answers
72 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
684 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
1answer
85 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
1answer
221 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
93 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
249 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
98 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 ...
1
vote
1answer
215 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
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
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
1answer
124 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 ...
0
votes
1answer
273 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,
...
4
votes
1answer
119 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 ...
1
vote
1answer
73 views
Why is X library reporting wrong string length values?
I was trying to get the width of the string, using XTextWidth() function, but for some reason the returned value is always bigger than the actual displayed length of string. In the following example, ...
0
votes
0answers
63 views
Sending XI2 GenericEvents using XSendEvent
Im trying to send XI_TouchBegin, XI_TouchUpdate and XI_TouchEnd using XSendEvent method to a client window, but im not able to receive at the client end. Where as im receiving events if i send ...
2
votes
1answer
237 views
Lag using Xlib/X11 event handling in C
Beginner user of C here.
I'm trying to build a library in C using X11/Xlib so I can use it just for little projects and I'm running into a problem when trying to handle events to get input(button ...
1
vote
1answer
46 views
Window Manager Themes and X11
In some WMs it is possible to choose theme which affects how windows are displayed, e.g. how a background of a button is coloured.
If I draw a window using bare Xlib calls, what should I do to ...
1
vote
1answer
283 views
X11 screenshot of active window fails for GTK windows
this is a sub-project of a much larger research project. I am trying to take screenshots of an active window (browser) every 100ms, which are then to be stored in memory for OpenCV processing. I found ...
0
votes
2answers
112 views
Can joystick/gamepad events be captured in the X11 event loop?
Win32 has the winmm library, which allows joystick events to be captured in the regular event loop (alongside the general window events, keyboard events, and mouse events).
Is there a similar setup ...
1
vote
1answer
171 views
C++ and XGrabKeyboard keyboard locking
I'm trying to write small C++ program which should detect are user press any key on keyboard
or make mouse move. That program I need run on Ubuntu or Centos.
That's why for key-press detection I use ...
0
votes
0answers
41 views
Why would anyone use an InputOnly window?
Read this link about creating windows.
To me, the knowledge to be gained is here:
The X server acts as if InputOnly windows do not exist for the purposes of graphics requests, exposure ...
1
vote
1answer
358 views
Empty or transparent window with Xlib showing border lines only
Is there a way to create a window with Xlib which only display the border lines, title, close button and that you can move with the mouse? The content of the window must be empty (or "totally ...
3
votes
2answers
71 views
How to remove borders of widgets in an x window program using x resource?
I would like to change the ugly default looking of gv's GUI. I used editres to get the x resource tree of gv and tried to remove borders of buttons using the following settings:
...
2
votes
1answer
167 views
How to write on root window in x11?
I've already read a lot of questions titled like this one, but none results in an answer that fits my needs.
I want to write some stuff on my root-window (in C) for displaying stuff like uptime as an ...
0
votes
2answers
229 views
X11: How to delay repainting until all events are processed?
I'm writing a program that has an X11/Xlib interface, and my event processing loop looks like this:
while (XNextEvent(display, &ev) >= 0) {
switch (ev.type) {
// Process events
...
1
vote
1answer
372 views
X11, Change Resolution and Make Window Fullscreen
I'm pulling my hair out with this one.
I'm changing the resolution of the screen programatically using the following:
int FindBestVideoMode(int screen, unsigned int &width, unsigned int ...
1
vote
1answer
69 views
Marking sections of X11 window as draggable
In case I want to have an undecorated window (for example, I may paint the decorations myself), is there a way to tell the current X11 window manager that a region of window should be draggable and ...
1
vote
1answer
200 views
Why can't I capture these KeyPress / KeyRelease events from inside my loop?
I want to record all incoming keypress events, no matter which window is in focus or where the pointer is. I have written sample code which should capture the key pressed events of the current window ...
4
votes
1answer
628 views
How do I gracefully exit an X11 event loop?
Almost every tutorial I find tells me to do this for my event loop:
XEvent event;
while (true)
{
XNextEvent(display, &event);
switch (event.type)
{
case Expose:
...
4
votes
1answer
449 views
C++ X11 clipboard selection transfer does not work
I have been porting my system to X11 and I have a problem with clipboard copy (paste is already working). I have followed this. After a while I noticed that his example does not work too. Problem is ...
1
vote
1answer
289 views
Xlib - draw only set bits of a bitmap on a window
I'm trying to draw a bitmap on a window. I only need to draw the pixels corresponding to 1 bits in the bitmap; those corresponding to 0 bits shall be left intact. I'm using code like this:
XImage ...
5
votes
2answers
743 views
How to upload 32 bit image to server-side pixmap
I'm trying to create server-side RGBA pixmap from client-side buffer. CreatePixmap & CreateImage work ok for 32 and 24 bit, but XPutImage result in Match Error returned by server
X Error of ...
0
votes
1answer
290 views
How to observe changes in connected monitors via Xlib?
I'm trying to write a program that would detect external monitors being plugged in and automatically enable and configure them through Xlib. I know that there is XRandr extension that allows this. My ...
1
vote
1answer
146 views
Is it safe for X's error handler to throw exceptions?
Is it safe to do something like this?
int foo(Display*, XErrorEvent*) {
throw 0;
}
XSetErrorHandler(foo);
I won't run into any troubles?
0
votes
1answer
118 views
Rendering performance in case of embedded containers
I have an application which displays a web-cam output in a widget using SDL. I am getting output of order of 20-25 frames per second with this.
This output is then embedded into a QX11EmbedWidget ...
0
votes
0answers
116 views
Is it possible to configure xorg to ignore mouse events on certain windows
Is it possible to configure xorg to ignore mouse events on certain windows?
I mean make certain window visible to user, but transparent to the mouse events, e.g. if there is some window always on ...
0
votes
1answer
249 views
Pthread Xlib programming
I am very new to pthread and xlib programming. I am trying to draw and move two sets of rectangles in opposite direction but my problem when I run my code only one of the threads is executed and the ...
6
votes
2answers
618 views
Embedding QWidget into X11 Window
I want to embed two QWidgets into a window created using XLib. I have written this code:
// Assume all the necessary headers included
int main(int argc, char *argv[])
{
QApplication app(argc, ...
0
votes
0answers
183 views
_NET_WM_PID and custom xlib based window manager
I'm trying to make a very minimalist window manager, which just launch programs (some Xnests), hides or shows their window depending on the standard input. I'm using python and python-xlib
Once I ...
0
votes
1answer
673 views
Understanding Xlib Failed Requests
Without going into too much detail (I am looking for debugging techniques here), I would like to understand how to better debug Xlib failed requests. In particular dealing with the glx extension. The ...
0
votes
0answers
230 views
Borderless window for linux transparency
Okay i know for this link but this method don't work for me because I can't make 100% transparent "popup" window
with him
This is my previous question
I search for "good" atom instead of ...
0
votes
1answer
277 views
Invalid X11-Window-ID if I want to close a Window I opened before. (C/C++)
I have a problem with X11. I created a normal Window and when I click onto a button I want to open a subwindow and draw something on it using cairo.
This is how I create the window:
...
0
votes
2answers
1k views
X11 Mouse Movement Event
When creating a Window in XLib
What are the masks I provide to the SetWindowAttributes.event_mask member?
What do I have to pass to the 11th paramater of XCreateWindow()
What are the Events I am ...





