summaryrefslogtreecommitdiffstats
path: root/tests/manual/wasm/eventloop/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/wasm/eventloop/README.md')
-rw-r--r--tests/manual/wasm/eventloop/README.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/manual/wasm/eventloop/README.md b/tests/manual/wasm/eventloop/README.md
new file mode 100644
index 0000000000..e1a5a1a3b7
--- /dev/null
+++ b/tests/manual/wasm/eventloop/README.md
@@ -0,0 +1,15 @@
+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
+ thread_exec Shows how to use QThread::exec()
+ eventloop_auto Event loop autotest (manually run)