Qt WebEngine Core C++ Classes

Provides public API shared by both QtWebEngineQuick and QtWebEngineWidgets. More...

This module was introduced in Qt 5.6.

Classes

QWebEngineClientCertificateSelection

QWebEngineClientCertSelection class wraps a client certificate selection

QWebEngineClientCertificateStore

In-memory store for client certificates

QWebEngineHistory

Represents the history of a web engine page

QWebEngineHistoryItem

Represents one item in the history of a web engine page

QWebEngineHistoryModel

A data model that represents the history of a web engine page

QWebEngineHttpRequest

Holds a request to be sent with WebEngine

QWebEnginePage

Object to view and edit web documents

QWebEngineSettings

Object to store the settings used by QWebEnginePage

QWebEngineUrlRequestInfo

Information about URL requests

QWebEngineUrlRequestInterceptor

Abstract base class for URL interception

Detailed Description

If you use qmake to build your projects, Qt WebEngine Core is usually indirectly included through the Qt WebEngine Quick or Qt WebEngine Widgets modules.

To link against the module using build with qmake, add this line to your qmake project file:

 QT += webenginecore

However, webenginecore is implied by adding webenginequick or webenginewidgets.

For build with CMake use the find_package() command to locate the needed module components in the Qt6 package and target_link_libraries() to link against the module:

 find_package(Qt6 REQUIRED COMPONENTS WebEngineCore)
 target_link_libraries(target PRIVATE Qt::WebEngineCore)