PDA

View Full Version : QMainWindow onLoaded



NoRulez
11th August 2009, 08:07
Hey @all,

is there such a SIGNAL which are emitted if the Dialog is fully loaded? I want to display a dialog with news for my application like in VisualStudio. I've already tried to generate the dialog within the showEvent, but this event is too early.

Did anybody know a solution where i can create this info dialog?

Best Regards
NoRulez

yogeshgokul
11th August 2009, 08:37
There are two kinds of show events: show events caused by the window system (spontaneous), and internal show events. Spontaneous (QEvent::spontaneous()) show events are sent just after the window system shows the window; they are also sent when a top-level window is redisplayed after being iconified. Internal show events are delivered just before the widget becomes visible.