Home · All Classes · Modules

QWebView Class Reference
[QtWebKit module]

The QWebView class provides a widget that is used to view and edit web documents. More...

Inherits QWidget.

Methods

Qt Signals


Detailed Description

The QWebView class provides a widget that is used to view and edit web documents.

QWebView is the main widget component of the QtWebKit web browsing module. It can be used in various applications to display web content live from the Internet.

A web site can be loaded onto QWebView with the load() function. Like all Qt widgets, the show() function must be invoked in order to display QWebView. The snippet below illustrates this:

     QWebView *view = new QWebView(parent);
     view->load(QUrl("http://qt-project.org"));
     view->show();

Alternatively, setUrl() can also be used to load a web site. If you have the HTML content readily available, you can use setHtml() instead.

The loadStarted() signal is emitted when the view begins loading. The loadProgress() signal, on the other hand, is emitted whenever an element of the web view completes loading, such as an embedded image, a script, etc. Finally, the loadFinished() signal is emitted when the view has loaded completely. It's argument - either true or false - indicates load success or failure.

The page() function returns a pointer to the web page object. See Elements of QWebView for an explanation of how the web page is related to the view. To modify your web view's settings, you can access the QWebSettings object with the settings() function. With QWebSettings, you can change the default fonts, enable or disable features such as JavaScript and plugins.

The title of an HTML document can be accessed with the title() property. Additionally, a web site may also specify an icon, which can be accessed using the icon() property. If the title or the icon changes, the corresponding titleChanged() and iconChanged() signals will be emitted. The textSizeMultiplier() property can be used to change the overall size of the text displayed in the web view.

If you require a custom context menu, you can implement it by reimplementing contextMenuEvent() and populating your QMenu with the actions obtained from pageAction(). More functionality such as reloading the view, copying selected text to the clipboard, or pasting into the view, is also encapsulated within the QAction objects returned by pageAction(). These actions can be programmatically triggered using triggerPageAction(). Alternatively, the actions can be added to a toolbar or a menu directly. QWebView maintains the state of the returned actions but allows modification of action properties such as text or icon.

A QWebView can be printed onto a QPrinter using the print_() function. This function is marked as a slot and can be conveniently connected to QPrintPreviewDialog's paintRequested() signal.

If you want to provide support for web sites that allow the user to open new windows, such as pop-up windows, you can subclass QWebView and reimplement the createWindow() function.

Elements of QWebView

QWebView consists of other objects such as QWebFrame and QWebPage. The flowchart below shows these elements are related.

Note: It is possible to use QWebPage and QWebFrame, without using QWebView, if you do not require QWidget attributes. Nevertheless, QtWebKit depends on QtGui, so you should use a QApplication instead of QCoreApplication.


Method Documentation

QWebView.__init__ (self, QWidget parent = None)

The parent argument, if not None, causes self to be owned by Qt instead of PyQt.

Constructs an empty QWebView with parent parent.

See also load().

QWebView.back (self)

This method is also a Qt slot with the C++ signature void back().

Convenience slot that loads the previous document in the list of documents built by navigating links. Does nothing if there is no previous document.

It is equivalent to

     view->page()->triggerPageAction(QWebPage.GoBack);

See also forward() and pageAction().

QWebView.changeEvent (self, QEvent)

Reimplemented from QWidget.changeEvent().

QWebView.contextMenuEvent (self, QContextMenuEvent)

Reimplemented from QWidget.contextMenuEvent().

QWebView QWebView.createWindow (self, QWebPage.WebWindowType type)

This function is called from the createWindow() method of the associated QWebPage, each time the page wants to create a new window of the given type. This might be the result, for example, of a JavaScript request to open a document in a new window.

Note: If the createWindow() method of the associated page is reimplemented, this method is not called, unless explicitly done so in the reimplementation.

Note: In the cases when the window creation is being triggered by JavaScript, apart from reimplementing this method application must also set the JavaScriptCanOpenWindows attribute of QWebSettings to true in order for it to get called.

See also QWebPage.createWindow() and QWebPage.acceptNavigationRequest().

QWebView.dragEnterEvent (self, QDragEnterEvent)

Reimplemented from QWidget.dragEnterEvent().

QWebView.dragLeaveEvent (self, QDragLeaveEvent)

Reimplemented from QWidget.dragLeaveEvent().

QWebView.dragMoveEvent (self, QDragMoveEvent)

Reimplemented from QWidget.dragMoveEvent().

QWebView.dropEvent (self, QDropEvent)

