qt6-bb10/examples/widgets/richtext/textedit
Mikolaj Boc 7022d0e223 Replace QDialog::exec() with open() in text edit example
On WASM, the shortcut triggering the dialog in textedit example
seemingly lets the event invoke the default action. What really happens
is that the dialog's exec() does not return and WASM does not have a
chance to set preventDefault() on the keyboard event it receives. This
masks other problems with keyboards shortcuts.

Uses of exec() on message boxes were replaced, too. Closing operation
is now performed in two steps, first the event is ignored and maybeSave
is called to query for potential changes of the text document.
If there are no changes or the file is discarded, the close continues
with a second event, now accepted.

PrintDialog::exec(), QPrintPreviewDialog::exec(), QFileDialog::exec()
were also eliminated in favor of open().

Finally, indirect calls to exec() via QColorDialog::getColor were
removed.

Task-number: QTBUG-76587
Change-Id: Ia90fad46ec3f94244723512be3ec93b64df9d9ef
Reviewed-by: Mikołaj Boc <Mikolaj.Boc@qt.io>
2023-06-20 07:28:42 +01:00
..
images Support CSS text-decoration-color in underlines, overlines, strikethrough 2021-05-07 17:00:20 +02:00
CMakeLists.txt Examples: Use PRIVATE CMake linkage 2022-11-30 14:48:50 +01:00
example.html Fix typos in docs and comments 2022-06-15 21:31:02 +02:00
example.md Fix typos in docs and comments 2022-06-15 21:31:02 +02:00
main.cpp Examples: Remove unnecessary Q_INIT_RESOURCE calls 2023-06-08 16:15:02 +00:00
textedit.cpp Replace QDialog::exec() with open() in text edit example 2023-06-20 07:28:42 +01:00
textedit.h Replace QDialog::exec() with open() in text edit example 2023-06-20 07:28:42 +01:00
textedit.pro qtlite: Skip building examples when configured with no-feature-itemviews 2018-01-12 07:58:20 +00:00
textedit.qdoc Use SPDX license identifiers 2022-05-16 16:37:38 +02:00
textedit.qrc Support CSS text-decoration-color in underlines, overlines, strikethrough 2021-05-07 17:00:20 +02:00