QWebHistoryInterface Class

The QWebHistoryInterface class provides an interface to implement link history. More...

Header: #include <QWebHistoryInterface>
Since: Qt 4.4
Inherits: QObject

Public Functions

QWebHistoryInterface(QObject * parent = 0)
~QWebHistoryInterface()
virtual void addHistoryEntry(const QString & url) = 0
virtual bool historyContains(const QString & url) const = 0
  • 29 public functions inherited from QObject

Static Public Members

QWebHistoryInterface * defaultInterface()
void setDefaultInterface(QWebHistoryInterface * defaultInterface)
  • 7 static public members inherited from QObject

Additional Inherited Members

  • 1 property inherited from QObject
  • 1 public slot inherited from QObject
  • 1 signal inherited from QObject
  • 8 protected functions inherited from QObject

Detailed Description

The QWebHistoryInterface class provides an interface to implement link history.

The QWebHistoryInterface is an interface that can be used to keep track of visited links. It contains two pure virtual methods that are called by the WebKit engine: addHistoryEntry() is used to add urls that have been visited to the interface, while historyContains() is used to query whether the given url has been visited by the user. By default the QWebHistoryInterface is not set, so WebKit does not keep track of visited links.

Note: The history tracked by QWebHistoryInterface is not specific to an instance of QWebPage but applies to all pages.

Member Function Documentation

QWebHistoryInterface::QWebHistoryInterface(QObject * parent = 0)

Constructs a new QWebHistoryInterface with parent parent.

QWebHistoryInterface::~QWebHistoryInterface()

Destroys the interface. If this is currently the default interface it will be unset.

[pure virtual] void QWebHistoryInterface::addHistoryEntry(const QString & url)

Called by WebKit to add another url to the list of visited pages.

[static] QWebHistoryInterface * QWebHistoryInterface::defaultInterface()

Returns the default interface that will be used by WebKit. If no default interface has been set, WebKit will not keep track of visited links and a null pointer will be returned.

See also setDefaultInterface().

[pure virtual] bool QWebHistoryInterface::historyContains(const QString & url) const

Called by the WebKit engine to query whether a certain url has been visited by the user already. Returns true if the url is part of the history of visited links; otherwise returns false.

[static] void QWebHistoryInterface::setDefaultInterface(QWebHistoryInterface * defaultInterface)

Sets a new default interface, defaultInterface, that will be used by all of WebKit to keep track of visited links.

If an interface without a parent has already been set, the old interface will be deleted. When the application exists QWebHistoryInterface will automatically delete the defaultInterface if it does not have a parent.

See also defaultInterface().

© 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.