我现在对 Java 进行编程已经有一段时间了......现在我进入了 C++ 和 Qt,我对 GUI 线程(EDT 线程)和工作线程有点迷失,我试图让我的应用程序的主窗口只打开当配置窗口关闭时。我不想将用于创建主窗口的代码放在我的配置窗口的 OK 按钮中。我试图使它们成为模态,但主窗口仍然打开......配置完成后我仍然需要查看是否有应用程序更新......所以它就像
编辑:这是我的主要内容:
ConfigurationWindow *cw = new ConfigurationWindow();
//if there is no text file - configuration
cw->show();
//**I need to stop here until user fills the configuration
MainWindow *mw = new MainWindow();
ApplicationUpdateThread *t = new ApplicationUpdateThread();
//connect app update thread with main window and starts it
mw->show();