I have a window that has a button. I want to draw a QImage all over the parent, so that it covers the button's graphic. I don't want to inherit and override QPushButton's paintEvent for that, because I need the button to be drawn normally before the parent's paintEvent is called (and the reason I need that is so I get a consistent answer from QPixmap::grabWidget).
So, any ideas how to make the Image be drawn over the children's graphics? Maybe surpress the children's paintEvent somehow?