QWebInspector

Inheritance diagram of QWebInspector

Note

This class was introduced in Qt 4.6

Synopsis

Functions

Detailed Description

The PySide.QtWebKit.QWebInspector class allows the placement and control of a PySide.QtWebKit.QWebPage ‘s inspector. The inspector can display a page’s hierarchy, its loading statistics and the current state of its individual elements. It is mostly used by web developers.

The PySide.QtWebKit.QWebPage to be inspected must be specified using the PySide.QtWebKit.QWebInspector.setPage() method.

A typical use of PySide.QtWebKit.QWebInspector follows:

# ...
page = QWebPage()
# ...

inspector = QWebInspector()
inspector.setPage(page)

A PySide.QtWebKit.QWebInspector can be made visible either programmatically using PySide.QtGui.QWidget.setVisible() , or by the user through the attached PySide.QtWebKit.QWebPage ‘s context menu.

Note

A PySide.QtWebKit.QWebInspector will display a blank widget if either:

Resources

This class acts mostly as a container and a controller for the inspector. Most of the resources needed by the inspector are owned by the associated PySide.QtWebKit.QWebPage and are allocated the first time that:

Inspector configuration persistence

The inspector allows the user to configure some options through its user interface (e.g. the resource tracking “Always enable” option). These settings will be persisted automatically by QtWebKit only if your application previously called QCoreApplication.setOrganizationName() and QCoreApplication.setApplicationName() . See PySide.QtCore.QSettings ‘s default constructor documentation for an explanation of why this is necessary.
class PySide.QtWebKit.QWebInspector([parent=None])
Parameters:parentPySide.QtGui.QWidget

Constructs an unbound PySide.QtWebKit.QWebInspector with parent as its parent.

PySide.QtWebKit.QWebInspector.page()
Return type:PySide.QtWebKit.QWebPage

Returns the inspected PySide.QtWebKit.QWebPage . If no web page is currently associated, a null pointer is returned.

PySide.QtWebKit.QWebInspector.setPage(page)
Parameters:pagePySide.QtWebKit.QWebPage

Bind this inspector to the PySide.QtWebKit.QWebPage to be inspected.

Notes: