Commit 767eb0e1 authored by Leena Miettinen's avatar Leena Miettinen
Browse files

Doc: edit the porting instructions


Follow the Qt documentation guidelines and fix some grammar
issues.

Change-Id: I1e708a2089b112aa079871b19698f71f0d3e85c3
Reviewed-by: default avatarMichael Brüning <michael.bruning@theqtcompany.com>
Showing with 19 additions and 20 deletions
...@@ -28,10 +28,9 @@ ...@@ -28,10 +28,9 @@
/*! /*!
\page qtwebenginewidgets-qtwebkitportingguide.html \page qtwebenginewidgets-qtwebkitportingguide.html
\title Porting from Qt WebKit to Qt WebEngine \title Porting from Qt WebKit to Qt WebEngine
\brief This guide gives an overview of the differences between the Qt WebKit \brief Overview of the differences between the Qt WebKit and Qt WebEngine API.
and Qt WebEngine APIs in applications.
This guide provides rough steps to follow when porting an application that uses the The following sections contain information about porting an application that uses the
\l{http://doc.qt.io/archives/qt-5.3/qtwebkit-index.html}{Qt WebKit} \l{http://doc.qt.io/archives/qt-5.3/qtwebkit-index.html}{Qt WebKit}
\l{http://doc.qt.io/archives/qt-5.3/qml-qtwebkit-webview.html}{QWebView API} to use the \l{http://doc.qt.io/archives/qt-5.3/qml-qtwebkit-webview.html}{QWebView API} to use the
\l{Qt WebEngine} QWebEngineView. \l{Qt WebEngine} QWebEngineView.
...@@ -94,7 +93,7 @@ ...@@ -94,7 +93,7 @@
\endcode \endcode
\section1 QWebFrame has been Merged into QWebEnginePage \section1 QWebFrame Has Been Merged into QWebEnginePage
It is not possible to access sub-frames. Methods of the main QWebFrame are It is not possible to access sub-frames. Methods of the main QWebFrame are
now available directly through the QWebEnginePage itself. now available directly through the QWebEnginePage itself.
...@@ -113,12 +112,12 @@ ...@@ -113,12 +112,12 @@
\endcode \endcode
\section1 Some methods now return their result asynchronously \section1 Some Methods Now Return Their Result Asynchronously
Since Qt WebEngine uses a multi-process architecture, applications needs Because Qt WebEngine uses a multi-process architecture, calls to some methods from applications
to return to the event loop where the result will be received asynchronously will return immediately, while the results should be received asynchronously via a callback
from Qt WebEngine's render process. A function pointer, a functor or a lambda mechanism. A function pointer, a functor, or a lambda expression must be provided to handle the
expression must be provided to handle the result when it is available. results when they become available.
\b {Qt WebKit} \b {Qt WebKit}
\code \code
...@@ -178,14 +177,14 @@ ...@@ -178,14 +177,14 @@
\endcode \endcode
\section1 Qt WebEngine does not Interact with QNetworkAccessManager \section1 Qt WebEngine Does Not Interact with QNetworkAccessManager
Some classes of Qt Network such as QAuthenticator were reused for their interface Some classes of Qt Network such as QAuthenticator were reused for their interface
but, unlike Qt WebKit, Qt WebEngine has its own HTTP implementation and can't but, unlike Qt WebKit, Qt WebEngine has its own HTTP implementation and cannot
go through a QNetworkAccessManager. go through a QNetworkAccessManager.
Signals and methods of QNetworkAccessManager that are still supported were The signals and methods of QNetworkAccessManager that are still supported were
moved to QWebEnginePage directly. moved to the QWebEnginePage class.
\b {Qt WebKit} \b {Qt WebKit}
\code \code
...@@ -201,11 +200,11 @@ ...@@ -201,11 +200,11 @@
\endcode \endcode
\section1 Notes about Individual Methods \section1 Notes About Individual Methods
\section2 evaluateJavaScript \section2 evaluateJavaScript
QWebFrame::evaluateJavaScript was renamed and moved as QWebEnginePage::runJavaScript. QWebFrame::evaluateJavaScript was moved and renamed as QWebEnginePage::runJavaScript.
It is currently only possible to run JavaScript on the main frame of a page and the It is currently only possible to run JavaScript on the main frame of a page and the
result is returned asynchronously to the provided functor. result is returned asynchronously to the provided functor.
...@@ -243,15 +242,15 @@ ...@@ -243,15 +242,15 @@
\endcode \endcode
\section1 Unavailable Qt WebKit APIs \section1 Unavailable Qt WebKit API
Qt WebKit classes and methods in this list will not be available in Qt WebEngine. The Qt WebKit classes and methods in this list will not be available in Qt WebEngine.
\table \table
\row \row
\li QGraphicsWebView \li QGraphicsWebView
\li Qt WebEngine requires hardware acceleration. Since we couldn't support \li Qt WebEngine is designed for being used with hardware acceleration. Because we could not
a web view class in a QGraphicsView unless it is attached to a QGLWidget support a web view class in a QGraphicsView unless it would be attached to a QGLWidget
viewport, this feature is out of scope. viewport, this feature is out of scope.
\row \row
\li QWebElement \li QWebElement
...@@ -266,7 +265,7 @@ ...@@ -266,7 +265,7 @@
was dropped from the HTML5 standard. was dropped from the HTML5 standard.
\row \row
\li QWebPluginFactory, QWebPage::setPalette, QWebView::setRenderHints \li QWebPluginFactory, QWebPage::setPalette, QWebView::setRenderHints
\li Qt WebEngine renders web pages using Skia and isn't using QPainter \li Qt WebEngine renders web pages using Skia and is not using QPainter
or Qt for this purpose. The HTML5 standard also now offers much or Qt for this purpose. The HTML5 standard also now offers much
better alternatives that were not available when native controls better alternatives that were not available when native controls
plugins were introduced in Qt WebKit. plugins were introduced in Qt WebKit.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment