vote up 11 vote down star
4

Update

see Using Blur Behind on Windows for an example of using Qt and DWM.alt text


Original question:

I want to create a Windows Aero Glass window with Qt, now it looks like this: alt text

But after calling some my_window->repaint() my window's label becomes broken: alt text

But now if I resize the window slightly, it repaints properly.


The question is: how do I erase the window background, so that widgets would paint themselves on a clean glass?


The short code to reproduce the problem is (Vista with Aero):

class Window(QWidget):
	def __init__(self, *args):
		QWidget.__init__(self, *args)
		self.setLayout(QVBoxLayout())
		self.layout().addWidget(QLabel("This is the text"))

		# let the whole window be a glass
		self.setAttribute(Qt.WA_NoSystemBackground)
		from ctypes import windll, c_int, byref
		windll.dwmapi.DwmExtendFrameIntoClientArea(c_int(self.winId()), byref(c_int(-1)))
	def mousePressEvent(self, event):
		self.repaint()

You can click the window now, or just hit Alt-Tab several times.

Anyway, using labels with Aero Glass is not what I need, because QLabel doesn't know how to paint itself with a while glow (like the title of the window). What I need is a general way to clean the "glass".

flag

57% accept rate
Why call repaint? Can't the window manager just deal with the control drawing on its own? – Soviut Jan 19 '09 at 5:25
Actually you shouldn't repaint — just use Alt-Tab several times, the window will be repainted. – goodrone Jan 24 '09 at 13:07

2 Answers

vote up 4 vote down check

Just use:

QPainter p

p.setCompositionMode(QPainter::CompositionMode_DestinationIn);
p.fillRect(boundsRect, QColor(0, 0, 0, 0));

This discards the old contents and fills with transparent color.

More info at

Edit: Better use CompositionMode_Clear and paint the rect with whatever color.

link|flag
vote up 0 vote down

Can you provide us the paint code ? Do you subclass a widget ?

link|flag

Your Answer

Get an OpenID
or

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