Reimplemented from QWidget.dropEvent().

bool QWebView.event (self, QEvent)

Reimplemented from QObject.event().

bool QWebView.findText (self, QString subString, QWebPage.FindFlags options = 0)

Finds the specified string, subString, in the page, using the given options.

If the HighlightAllOccurrences flag is passed, the function will highlight all occurrences that exist in the page. All subsequent calls will extend the highlight, rather than replace it, with occurrences of the new string.

If the HighlightAllOccurrences flag is not passed, the function will select an occurrence and all subsequent calls will replace the current occurrence with the next one.

To clear the selection, just pass an empty string.

Returns true if subString was found; otherwise returns false.

See also selectedText() and selectionChanged().

QWebView.focusInEvent (self, QFocusEvent)

Reimplemented from QWidget.focusInEvent().

bool QWebView.focusNextPrevChild (self, bool next)

Reimplemented from QWidget.focusNextPrevChild().

QWebView.focusOutEvent (self, QFocusEvent)

Reimplemented from QWidget.focusOutEvent().

QWebView.forward (self)

This method is also a Qt slot with the C++ signature void forward().

Convenience slot that loads the next document in the list of documents built by navigating links. Does nothing if there is no next document.

It is equivalent to

     view->page()->triggerPageAction(QWebPage.GoForward);

See also back() and pageAction().

bool QWebView.hasSelection (self)

QWebHistory QWebView.history (self)

Returns a pointer to the view's history of navigated web pages.

It is equivalent to

     view->page()->history();

QIcon QWebView.icon (self)

QWebView.inputMethodEvent (self, QInputMethodEvent)

Reimplemented from QWidget.inputMethodEvent().

QVariant QWebView.inputMethodQuery (self, Qt.InputMethodQuery property)

Reimplemented from QWidget.inputMethodQuery().

bool QWebView.isModified (self)

QWebView.keyPressEvent (self, QKeyEvent)

Reimplemented from QWidget.keyPressEvent().

QWebView.keyReleaseEvent (self, QKeyEvent)

Reimplemented from QWidget.keyReleaseEvent().

QWebView.load (self, QUrl url)

Loads the specified url and displays it.

Note: The view remains the same until enough data has arrived to display the new url.

See also setUrl(), url(), urlChanged(), and QUrl.fromUserInput().

QWebView.load (self, QNetworkRequest request, QNetworkAccessManager.Operation operation = QNetworkAccessManager.GetOperation, QByteArray body = QByteArray())

Loads a network request, request, using the method specified in operation.

body is optional and is only used for POST operations.

Note: The view remains the same until enough data has arrived to display the new url.

See also url() and urlChanged().

QWebView.mouseDoubleClickEvent (self, QMouseEvent)

Reimplemented from QWidget.mouseDoubleClickEvent().

QWebView.mouseMoveEvent (self, QMouseEvent)

Reimplemented from QWidget.mouseMoveEvent().

QWebView.mousePressEvent (self, QMouseEvent)

Reimplemented from QWidget.mousePressEvent().

QWebView.mouseReleaseEvent (self, QMouseEvent)

Reimplemented from QWidget.mouseReleaseEvent().

QWebPage QWebView.page (self)

Returns a pointer to the underlying web page.

See also setPage().

QAction QWebView.pageAction (self, QWebPage.WebAction action)

Returns a pointer to a QAction that encapsulates the specified web action action.

QWebView.paintEvent (self, QPaintEvent ev)

Reimplemented from QWidget.paintEvent().

QWebView.print_ (self, QPrinter printer)

This method is also a Qt slot with the C++ signature void print( ::QPrinter*) const.

Prints the main frame to the given printer.

See also QWebFrame.print() and QPrintPreviewDialog.

QWebView.reload (self)

This method is also a Qt slot with the C++ signature void reload().

Reloads the current document.

See also stop(), pageAction(), and loadStarted().

QPainter.RenderHints QWebView.renderHints (self)

QWebView.resizeEvent (self, QResizeEvent e)

Reimplemented from QWidget.resizeEvent().

QString QWebView.selectedHtml (self)

QString QWebView.selectedText (self)

QWebView.setContent (self, QByteArray data, QString mimeType = '', QUrl baseUrl = QUrl())

Sets the content of the web view to the specified content data. If the mimeType argument is empty it is currently assumed that the content is HTML but in future versions we may introduce auto-detection.

External objects referenced in the content are located relative to baseUrl.

The data is loaded immediately; external objects are loaded asynchronously.

