How can i create a partially transparent window with rounded borders (no standard borders)?
(i used Qt::FramelessWindowHint to disable standard borders)
I tried stylesheets, but "border-radius" and "opacity" doesnt seem to have any effect on the window, it only works on children of the enclosing widget.
My second idea was, to make the window fully transparent (with setWindowOpacity), and then add an additional widget with rounded corners (since border-radius works on the children), and then group all my other widgets into that widget, but that does not work since "setWindowOpacity" affects all children aswell (i havent found a way to change this behaviour).
And any ways to make the outer window transparent i could think of (like stylesheets "opacity") dont work properly (i only get a black box instead of a transparent window)
Any help would be highly appreciated.