Qt WebEngine Widgets C++ Classes
Provides C++ classes for rendering web content in a QWidget based application. More...
Classes
Widget that is used to view and edit web documents |
Detailed Description
The QWEWidgets module provides a web browser engine as well as C++ classes to render and interact with web content.
To include the definitions of the module's classes, use the following directive:
#include <QtWebEngineWidgets>
To link against the module using build with qmake, add the following QT variable to your qmake .pro file:
QT += 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 COMPONENTS WebEngineWidgets REQUIRED) target_link_libraries(target PRIVATE Qt::WebEngineWidgets)