diff options
author | Jerome Pasion <jerome.pasion@nokia.com> | 2011-02-17 09:33:52 (GMT) |
---|---|---|
committer | Jerome Pasion <jerome.pasion@nokia.com> | 2011-02-17 09:33:52 (GMT) |
commit | fe1a74289a32381d58fc045f9895a159b011d58b (patch) | |
tree | 7b8a1f4431fa6df677fb719d87bba2beba9446d0 | |
parent | 9c080688f49c19c362d3f69f7d1762521efc045f (diff) | |
download | Qt-fe1a74289a32381d58fc045f9895a159b011d58b.zip Qt-fe1a74289a32381d58fc045f9895a159b011d58b.tar.gz Qt-fe1a74289a32381d58fc045f9895a159b011d58b.tar.bz2 |
Wrote an overview for the WebKit QML module.
Task-number: QTBUG-16071
-rw-r--r-- | doc/src/declarative/qmlwebkit.qdoc | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/doc/src/declarative/qmlwebkit.qdoc b/doc/src/declarative/qmlwebkit.qdoc index 0f4e86b..354e60a 100644 --- a/doc/src/declarative/qmlwebkit.qdoc +++ b/doc/src/declarative/qmlwebkit.qdoc @@ -26,22 +26,30 @@ ****************************************************************************/ /*! - \page qmlwebkit.html +\page qmlwebkit.html - \title QtWebKit QML Module +\title QtWebKit QML Module - Qt WebKit QML +Qt WebKit QML - \section1 WebKit QML Elements - \list - \o \l WebView - \o \l FlickableWebView - \endlist +\section1 WebKit QML Elements +\list +\o \l WebView +\endlist - \section1 Content +\section1 QtWebKit Module +The QtWebKit Module has a QML element, \l{WebView} for displaying web content +from a \c URL. - \section1 Usage Ideas +Import the QtWebKit module before declaring a \c WebView element: +\qml +import QtWebKit 1.0 +\endqml - \section1 Other Suggestions +\section1 Simple Usage +\snippet doc/src/snippets/declarative/webview/webview.qml document +\image webview.png + +\sa {Models and Views: WebView Example}{WebView Example}, {QML Web Browser} */ |