Hello,

I set my QDialog to be the top-level Window, using activateWindow().
My problem is that if the user clic on another Window (of an another application), the new Window is set to the top-level and mine is no more visible...

I would like to know if it is possible to block my QDialog at the top-level, and prevent it from being "hiden" by another Window ?
In fact, this would be like the QTextBox widget : the window stays at top-level and the user can't clic on other windows if he hasn't close the QTextBox.

My QDialog is used to give informations to my user, and is very small : it's like a bubble just above the system tray. I want it to be visible all the time. I've tried to use signals/slots to set it at top-level each time an other Window is set in front of mine, but I didn't find any helpfull signal.

Thanks for your ideas