diff options
Diffstat (limited to 'Source/WebKit/qt/WidgetApi/qgraphicswebview.cpp')
-rw-r--r-- | Source/WebKit/qt/WidgetApi/qgraphicswebview.cpp | 41 |
1 files changed, 8 insertions, 33 deletions
diff --git a/Source/WebKit/qt/WidgetApi/qgraphicswebview.cpp b/Source/WebKit/qt/WidgetApi/qgraphicswebview.cpp index 4aa6a5f8d..a35252093 100644 --- a/Source/WebKit/qt/WidgetApi/qgraphicswebview.cpp +++ b/Source/WebKit/qt/WidgetApi/qgraphicswebview.cpp @@ -142,6 +142,7 @@ void QGraphicsWebViewPrivate::_q_scaleChanged() /*! \class QGraphicsWebView \brief The QGraphicsWebView class allows Web content to be added to a GraphicsView. + \inmodule QtWebKit \since 4.6 An instance of this class renders Web content from a URL or supplied as data, using @@ -170,33 +171,6 @@ void QGraphicsWebViewPrivate::_q_scaleChanged() */ /*! - \fn void QGraphicsWebView::titleChanged(const QString &title) - - This signal is emitted whenever the \a title of the main frame changes. - - \sa title() -*/ - -/*! - \fn void QGraphicsWebView::urlChanged(const QUrl &url) - - This signal is emitted when the \a url of the view changes. - - \sa url(), load() -*/ - -/*! - \fn void QGraphicsWebView::iconChanged() - - This signal is emitted whenever the icon of the page is loaded or changes. - - In order for icons to be loaded, you will need to set an icon database path - using QWebSettings::setIconDatabasePath(). - - \sa icon(), QWebSettings::setIconDatabasePath() -*/ - -/*! \fn void QGraphicsWebView::loadStarted() This signal is emitted when a new load of the page is started. @@ -524,7 +498,7 @@ void QGraphicsWebView::setPage(QWebPage* page) By default, this property contains an empty, invalid URL. - \sa load(), urlChanged() + \sa load() */ void QGraphicsWebView::setUrl(const QUrl &url) @@ -545,8 +519,6 @@ QUrl QGraphicsWebView::url() const \brief the title of the web page currently viewed By default, this property contains an empty string. - - \sa titleChanged() */ QString QGraphicsWebView::title() const { @@ -562,7 +534,10 @@ QString QGraphicsWebView::title() const By default, this property contains a null icon. - \sa iconChanged(), QWebSettings::iconForUrl() + In order for icons to be loaded, you will need to set an icon database path + using QWebSettings::setIconDatabasePath(). + + \sa QWebSettings::iconForUrl(), QWebSettings::setIconDatabasePath() */ QIcon QGraphicsWebView::icon() const { @@ -675,7 +650,7 @@ void QGraphicsWebView::reload() \note The view remains the same until enough data has arrived to display the new \a url. - \sa setUrl(), url(), urlChanged() + \sa setUrl(), url() */ void QGraphicsWebView::load(const QUrl& url) { @@ -691,7 +666,7 @@ void QGraphicsWebView::load(const QUrl& url) \note The view remains the same until enough data has arrived to display the new url. - \sa url(), urlChanged() + \sa url() */ void QGraphicsWebView::load(const QNetworkRequest& request, QNetworkAccessManager::Operation operation, const QByteArray& body) |