Hi All,
I am trying to create a few QWidgets (parent and a few siblings). The siblings overlap with each other and hence am using QWidget::stackUnder() to set the order. I also want to make some of these widgets translucent. So I need to use QWidget::setWindowOpacity(). But to use QWidget::setWindowOpacity() I have set the window flags to Qt::Window|Qt::FramelessWindowHint. And setting this flags break the stackUnder() order because stackUnder needs the widgets to be siblings. So as soon as I set the window flags to Qt::Window|Qt::FramelessWindowHint the z-index (stackUnder) ordering breaks.
Can anyone tell me how to break this and let me use both z-index ordering (stackUnder) and also use the setWindowOpacity to make the widgets translucent.
Bookmarks