How can I create a widget or window that will be just a transparent image?
I mean something like in this program: sakura script player
What i tried is:
label = QtGui.QLabel(None,
QtCore.Qt.FramelessWindowHint | QtCore.Qt.WindowStaysOnTopHint)
label.setPixmap(QtGui.QPixmap('c:\transparent.png'))
label.setScaledContents(True)
label.show()
but it generates just a rectangle window, in spite of image's transparency