Tagged Questions
1
vote
1answer
373 views
Transparent window in Xwindow parent
I am trying to create an overlay window above another running application.
Let's say firefox. I implemented by using
Xcreatewindow
win = XCreateWindow( display, *firefoxwindow,
...
-2
votes
1answer
677 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, ...
2
votes
1answer
443 views
Top level window on X Window System
I want to print on the screen the information about Top level windows under Linux.
I use the xlib functions. I successfully recurse from the root window to print all the informations about all the ...
1
vote
2answers
567 views
Video decoding and rendering library for XLib
Currently what I have a Linux application that was written using Xlib and I needed to add video playing capabilities into it.
What libraries would you recommend that I could use for video decoding ...