void Ui_main::showEvent(QShowEvent * event )
{
qDebug()<<event->type();
}
I only see the value 17 before the window be displayed.
I want to catch it just AFTER the window is displayed.
Have I to use another event handling?
And, is there an event (for example) 'ready' to be sure that my window is ready for first time ? (So, I can avoid to control the showevent trigger when a window minimized is maxified)
Any help ? Thanks
Bookmarks