Provides public API shared by both QtWebEngineQuick and QtWebEngineWidgets. More...
This module was introduced in Qt 5.6.
Information about a certificate error |
|
QWebEngineClientCertSelection class wraps a client certificate selection |
|
In-memory store for client certificates |
|
Request for populating or extending a context menu with actions |
|
Access to Chromium's cookies |
|
QWebEngineCookieStore::FilterRequest struct is used in conjunction with QWebEngineCookieStore::setCookieFilter() and is the type filterCallback operates on |
|
Information about a download |
|
Enables accepting or rejecting requests for local file system access from JavaScript applications |
|
Encapsulates the result of a string search on a page |
|
Enables accepting or rejecting requests for entering and exiting the fullscreen mode |
|
Represents the history of a web engine page |
|
Represents one item in the history of a web engine page |
|
A data model that represents the history of a web engine page |
|
Holds a request to be sent with WebEngine |
|
A utility type for the WebEngineView::loadingChanged signal |
|
A utility type for the QWebEnginePage::navigationRequested signal |
|
A utility type for the QWebEnginePage::newWindowRequested() signal |
|
Encapsulates the data of an HTML5 web notification |
|
Object to view and edit web documents |
|
Web engine profile shared by multiple pages |
|
Enables accepting or rejecting requests for larger persistent storage than the application's current allocation in File System API |
|
Enables accepting or rejecting requests from the registerProtocolHandler API |
|
Encapsulates a JavaScript program |
|
Represents a collection of user scripts |
|
Object to store the settings used by QWebEnginePage |
|
Information about URL requests |
|
Abstract base class for URL interception |
|
Represents a custom URL request |
|
Configures a custom URL scheme |
|
Base class for handling custom URL schemes |
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)