3
votes
1answer
54 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
71 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 ...
2
votes
1answer
37 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 ...
1
vote
2answers
42 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
63 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++){ ...
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
0answers
59 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
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
2answers
218 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
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 ...
-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: ...
0
votes
1answer
62 views

How to organize a C program that needs to create a Window and exit?

I am creating a c program that is called periodically. But upon meeting some conditions it might call a functions that uses X11 to create a window. That window will listen to events hence have a loop ...
2
votes
1answer
233 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
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
110 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 ...
3
votes
2answers
157 views

Detect running screensaver with xlib

I'm trying to detect wether a screensaver is running or not. Here's the code that I've got so far: /* LDFLAGS='-L/usr/X11R6/lib/ -lX11 -lXext -lXss' make xidle */ #include <stdio.h> #include ...
1
vote
1answer
65 views

MIT-SHM bindings for OCaml

I’m trying to extend OCaml-Xlib with bindings for the MIT-SHM extension. It’s the first time I’m trying to interface C with OCaml and I’ve never written anything in C, so I guess I’m doing something ...
1
vote
1answer
348 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 ...
-1
votes
1answer
95 views

How to get the screen refresh rate using Xlib [closed]

I'm looking for Xlib function or macro that will give me actual screen's refresh rate. Thanks.
2
votes
1answer
165 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 ...
1
vote
1answer
126 views

Xlib: window is created in wrong position

I have simple xlib program which creates window. I think it has to show window on the upper-left corner of the screen because I pass 0, 0 to XCreateSimpleWindow function, but it's in upper-middle ...
0
votes
0answers
64 views

Xlib XDrawImageString text is being cutoff by bounding box around text

I am having an issue when I'm using the function XDrawImageString on a Linux using C. The text that is outputs is being cutoff by the bounding box around the text. I'm not sure how this can be ...
2
votes
0answers
69 views

Flickering xscreensaver

Maybe this question will whet your appetite. I have been extensively editing the Fuzzyflakes xscreensaver. I have been able to give it a background but it keeps flickering. I have tried to put in ...
0
votes
0answers
67 views

Setting a background image in Screensaver window

I'm hacking a screensaver, Fuzzyflakes, to draw a picture of clouds on the background. What I'm trying to do is first load a picture with cairo_image_surface_create_from_png(). Once I get a ...
0
votes
4answers
331 views

How to detect a user logged in through GUI in Linux

I would like to capture the user name logged in through GUI in my program. My program is running as a daemon from root login. If a non root user logs in through GUI my program should be notified. I ...
1
vote
1answer
194 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 ...
0
votes
1answer
90 views

Do I need to disconnect an xcb_connection_t that I got from XGetXCBConnection?

Here's an example I saw for some GLX code: display = XOpenDisplay(0); // ... xcb_connection_t *connection = XGetXCBConnection(display); // ... XCloseDisplay(display); I noticed that there was no ...
0
votes
1answer
193 views

how to monitor mouse pointer movement on the existing windows in Linux using Xlib

I am currently writing an application which requires to monitor mouse pointer movement on all the existing windows in Linux. I am using Ubuntu 11.10 with gnome. What I need is to get the information ...
3
votes
0answers
199 views

Gtk+ delayed white screen (flash plugin + NPAPI)

I created an standalone application which run compiled flash (.swf) on a gtk+ UI with NPAPI. When my video runs, there's a small time where there's a white screen (maybe 1 or 2 sec). It's kind of ...
4
votes
1answer
623 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: ...
1
vote
1answer
287 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 ...
1
vote
1answer
204 views

Display SWF file with NPAPI (on Xlib)

I have been struggling with NPAPI for "good" examples and "specific" documentations (on Unix). I have my libflashplayer.so, on which I can have access to certain information which is: nm -D ...
4
votes
2answers
723 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 ...
2
votes
2answers
393 views

Create a c/c++ application (with Xlib) to render SWF files

Constraint : AS to be in C/C++ SO basically, the idea is to create my own window application (on a Linux environment) and load up (play) my swf file. Pretty "simple" question. I was thinking to go ...
1
vote
2answers
1k views

capture mouse with Xlib

I want to write a simple Xlib program changing the mouse behavior (to give an example, invert vertical movement). I have a problem with capturing the events. I would like the code to capture ...
0
votes
1answer
244 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 ...
2
votes
2answers
212 views

XGrabButton doesn't capture clicks when another button is held down

I have some code that uses XGrabButton to capture mouse clicks. I want it to always capture all clicks on the specified buttons, regardless of any other concerns. It currently uses the following ...
0
votes
0answers
94 views

Getting a URL text inside any browser using XLIB

I am currently writing a module in an application which requires to capture the URL that is under the current tab (here a tabbed browser is assumed) in the browser. I understand that the browser may ...
0
votes
1answer
74 views

How can I get the KeyCode associated to a given KeySym?

I have seen that XGetKeyboardMapping() would let me do that, but the documentation is opaque and I haven’t been able to find any examples. Any idea?
1
vote
1answer
1k views

OpenGL Rendering Context Produces “opcode of failed request 152 (GLX)” (Mesa 8.0 - OpenGL 3.0, Linux)

This one is a huge issue: first off, while I know a little bit about the XLib API, I wanted to test and make sure I could actually create an OpenGL rendering context (3.0) before I did anything, thus ...
1
vote
1answer
630 views

XLib with GLX Error Produced when Calling XCreateWindow()

Edited and simplified from original post: I am getting the following error: X Error of failed request: BadMatch (invalid parameter attributes) Major opcode of failed request: 1 (X_CreateWindow) ...
0
votes
1answer
276 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: ...
1
vote
1answer
437 views

XLib Window Name Problems

since 4 days, I try to see how XLib works, and I have finally understood that. Si I tried to make a short program wich retrieve open window's name. For that, I created 2 functions : Window *list ...
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 ...
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 ...
0
votes
1answer
99 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
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
874 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 ...
2
votes
1answer
235 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 ...

1 2