I have two overlapping widgets in a window child A and child B. Child A is above B and gets mouse events but sometimes the click should pass through and eventually hit child B.
The ideal solution would have been to use event->ignore()
but this passes the event to the parent widget, not siblings.
The "pass all" solution setAttribute(Qt::WA_TransparentForMouseEvents);
does not work either because child A needs to capture some events.
How do I tell Qt "I do not want to handle this event, act like I am not there" ?
Here is a possible option :
For example :
Hope this helps.
If the event have to be ignored by Child-A, emit a signal and capture it with its parent, then the parent emits a new signal to be captured by Child-B
Child-A -> Parent -> Child-B
(Signal) -> (Slot)(Signal) -> (Slot)
You may also approach the issue from the other side. Instead of forwarding events to the "other" widget, you could have your other widget listen in to events for the first widget using an event filter. I am not sure if that fits your use case, it depends on what/who determines what events are to be handled by what object.
The easier solution (if applicable) is to set
WA_TransparentForMouseEvents
depending on your click-through condition.For example, if you want to click through certain regions of Child-A, you can use its
mouseMoveEvent()
to check whetherWA_TransparentForMouseEvents
needs to be set or unset. Then click events pass through automatically.If you cannot determine whether a click event should be accepted before it has actually been triggered, you can do something like this:
Disclaimer: All of this written down by heart after a year of not doing Qt, so please correct me on name or type errors.