I've noticed that the custom QEvents(QEvents subclasses or simply events created with a User-type) are not propagated to the top widget...
This is a pain in the neck for me since if i don't want to do something like:
Qt Code:
  1. par = self.parent().parent().parent().parent()...so on...
  2. qApp.postEvent(par,event)
To copy to clipboard, switch view to plain text mode 
(I'm writing using python, translate "self" with "this" and "." with -> or :: and it's the same as C++ code)

I thought that every QWidget subclass wouldn't accept User-type QEvents since if they do so they block the propagation of the event doing nothing(which is completely useless...)

Any (other) solution for this?