See also load(), setHtml(), and QWebFrame.toHtml().

QWebView.setHtml (self, QString html, QUrl baseUrl = QUrl())

Sets the content of the web view to the specified html.

External objects such as stylesheets or images referenced in the HTML document are located relative to baseUrl.

The html is loaded immediately; external objects are loaded asynchronously.

When using this method, WebKit assumes that external resources such as JavaScript programs or style sheets are encoded in UTF-8 unless otherwise specified. For example, the encoding of an external script can be specified through the charset attribute of the HTML script tag. Alternatively, the encoding can also be specified by the web server.

This is a convenience function equivalent to setContent(html, "text/html", baseUrl).

Warning: This function works only for HTML, for other mime types (i.e. XHTML, SVG) setContent() should be used instead.

See also load(), setContent(), QWebFrame.toHtml(), and QWebFrame.setContent().

QWebView.setPage (self, QWebPage page)

Makes page the new web page of the web view.

The parent QObject of the provided page remains the owner of the object. If the current page is a child of the web view, it will be deleted.

See also page().

QWebView.setRenderHint (self, QPainter.RenderHint hint, bool enabled = True)

If enabled is true, enables the specified render hint; otherwise disables it.

This function was introduced in Qt 4.6.

See also renderHints and QPainter.renderHints().

QWebView.setRenderHints (self, QPainter.RenderHints hints)

QWebView.setTextSizeMultiplier (self, float factor)

Sets the value of the multiplier used to scale the text in a Web page to the factor specified.

See also textSizeMultiplier().

QWebSettings QWebView.settings (self)

Returns a pointer to the view/page specific settings object.

It is equivalent to

     view->page()->settings();

See also QWebSettings.globalSettings().

QWebView.setUrl (self, QUrl url)

QWebView.setZoomFactor (self, float factor)

QSize QWebView.sizeHint (self)

Reimplemented from QWidget.sizeHint().

QWebView.stop (self)

This method is also a Qt slot with the C++ signature void stop().

Convenience slot that stops loading the document.

It is equivalent to

     view->page()->triggerPageAction(QWebPage.Stop);

See also reload(), pageAction(), and loadFinished().

float QWebView.textSizeMultiplier (self)

Returns the value of the multiplier used to scale the text in a Web page.

See also setTextSizeMultiplier().

QString QWebView.title (self)

QWebView.triggerPageAction (self, QWebPage.WebAction action, bool checked = False)

Triggers the specified action. If it is a checkable action the specified checked state is assumed.

The following example triggers the copy action and therefore copies any selected text to the clipboard.

     view->triggerAction(QWebPage.Copy);

See also pageAction().

QUrl QWebView.url (self)

QWebView.wheelEvent (self, QWheelEvent)

Reimplemented from QWidget.wheelEvent().

float QWebView.zoomFactor (self)


Qt Signal Documentation

void iconChanged ()

This is the default overload of this signal.

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().

See also icon() and QWebSettings.setIconDatabasePath().

void linkClicked (const ::QUrl&)

This is the default overload of this signal.

This signal is emitted whenever the user clicks on a link and the page's linkDelegationPolicy property is set to delegate the link handling for the specified url.

See also QWebPage.linkDelegationPolicy().

void loadFinished (bool)

This is the default overload of this signal.

This signal is emitted when a load of the page is finished. ok will indicate whether the load was successful or any error occurred.

See also loadStarted().

void loadProgress (int)

This is the default overload of this signal.

This signal is emitted every time an element in the web page completes loading and the overall loading progress advances.

This signal tracks the progress of all child frames.

The current value is provided by progress and scales from 0 to 100, which is the default range of QProgressBar.

See also loadStarted() and loadFinished().

void loadStarted ()

This is the default overload of this signal.

This signal is emitted when a new load of the page is started.

See also loadProgress() and loadFinished().

void selectionChanged ()

This is the default overload of this signal.

This signal is emitted whenever the selection changes.

See also selectedText().

void statusBarMessage (const QString&)

This is the default overload of this signal.

This signal is emitted when the status bar text is changed by the page.

void titleChanged (const QString&)

This is the default overload of this signal.

This signal is emitted whenever the title of the main frame changes.

See also title().

void urlChanged (const ::QUrl&)

This is the default overload of this signal.

This signal is emitted when the url of the view changes.

See also url() and load().


PyQt 4.12.3 for X11Copyright © Riverbank Computing Ltd and The Qt Company 2015Qt 4.8.7