diff options
author | Balazs Egedi <egedib@inf.u-szeged.hu> | 2021-06-14 15:57:47 +0200 |
---|---|---|
committer | Balazs Egedi <egedib@inf.u-szeged.hu> | 2021-07-26 16:43:00 +0200 |
commit | 37cb5c751e85cb39c9098008ea21d5977c6364bc (patch) | |
tree | cd2c385ee311edd1f95c3a2b9bd87780a869e440 /examples/webengine/customdialogs/doc/src | |
parent | 6117b0ffb9a8dab550486dbfa362f7a398ff8f5b (diff) | |
download | qtwebengine-37cb5c751e85cb39c9098008ea21d5977c6364bc.tar.gz |
Update customdialogs example to work with Quick Controls 2
Task-number: QTBUG-93666
Pick-to: 6.2
Change-Id: I3716454d7a0560f58a0e2da363b1d053babe824b
Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'examples/webengine/customdialogs/doc/src')
-rw-r--r-- | examples/webengine/customdialogs/doc/src/customdialogs.qdoc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/webengine/customdialogs/doc/src/customdialogs.qdoc b/examples/webengine/customdialogs/doc/src/customdialogs.qdoc index 16eab0b6c..b75417456 100644 --- a/examples/webengine/customdialogs/doc/src/customdialogs.qdoc +++ b/examples/webengine/customdialogs/doc/src/customdialogs.qdoc @@ -253,7 +253,7 @@ \section2 Color Dialog Requests - \image customdialogs-color1.png + Currently, Qt WebEngine does not provide Color Dialog, a custom dialog should be implemented. \l [QML]{ColorDialogRequest} is a request object that is passed as a parameter of the WebEngineView::colorDialogRequested signal: @@ -273,8 +273,8 @@ \printline } We use the \c onColorDialogRequested signal handler to check whether - we should use the default color picker dialog. If not, we accept the request - and switch the view to show the \c ColorPickerForm: + we should use the default color picker dialog (which currently is not provided). + If not, we accept the request and switch the view to show the \c ColorPickerForm: \image customdialogs-color2.png @@ -294,7 +294,7 @@ \section2 File Dialog Requests - \image customdialogs-file1.png + Currently, Qt WebEngine does not provide File Dialog, a custom dialog should be implemented. \l [QML]{FileDialogRequest} is a request object that is passed as a parameter of the WebEngineView::fileDialogRequested signal: @@ -309,8 +309,8 @@ \printuntil } We use the \c onFileDialogRequested signal handler to check whether - we should use the default color picker dialog. If not, we accept the request - and switch the view to show the \c FilePickerForm: + we should use the default file picker dialog (which currently is not provided). + If not, we accept the request and switch the view to show the \c FilePickerForm: \image customdialogs-file2.png |