How to call function after window is shown?

前端 未结 9 1194
余生分开走
余生分开走 2020-12-05 06:21

Using Qt I create a QMainWindow and want to call a function AFTER the windows is shown. When I call the function in the constructor the fun

相关标签:
9条回答
  • 2020-12-05 06:58

    After analyzing the solutions above, it turns that all of them, including the heavily upvoted ones, are faulty.

    Many recommend something like this:

    class MyWidget : public QWidget {
        // ...
    };
    
    void MyWidget::showEvent(QShowEvent* event) {
        QWidget::showEvent(event);
        DoSomething();
    }
    
    void MyWidget::DoSomething() {
        // ...
    }
    

    This works as long as there is no QCoreApplication::processEvents(); in DoSomething. If there is one, it processes all events in the queue, including the QShowEvent which called MyWidget::showEvent in the first place. When it gets to the original QShowEvent, it calls MyWidget::showEvent again, causing an infinite loop.

    If this happens, there are three solutions:

    Solution 1. Avoid calling processEvents in MyWidget::DoSomething, instead call update or repaint when necessary. If DoSomething calls something else, these functions should avoid processEvents also.

    Solution 2. Make DoSomething a slot, and replace direct call to DoSomething() by

    QTimer::singleShot(0, this, SLOT(DoSomething()));
    

    Since zero interval timer fires only when after all events in the queue are processed, it will process all events, including the original QShowEvent, remove them from the queue, and only then call DoSomething. I like it the most.

    Since only zero interval timer fires only when after all events in the queue are processed, you should not try to "improve" it by lengthening the interval, for instance

    QTimer::singleShot(50, this, SLOT(DoSomething())); // WRONG!
    

    Since 50 ms is usually enough time for processing events in the queue, that would usually work, causing an error which is hard to reproduce.

    Solution 3. Make a flag which prevents calling DoSomething the second time:

    class MyWidget : public QWidget {
        // ...
    };
    
    void MyWidget::showEvent(QShowEvent* event) {
        if (is_opening)
            return;
        is_opening = true;
        QWidget::showEvent(event);
        DoSomething();
        is_opening = false;
    }
    
    void MyWidget::DoSomething() {
        // ...
    }
    

    Here, is_opening is a boolean flag which should be initialized as false in constructor.

    0 讨论(0)
  • 2020-12-05 07:01

    try this:

    in mainwindow.h:

    class MainWindow : public QMainWindow
    {
        Q_OBJECT
    
    public:
        explicit MainWindow(QWidget *parent = 0);
        ~MainWindow();  
    
    protected:
          void showEvent(QShowEvent *ev);
    
    private:
          void showEventHelper();
          Ui::MainWindow *ui;
    }
    

    in mainwindow.cpp:

    MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent),
        ui(new Ui::MainWindow)
    {
        ui->setupUi(this);
    }
    
    void MainWindow::showEvent(QShowEvent *ev)
    {
        QMainWindow::showEvent(ev);
        showEventHelper();
    }
    
    void MainWindow::showEventHelper()
    {
        // your code placed here
    }
    
    0 讨论(0)
  • 2020-12-05 07:02

    Reimplement method void show() like this:

    void MainWindow::show()
    {
        QMainWindow::show();
        // Call your special function here.
    }
    
    0 讨论(0)
  • 2020-12-05 07:09

    I found a nice answer in this question which works well, even if you use a Sleep() function.

    So tried this:

    //- cpp-file ----------------------------------------
    
    #include "myapp.h"
    #include <time.h>
    #include <iosteream>
    
    MyApp::MyApp(QWidget *parent)
        : QMainWindow(parent, Qt::FramelessWindowHint)
    {
        ui.setupUi(this);
    }
    
    MyApp::~MyApp()
    {
    
    }
    
    void MyApp::showEvent(QShowEvent *event) {
        QMainWindow::showEvent(event);
        QTimer::singleShot(50, this, SLOT(window_shown()));
        return;
    }
    
    void MyApp::window_shown() {
        std::cout << "Running" << std::endl;
        Sleep(10000);
        std::cout << "Delayed" << std::endl;
        return;
    }
    
    //- h-file ----------------------------------------
    
    #ifndef MYAPP_H
    #define MYAPP_H
    
    #include <QtWidgets/QMainWindow>
    #include <qtimer.h>
    #include <time.h>
    #include "ui_myapp.h"
    
    
    class MyApp : public QMainWindow
    {
        Q_OBJECT
    
    public:
        MyApp(QWidget *parent = 0);
        ~MyApp();
    
    protected:
        void showEvent(QShowEvent *event);
    
    
    private slots:
        void window_shown();
    
    private:
        Ui::MyAppClass ui;
    };
    
    #endif // MYAPP_H
    
    0 讨论(0)
  • 2020-12-05 07:09

    Assuming you want to run your code in the UI thread of the window after the window has been shown you could use the following relatively compact code.

    class MainWindow : public QMainWindow
    {
            // constructors etc omitted.
    
    protected:
        void showEvent(QShowEvent *ev)
        {
            QMainWindow::showEvent(ev);
            // Call slot via queued connection so it's called from the UI thread after this method has returned and the window has been shown
            QMetaObject::invokeMethod(this, "afterWindowShown", Qt::ConnectionType::QueuedConnection);
        }
    
    private slots:
        void afterWindowShown()
        {
            // your code here
            // note this code will also be called every time the window is restored from a minimized state
        }
    };
    

    It does invoke afterWindowShown by name but that sort of thing is fairly common practice in Qt. There are ways of avoiding this but they're a bit more verbose.

    Note that this code should work for any QWidget derived class, not just QMainWindow derived classes.

    In theory it might be possible for a very quick user to invoke some sort of action on the UI of the displayed window before afterWindowShown can be called but it seems unlikely. Something to bear in mind and code defensively against perhaps.

    0 讨论(0)
  • 2020-12-05 07:12

    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;
    }
    
    0 讨论(0)
提交回复
热议问题