@Markkyboy
Hello,
My problem is the opposite.
I want to make this entirely on Qt (and pyside2 that I know) not Qt Quick that I don't know.
(I do this for hobby I'm not a professional developer)
Do you have any insight to give me?
I would like to make a transparent window and I would love to be able to click other windows below.
Up until now I discovered
Qt.WindowTransparentForInput | Qt.WindowStaysOnTopHint
Qt.WA_TranslucentBackground
With the above I get a decorated window that I can move around within my monitor like in the photo below.
This is what I I want, but I cannot interact with the window below.
I also discovered that I need
Qt.FramelessWindowHint
with this I can successfully interact with windows below (say z-index in an CSS fashion), like firefox, telegram or libreoffice.
this solves the latter problem of not being able to interact with the window below, but this time I get a frameless window (like the property suggests! :) , but that I don't want...), and I cannot move or resize it, which I need.
How can I combine the two features?
Thanks
[image: 0e00f0c7-7f30-4a81-8f7e-369219ee4ef0.jpg]