提供共享公共 API 由 QtWebEngineQuick and QtWebEngineWidgets . 更多...
| QWebEngineCertificateError | 證書錯誤有關信息 |
| QWebEngineClientCertificateSelection | 包裹客戶端證書選定的 QWebEngineClientCertSelection 類 |
| QWebEngineClientCertificateStore | 用於客戶端證書的在內存存儲 |
| QWebEngineContextMenuRequest | Request for populating or extending a context menu with actions |
| QWebEngineCookieStore | 訪問 Chromium 的 Cookie |
| QWebEngineCookieStore::FilterRequest | QWebEngineCookieStore::FilterRequest 結構被用於結閤 QWebEngineCookieStore::setCookieFilter(),且是 filterCallback 操作類型 |
| QWebEngineDownloadRequest | 關於下載信息 |
| QWebEngineFileSystemAccessRequest | Enables accepting or rejecting requests for local file system access from JavaScript applications |
| QWebEngineFindTextResult | 封裝頁麵搜索字符串結果 |
| QWebEngineFullScreenRequest | 啓用接受 (或拒絕) 進入和退齣全屏模式請求 |
| QWebEngineHistory | 錶示 Web 引擎頁麵的曆史 |
| QWebEngineHistoryItem | 錶示一項 Web 引擎頁麵曆史 |
| QWebEngineHistoryModel | A data model that represents the history of a web engine page |
| QWebEngineHttpRequest | 保持要采用 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 | 封裝 HTML5 Web 通知數據 |
| QWebEnginePage | 用於查看和編輯 Web 文檔的對象 |
| QWebEngineProfile | 由多個頁麵共享的 Web 引擎 Profile (配置文件) |
| QWebEngineRegisterProtocolHandlerRequest | 使能夠接受或拒絕請求,來自 registerProtocolHandler API |
| QWebEngineScript | 封裝 JavaScript 程序 |
| QWebEngineScriptCollection | 錶示一批用戶腳本 |
| QWebEngineSettings | 用於 QWebEnginePage 的設置存儲對象 |
| QWebEngineUrlRequestInfo | URL 請求的有關信息 |
| QWebEngineUrlRequestInterceptor | 用於 URL 攔截的抽象基類 |
| QWebEngineUrlRequestJob | 錶示自定義 URL 請求 |
| QWebEngineUrlScheme | 配置自定義 URL 方案 |
| QWebEngineUrlSchemeHandler | 用於處理自定義 URL 方案的基類 |
若使用 qmake 去構建工程,通常間接包括 Qt WebEngine Core,透過 Qt WebEngine Quick or Qt WebEngine Widgets 模塊。
To link against the module using build with qmake, add this line to your qmake project file:
QT += webenginecore
不管怎樣,
webenginecore
被隱含添加通過
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)