summaryrefslogtreecommitdiffstats
path: root/src/webenginewidgets/doc
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2018-03-01 11:52:51 +0100
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2018-03-08 13:01:53 +0000
commit104adb064e0a639f3e4b6eb12c978ddc515ded26 (patch)
treebb7eec453f50b7388a5e2ac8906c1d60de18beab /src/webenginewidgets/doc
parentd90885ba4885535bad6166bf1427141819e90fec (diff)
Doc: Fix doc generation for some QWebEnginePage functions
Remove #ifdef Q_QDOC defines and fix the command signatures in \fn commands or remove the commands, where possible. Task-number: QTBUG-66709 Change-Id: Ic591b53f0d52c7c938d8651cd6610f31af0cc540 Reviewed-by: Kai Koehne <kai.koehne@qt.io>
Diffstat (limited to 'src/webenginewidgets/doc')
-rw-r--r--src/webenginewidgets/doc/src/qwebenginepage_lgpl.qdoc51
1 files changed, 7 insertions, 44 deletions
diff --git a/src/webenginewidgets/doc/src/qwebenginepage_lgpl.qdoc b/src/webenginewidgets/doc/src/qwebenginepage_lgpl.qdoc
index 2c161e2df..3013903c8 100644
--- a/src/webenginewidgets/doc/src/qwebenginepage_lgpl.qdoc
+++ b/src/webenginewidgets/doc/src/qwebenginepage_lgpl.qdoc
@@ -467,14 +467,7 @@
*/
/*!
- \fn void QWebEnginePage::findText(const QString &subString, FindFlags options)
- Finds the specified string, \a subString, in the page, using the given \a options.
-
- To clear the search highlight, just pass an empty string.
-*/
-
-/*!
- \fn void QWebEnginePage::findText(const QString &subString, FindFlags options, FunctorOrLambda resultCallback)
+ \fn void QWebEnginePage::findText(const QString &subString, QWebEnginePage::FindFlags options = FindFlags(), const QWebEngineCallback<bool> &resultCallback = QWebEngineCallback<bool>())
Finds the specified string, \a subString, in the page, using the given \a options.
To clear the search highlight, just pass an empty string.
@@ -604,7 +597,7 @@
*/
/*!
- \fn void QWebEnginePage::toHtml(FunctorOrLambda resultCallback) const
+ \fn void QWebEnginePage::toHtml(const QWebEngineCallback<const QString &> &resultCallback) const
Asynchronous method to retrieve the page's content as HTML, enclosed in HTML and BODY tags.
Upon successful completion, \a resultCallback is called with the page's content.
@@ -614,7 +607,7 @@
*/
/*!
- \fn void QWebEnginePage::toPlainText(FunctorOrLambda resultCallback) const
+ \fn void QWebEnginePage::toPlainText(const QWebEngineCallback<const QString &> &resultCallback) const
Asynchronous method to retrieve the page's content converted to plain text, completely stripped of all
HTML formatting.
Upon successful completion, \a resultCallback is called with the page's content.
@@ -718,7 +711,10 @@
*/
/*!
- \fn void QWebEnginePage::runJavaScript(const QString& scriptSource, quint32 worldId, FunctorOrLambda resultCallback)
+ \fn void QWebEnginePage::runJavaScript(const QString &scriptSource, quint32 worldId, const QWebEngineCallback<const QVariant &> &resultCallback)
+ \fn void QWebEnginePage::runJavaScript(const QString &scriptSource, quint32 worldId)
+ \fn void QWebEnginePage::runJavaScript(const QString& scriptSource)
+ \fn void QWebEnginePage::runJavaScript(const QString &scriptSource, const QWebEngineCallback<const QVariant &> &resultCallback)
\since 5.7
Runs the JavaScript code contained in \a scriptSource in the world specified by \a worldId.
@@ -743,39 +739,6 @@
*/
/*!
- \fn void QWebEnginePage::runJavaScript(const QString &scriptSource, quint32 worldId)
- \since 5.7
- \overload runJavaScript()
-
- This convenience function runs the JavaScript code contained in \a scriptSource in the world
- specified by \a worldId.
-*/
-
-/*!
- \fn void QWebEnginePage::runJavaScript(const QString& scriptSource)
- \overload runJavaScript()
-
- This convenience function runs the JavaScript code contained in \a scriptSource in the same
- world as other scripts that are part of the loaded site.
-
- \sa QWebEngineScript::MainWorld
-*/
-
-/*!
- \fn void QWebEnginePage::runJavaScript(const QString& scriptSource, FunctorOrLambda resultCallback)
- \overload runJavaScript()
-
- Runs the JavaScript code contained in \a scriptSource.
-
- The script will run in the same world as other scripts that are part of the loaded site.
-
- When the script has been executed, \a resultCallback is called with the result of the last
- executed statement.
-
- \sa QWebEngineScript::MainWorld
-*/
-
-/*!
\fn void QWebEnginePage::setFeaturePermission(const QUrl &securityOrigin, Feature feature, PermissionPolicy policy)
Sets the permission for the web site identified by \a securityOrigin to use \a feature to \a policy.