Qt WebEngine Core C++ Classes▲
Provides public API shared by both QtWebEngineQuick and QtWebEngineWidgets.
This module was introduced in Qt 5.6.
Classes▲
-
QWebEngineCertificateError: The QWebEngineCertificateError class provides information about a certificate error.
-
QWebEngineClientCertificateSelection: The QWebEngineClientCertSelection class wraps a client certificate selection.
-
QWebEngineClientCertificateStore: The QWebEngineClientCertificateStore class provides an in-memory store for client certificates.
-
QWebEngineContextMenuRequest: The QWebEngineContextMenuRequest class provides request for populating or extending a context menu with actions.
-
QWebEngineCookieStore: The QWebEngineCookieStore class provides access to Chromium's cookies.
-
QWebEngineCookieStore::FilterRequest: The QWebEngineCookieStore::FilterRequest struct is used in conjunction with QWebEngineCookieStore::setCookieFilter() and is the type filterCallback operates on.
-
QWebEngineDownloadRequest: The QWebEngineDownloadRequest class provides information about a download.
-
QWebEngineFileSystemAccessRequest: The QWebEngineFileSystemAccessRequest class enables accepting or rejecting requests for local file system access from JavaScript applications.
-
QWebEngineFindTextResult: The QWebEngineFindTextResult class encapsulates the result of a string search on a page.
-
QWebEngineFullScreenRequest: The QWebEngineFullScreenRequest class enables accepting or rejecting requests for entering and exiting the fullscreen mode.
-
QWebEngineHistory: The QWebEngineHistory class represents the history of a web engine page.
-
QWebEngineHistoryItem: The QWebEngineHistoryItem class 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: The QWebEngineHttpRequest class holds a request to be sent with WebEngine.
-
QWebEngineLoadingInfo: A utility type for the WebEngineView::loadingChanged signal.
-
QWebEngineNavigationRequest: A utility type for the QWebEnginePage::navigationRequested signal.
-
QWebEngineNewWindowRequest: A utility type for the QWebEnginePage::newWindowRequested() signal.
-
QWebEngineNotification: The QWebEngineNotification class encapsulates the data of an HTML5 web notification.
-
QWebEnginePage: The QWebEnginePage class provides an object to view and edit web documents.
-
QWebEngineProfile: The QWebEngineProfile class provides a web engine profile shared by multiple pages.
-
QWebEngineQuotaRequest: The QWebEngineQuotaRequest class enables accepting or rejecting requests for larger persistent storage than the application's current allocation in File System API.
-
QWebEngineRegisterProtocolHandlerRequest: The QWebEngineRegisterProtocolHandlerRequest class enables accepting or rejecting requests from the registerProtocolHandler API.
-
QWebEngineScript: The QWebEngineScript class encapsulates a JavaScript program.
-
QWebEngineScriptCollection: The QWebEngineScriptCollection class represents a collection of user scripts.
-
QWebEngineSettings: The QWebEngineSettings class provides an object to store the settings used by QWebEnginePage.
-
QWebEngineUrlRequestInfo: The QWebEngineUrlRequestInfo class provides information about URL requests.
-
QWebEngineUrlRequestInterceptor: The QWebEngineUrlRequestInterceptor class provides an abstract base class for URL interception.
-
QWebEngineUrlRequestJob: The QWebEngineUrlRequestJob class represents a custom URL request.
-
QWebEngineUrlScheme: The QWebEngineUrlScheme class configures a custom URL scheme.
-
QWebEngineUrlSchemeHandler: The QWebEngineUrlSchemeHandler class is a base class for handling custom URL schemes.
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)