2021-08-12 16:40:08 +00:00
|
|
|
Event loop exec() and main() on Qt for WebAssembly
|
|
|
|
==================================================
|
|
|
|
|
|
|
|
These examples demonstrate how QEventLoop::exec() works on
|
|
|
|
Qt for WebAssembly, and also shows how to implement main()
|
|
|
|
without calling QApplication::exec().
|
|
|
|
|
|
|
|
Contents
|
|
|
|
========
|
|
|
|
|
|
|
|
main_exec Standard Qt main(), where QApplication::exec() does not return
|
|
|
|
main_noexec Qt main() without QApplication::exec()
|
|
|
|
dialog_exec Shows how QDialog::exec() also does not return
|
2021-08-16 14:04:09 +00:00
|
|
|
thread_exec Shows how to use QThread::exec()
|
2022-07-06 21:01:59 +00:00
|
|
|
eventloop_auto Event loop autotest (manually run)
|