我現在正在編程Java一段時間......現在我進入了C++和Qt,我對GUI線程(EDT線程)和工作線程有點迷失 我試圖讓我的應用程序的主窗口只在配置窗口關閉時打開。 我不想把用於創建主窗口的代碼放在我的配置窗口的確定按鈕中。 我試圖讓他們模態,但主窗口仍然打開..... Afther配置完成我仍然有看看是否有應用程序更新...所以它的東西就像Qt在第一個關閉時打開另一個窗口
編輯:這是我的主:
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();
您是否特指應用程序的啓動?另外,你在哪裏放置了你發佈的代碼?在main()中? – Anthony 2012-04-12 02:10:59
是的,我的主... sry – fredcrs 2012-04-12 02:43:19