Take action after the main form is shown in a Qt desktop application

前端 未结 2 2026
北荒
北荒 2021-01-14 16:12

In Delphi I often made an OnAfterShow event for the main form. The standard OnShow() for the form would have little but a postmessage()

2条回答
  •  执笔经年
    2021-01-14 17:00

    I solved it without a timer using Paint event. Works for me at least on Windows.

    // MainWindow.h
    class MainWindow : public QMainWindow
    {
        ...
        bool event(QEvent *event) override;
        void functionAfterShown();
        ...
        bool functionAfterShownCalled = false;
        ...
    }
    
    // MainWindow.cpp
    bool MainWindow::event(QEvent *event)
    {
        const bool ret_val = QMainWindow::event(event);
        if(!functionAfterShownCalled && event->type() == QEvent::Paint)
        {
            functionAfterShown();
            functionAfterShownCalled = true;
        }
        return ret_val;
    }
    

提交回复
热议问题