I'm trying to make a transparent window stays on top (z-order).

I want to implement something like layer that indicates some parameters on the other program.

So what I need is to make background transparent, not whole widget with QWidget::setWindowOpacity function.

I found some documents about it

  1. http://doc.trolltech.com/qq/qq16-background.html

  2. (http://doc.trolltech.com/4.6/qwidget.html#transparency-and-double-buffering)

The first one explains "New in Qt 4.1: The Backing Store" and the picture is exactly what I want.

The second one explains more details about it. (left picture)

The left widget has no additional properties or widget attributes set. This default state suits most custom widgets using transparency, are irregularly-shaped, or do not paint over their entire area with an opaque brush.

But I don't know how to do it. I'm using Qt 4.6 B.T.W.

link|improve this question

75% accept rate
I think my answer here is what you want: stackoverflow.com/questions/1909092/… – ctd Jul 14 '10 at 20:53
Thank you very much! – user307844 Jul 15 '10 at 6:50
feedback

1 Answer

Taken from ctd's answer as suggested in the comments: QT4: Transparent Window with rounded corners

this->setAttribute(Qt::WA_TranslucentBackground, true); 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.