I would like to create a custom shaped window in QML. The window should let mouse events pass through outside of the shape.
I tried many things.
QWindow
setMask
QApplication
installEventFilter
if (event->type() == QEvent::MouseButtonPress) { event->ignore(); // deny mouse press events return true; }
Do you have other suggestions for how this could be achieved?
1.4m articles
1.4m replys
5 comments
57.0k users