Qt WebEngine Core C++ Classes

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

Namespaces

QWebEngineGlobalSettings

Holds global settings of the web engine

Classes

QWebEngineDesktopMediaRequest

A request for populating a dialog with available sources for screen capturing

QWebEngineGlobalSettings::DnsMode

Struct provides means to specify the DNS host resolution mode

QWebEnginePermission

A QWebEnginePermission is an object used to access and modify the state of a single permission that's been granted or denied to a specific origin URL

QWebEngineWebAuthPinRequest

Encapsulates the data of a PIN WebAuth UX request

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 Qt6::WebEngineCore)