user753758
user753758

Reputation: 75

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,
                   50, 300, 400, 400,
                   0,
                   visualinfo.depth,
                   InputOutput,
                   visualinfo.visual,
                   CWColormap|CWEventMask|CWBackPixmap|CWBorderPixel,
                   &attr
                   ) ;

I searched *firefoxwindow by using XQueryTree()

and then followed this code https://gist.github.com/903479

The result is the transparent window when I use the XRoot as parent. But, when I try to use firefoxwindow or other application window as parent, it became optique.

Upvotes: 5

Views: 2363

Answers (1)

Andrey Sidorov
Andrey Sidorov

Reputation: 25456

In your case you need to composite window pixmap with background window manually. When you create window with root as parent transparency is handled by compositing window manager

Upvotes: 4

Related Questions