Qt中的QWebEngineView

第1章 本地目錄結構

1.1 自己寫的兩個網頁(html)

  • mermaid.html? ? ? ? (自己寫的網頁界面)
  • WebTest.html? ? ? ? ? (自己寫的網頁界面)
  • qwebchannel.js? ? ? ?(Qt下載安裝之后,會在安裝目錄下有這個文件,需要將安裝目錄下的改文件拷貝到自己項目目錄下)

1.2 創建一個資源文件(xxxx.qrc)

在此我創建的文件為:resources.qrc。文件名自己隨便,但是后綴要為【.qrc】

文件內容:

<RCC>
<qresource prefix="/">
<file>mermaid.html</file>
</qresource>
<qresource prefix="/">
<file>WebTest.html</file>
</qresource>
<qresource prefix="/qt">
<file>qwebchannel.js</file>
</qresource>
</RCC>

文件中的內容是將資源文件,管理起來。引入自己的html文件和JS腳本。
前綴可以自己定:【<qresource prefix="/">】或者【<qresource prefix="/qt">】。定好前綴之后,以后在Qt代碼中就要按照這個前綴來拼接出資源文件的位置。

1.3 將資源文件引入到Qt項目

在Qt的項目配置文件目錄【xxx.pro】,我的是【Demo2.pro】中引入資源文件

RESOURCES += \
resources.qrc

第2章 資源源碼

2.1?mermaid.html?

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Login Page</title><!-- 添加:引入 qwebchannel.js --><!-- 引入 Qt WebChannel 支持 --><script src="qrc:///qt/qwebchannel.js"></script><script>window.onload = function() {if (typeof qt === 'undefined') {console.error('Qt WebChannel transport not available!');return;}new QWebChannel(qt.webChannelTransport, function(channel) {// 獲取C++端暴露的對象“bridge33”var bridge = channel.objects.bridge33;console.log('bridge =', bridge);// 檢查C++端是否有這個信號函數 “sendUsername”if (!bridge.sendUsername) {console.error('sendUsername 信號不存在!檢查 C++ 信號聲明和 moc');return;}console.log('emit sendUsername() exist');bridge.sendUsername.connect(function(username) {console.log('Received username: ', username);console.log('username.length: ', username.length);console.log('username.charCodeAt(0): ', username.charCodeAt(0));var input = document.querySelector("input[name='username']");if (input) {input.value = username;console.log('full success');} else {console.error('輸入框未找到');}});// html界面被正確渲染,發送信號給C++bridge.onWebChannelReady22();// 登錄按鈕document.querySelector(".btn").onclick = function() {var username = document.querySelector("input[name='username']").value;var password = document.querySelector("input[name='password']").value;if (bridge.receiveLoginInfo) {bridge.receiveLoginInfo(username, password);//console.log('已發送登錄信息:', username, password);} else {console.error('bridge.receiveLoginInfo 不存在');}};// 注冊鏈接點擊document.querySelector("#register-link").onclick = function(event) {event.preventDefault();//console.log('用戶點擊了【Sign up】');bridge.onRegisterClicked();};});};</script><style>* { margin: 0; padding: 0; }html { height: 100%; }body { height: 100%; }.container {height: 100%;background-image: linear-gradient(to right, #fbc2eb, #a6c1ee);}.login-wrapper {background-color: #fff;width: 358px;height: 588px;border-radius: 15px;padding: 0 50px;position: relative;left: 50%;top: 50%;transform: translate(-50%, -50%);}.header {font-size: 38px;font-weight: bold;text-align: center;line-height: 200px;}.input-item {display: block;width: 100%;margin-bottom: 20px;border: 0;padding: 10px;border-bottom: 1px solid rgb(128, 125, 125);font-size: 15px;outline: none;}.input-item:placeholder {text-transform: uppercase;}.btn {text-align: center;padding: 10px;width: 100%;margin-top: 40px;background-image: linear-gradient(to right, #a6c1ee, #fbc2eb);color: #fff;cursor: pointer; /* 增加光標提示 */}.msg {text-align: center;line-height: 88px;}a {text-decoration-line: none;color: #abc1ee;}</style>
</head>
<body><div class="container"><div class="login-wrapper"><div class="header">Login</div><div class="form-wrapper"><input type="text" name="username" placeholder="username" class="input-item"><input type="password" name="password" placeholder="password" class="input-item"><div class="btn">Login</div></div><div class="msg">Don't have account?<a href="#" id="register-link">Sign up</a></div></div></div>
</body>
</html>

2.2?WebTest.html

<!DOCTYPE html>
<html lang="en">
<!-- https://codepen.io/danielkvist/pen/LYNVyPL -->
<head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><style>:root {/* COLORS */--white: #e9e9e9;--gray: #333;--blue: #0367a6;--lightblue: #008997;/* RADII */--button-radius: 0.7rem;/* SIZES */--max-width: 758px;--max-height: 420px;font-size: 16px;font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;}body {align-items: center;background-color: var(--white);background: url("https://res.cloudinary.com/dbhnlktrv/image/upload/v1599997626/background_oeuhe7.jpg");/* 決定背景圖像的位置是在視口內固定,或者隨著包含它的區塊滾動。 *//* https://developer.mozilla.org/zh-CN/docs/Web/CSS/background-attachment */background-attachment: fixed;background-position: center;background-repeat: no-repeat;background-size: cover;display: grid;height: 100vh;place-items: center;}.form__title {font-weight: 300;margin: 0;margin-bottom: 1.25rem;}.link {color: var(--gray);font-size: 0.9rem;margin: 1.5rem 0;text-decoration: none;}.container {background-color: var(--white);border-radius: var(--button-radius);box-shadow: 0 0.9rem 1.7rem rgba(0, 0, 0, 0.25),0 0.7rem 0.7rem rgba(0, 0, 0, 0.22);height: var(--max-height);max-width: var(--max-width);overflow: hidden;position: relative;width: 100%;}.container__form {height: 100%;position: absolute;top: 0;transition: all 0.6s ease-in-out;}.container--signin {left: 0;width: 50%;z-index: 2;}.container.right-panel-active .container--signin {transform: translateX(100%);}.container--signup {left: 0;opacity: 0;width: 50%;z-index: 1;}.container.right-panel-active .container--signup {animation: show 0.6s;opacity: 1;transform: translateX(100%);z-index: 5;}.container__overlay {height: 100%;left: 50%;overflow: hidden;position: absolute;top: 0;transition: transform 0.6s ease-in-out;width: 50%;z-index: 100;}.container.right-panel-active .container__overlay {transform: translateX(-100%);}.overlay {background-color: var(--lightblue);background: url("https://cdn.pixabay.com/photo/2018/08/14/13/23/ocean-3605547_1280.jpg");background-attachment: fixed;background-position: center;background-repeat: no-repeat;background-size: cover;height: 100%;left: -100%;position: relative;transform: translateX(0);transition: transform 0.6s ease-in-out;width: 200%;}.container.right-panel-active .overlay {transform: translateX(50%);}.overlay__panel {align-items: center;display: flex;flex-direction: column;height: 100%;justify-content: center;position: absolute;text-align: center;top: 0;transform: translateX(0);transition: transform 0.6s ease-in-out;width: 50%;}.overlay--left {transform: translateX(-20%);}.container.right-panel-active .overlay--left {transform: translateX(0);}.overlay--right {right: 0;transform: translateX(0);}.container.right-panel-active .overlay--right {transform: translateX(20%);}.btn {background-color: var(--blue);background-image: linear-gradient(90deg, var(--blue) 0%, var(--lightblue) 74%);border-radius: 20px;border: 1px solid var(--blue);color: var(--white);cursor: pointer;font-size: 0.8rem;font-weight: bold;letter-spacing: 0.1rem;padding: 0.9rem 4rem;text-transform: uppercase;transition: transform 80ms ease-in;}.form>.btn {margin-top: 1.5rem;}.btn:active {transform: scale(0.95);}.btn:focus {outline: none;}.form {background-color: var(--white);display: flex;align-items: center;justify-content: center;flex-direction: column;padding: 0 3rem;height: 100%;text-align: center;}.input {background-color: #fff;border: none;padding: 0.9rem 0.9rem;margin: 0.5rem 0;width: 100%;}@keyframes show {0%,49.99% {opacity: 0;z-index: 1;}50%,100% {opacity: 1;z-index: 5;}}</style>
</head><body><div class="container right-panel-active"><!-- Sign Up --><div class="container__form container--signup"><form action="#" class="form" id="form1"><h2 class="form__title">Sign Up</h2><input type="text" placeholder="User" class="input" /><input type="email" placeholder="Email" class="input" /><input type="password" placeholder="Password" class="input" /><button class="btn">Sign Up</button></form></div><!-- Sign In --><div class="container__form container--signin"><form action="#" class="form" id="form2"><h2 class="form__title">Sign In</h2><input type="email" placeholder="Email" class="input" /><input type="password" placeholder="Password" class="input" /><a href="#" class="link">Forgot your password?</a><button class="btn">Sign In</button></form></div><!-- Overlay --><div class="container__overlay"><div class="overlay"><div class="overlay__panel overlay--left"><button class="btn" id="signIn">Sign In</button></div><div class="overlay__panel overlay--right"><button class="btn" id="signUp">Sign Up</button></div></div></div></div><script>const signInBtn = document.getElementById("signIn");const signUpBtn = document.getElementById("signUp");const fistForm = document.getElementById("form1");const secondForm = document.getElementById("form2");const container = document.querySelector(".container");signInBtn.addEventListener("click", () => {container.classList.remove("right-panel-active");});signUpBtn.addEventListener("click", () => {container.classList.add("right-panel-active");});fistForm.addEventListener("submit", (e) => e.preventDefault());secondForm.addEventListener("submit", (e) => e.preventDefault());</script>
</body></html>

2.3?bridge文件

頭文件

#ifndef CBridge_H
#define CBridge_H#include <QObject>class CBridge : public QObject
{Q_OBJECTpublic:explicit CBridge(QObject *parent = nullptr);signals:/*** C++端向HTML端傳遞數據* html端可以通過別名獲取到該信號*/void sendUsername(const QString &username);void switchPage();public slots:// 新增:接收用戶名和密碼的槽函數void receiveLoginInfo44(const QString &username, const QString &password);// JS 調用這個表示準備好了void onWebChannelReady22();void onRegisterClicked();};#endif // CBridge_H

源文件

#include "bridge.h"
#include <QTimer>
#include <QDebug>CBridge::CBridge(QObject *parent): QObject(parent)
{}// 實現接收用戶名和密碼的槽函數
void CBridge::receiveLoginInfo44(const QString &username, const QString &password) {qDebug() << "User name: " << username;qDebug() << "PassWord" << password;
}void CBridge::onWebChannelReady22()
{qDebug() << "JS 已準備就緒,現在發送用戶名";emit sendUsername("張三"); // 現在發,100% 安全qDebug() << "發送用戶名";
}void CBridge::onRegisterClicked()
{qDebug() << "Sign up";emit switchPage();
}

2.4 main.cpp

#include <QApplication>
#include <QWebEngineView>
#include <QWebChannel>
#include <QUrl>
#include <QDir>
#include "bridge.h"int main(int argc, char *argv[]) {QApplication app(argc, argv);QWebEngineView view;view.resize(800, 600);view.setWindowTitle("Qt + HTML 登錄界面");/** 通訊橋*/CBridge bridge;QWebChannel channel;// 給CBridge實例對象起一個別名“bridge33”,暴露給html。html端就使用這個別名channel.registerObject("bridge33", &bridge);view.page()->setWebChannel(&channel);// 在加載完成后再顯示窗口QObject::connect(&view, &QWebEngineView::loadFinished, [&](bool ok) {if (ok) {view.show();    // 顯示Html} else {qWarning() << "Failed to load page!";}});QObject::connect(&bridge, &CBridge::switchPage, [&](){qDebug() << "加載 homepage.html";// 通過資源配置文件加載資源文件view.load(QUrl("qrc:///WebTest.html"));});// 通過寫絕對路徑加載資源文件QString filePath = "F:/MyTest/test20250911/Demo2/mermaid.html";QUrl fileUrl = QUrl::fromLocalFile(filePath);view.load(fileUrl);  // 開始加載return app.exec();
}

第3章 總結

編譯器一定要選擇MSVC。本人使用的是【MSVC2019-64】

酷炫界面的可以使用這種方式。其他使用Qt.。使用這種方式交叉開發。
可以使用一個html界面使用一個QWebEngineView對象。每個對象放置在

    QStackedWidget *stackedWidget = new QStackedWidget(&mainWindow);// 頁面1: 登錄頁 (mermaid.html)QWebEngineView *loginView = new QWebEngineView();loginView->load(QUrl::fromLocalFile("F:/MyTest/test20250911/Demo2/mermaid.html"));// 頁面2: 主頁 (WebTest.html)QWebEngineView *homeView = new QWebEngineView();homeView->load(QUrl("qrc:///WebTest.html"));  // 使用 qrc 資源// 添加到 stacked widgetstackedWidget->addWidget(loginView);  // index 0stackedWidget->addWidget(homeView);   // index 1

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/diannao/98835.shtml
繁體地址,請注明出處:http://hk.pswp.cn/diannao/98835.shtml
英文地址,請注明出處:http://en.pswp.cn/diannao/98835.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

Flutter 應用國際化 (i18n) 與本地化 (l10n) 完整指南

Flutter 國際化 (i18n) 完全指南&#xff1a;從入門到精通 在現代移動應用開發中&#xff0c;支持多語言是觸達全球用戶的基本要求。Flutter 提供了強大且靈活的國際化 (i18n) 和本地化 (l10n) 支持。本文將帶你從零開始&#xff0c;一步步深入掌握在 Flutter 中實現國際化的幾…

計算機視覺與深度學習 | 計算機視覺中線特征提取與匹配算法綜述

文章目錄 一、線特征提取算法原理 1.1 Hough變換及其優化 1.2 LSD算法 1.3 EDLines算法 二、核心數學公式 2.1 直線表示與誤差計算 2.2 LSD算法關鍵公式 三、線特征匹配算法 3.1 LBD描述符 3.2 匹配策略 四、代碼實現 4.1 LSD線段檢測(Python) 4.2 LBD特征匹配(C++) 五、算…

Transformer 模型:Attention is All You Need 的真正含義

2017 年&#xff0c;Google Brain 發布了一篇具有里程碑意義的論文——《Attention Is All You Need》&#xff0c;這篇論文不僅首次提出了 Transformer 模型&#xff0c;更重要的是&#xff0c;它宣稱“注意機制&#xff08;Attention Mechanism&#xff09;就足以構建強大的模…

數據庫約束表的設計

數據庫約束概念&#xff1a;數據庫約束是關系型數據庫的一個重要功能&#xff0c;主要是保證數據的完整性&#xff0c;也可理解為數據的正確性&#xff08;數據本身是否正確&#xff0c;關聯關系是否正確&#xff09;&#xff08;一般是用在指定列上&#xff09;常見的約束類型…

【案例分享】TeeChart 助力 Softdrill 提升油氣鉆井數據可視化能力

在鉆井與地質工程領域&#xff0c;數據可視化是核心環節。圖表不僅需要精確與高效&#xff0c;還需符合行業習慣并支持交互與定制。Softdrill 自 2012 年起在核心產品中集成了TeeChart 圖表庫&#xff0c;將復雜的井下數據轉化為直觀的工程圖表&#xff0c;極大提升了鉆井工程師…

【Flink】Flink Runtime 架構設計

Flink Runtime 架構設計 整體架構 ┌─────────────────────────────────────────────────────────────────┐ │ Flink Runtime │ ├─────────…

Git 命令教程

Git介紹 分布式版本控制系統。 Git命令 初始化/全局配置git init初始化一個Git倉庫&#xff08;會創建一個.git的目錄&#xff09;git config --global user.name “name”設置提交時的用戶名git config user.name查看設置的用戶名git config --global user.email “youemail.c…

git config --global user.name指令報錯時的解決方案

問題分析 %HOMEDRIVE%%HOMEPATH%/.gitconfig 是Windows環境變量的表示方式&#xff1a; %HOMEDRIVE% 通常是 C:%HOMEPATH% 通常是 \Users\你的用戶名完整路徑應該是&#xff1a;C:\Users\你的用戶名\.gitconfig 但這里環境變量沒有被正確解析&#xff0c;顯示的是字面意思。 …

websocket和socket io的區別

好的&#xff0c;這是一個更具體也更常見的問題。WebSocket 是一種協議&#xff0c;而 Socket.IO 是一個庫&#xff0c;它使用了 WebSocket 但提供了多得多的功能。 簡單比喻&#xff1a; WebSocket 就像是給你提供了一條高效的“快遞專線”&#xff08;雙向通信通道&#xff…

Nginx反向代理與負載均衡部署

Nginx反向代理與負載均衡部署實戰指南前言一、規劃部署負載均衡和反向代理二、部署Nginx負載均衡器2.1. 準備基礎環境2.2. 創建Nginx運行用戶2.3. 編譯安裝Nginx2.4. 配置Nginx系統服務2.5. 驗證Nginx安裝三、部署后端2臺Tomcat應用服務器3.1. 安裝JDK3.2. 部署Tomcat實例13.3.…

從源碼和設計模式深挖AQS(AbstractQueuedSynchronizer)

AQS 概念 AbstractQueuedSynchronizer&#xff08;AQS&#xff09; 是 Java 并發包 (java.util.concurrent.locks) 的核心基礎框架&#xff0c;它的實現關鍵是先進先出 (FIFO) 等待隊列和一個用volatile修飾的鎖狀態status。具體實現有 : ReentrantLock、Semaphore、CountDownL…

Dart → `.exe`:Flutter 桌面與純命令行雙軌編譯完全指南

Dart → .exe&#xff1a;Flutter 桌面與純命令行雙軌編譯完全指南 關鍵詞&#xff1a;Dart、Flutter、Windows、可執行文件、桌面端、CLI、交叉編譯 1. 前言 很多開發者以為 Dart 只能跑在 AOT 移動端或 Web 端&#xff0c;其實 官方工具鏈早已支持一鍵輸出 Windows 原生 .ex…

互聯網接入網中PPPoE和PPP協議

<摘要> PPPoE和PPP是寬帶接入網絡中至關重要的協議組合&#xff0c;其中PPP提供通用的點對點鏈路層解決方案&#xff0c;而PPPoE則是在以太網架構上擴展PPP應用的技術橋梁。本文從技術演進視角系統解析了兩者的內在關聯與本質區別&#xff1a;PPP作為成熟鏈路層協議&…

詳細解析SparkStreaming和Kafka集成的兩種方式的區別和優劣

spark streaming是基于微批處理的流式計算引擎&#xff0c;通常是利用spark core或者spark core與spark sql一起來處理數據。在企業實時處理架構中&#xff0c;通常將spark streaming和kafka集成作為整個大數據處理架構的核心環節之一。 針對不同的spark、kafka版本&#xff0…

Kite Compositor for Mac v2.1.2 安裝教程|DMG文件安裝步驟(Mac用戶必看)

Kite Compositor? 是一款專為 ?macOS? 設計的 ?輕量級界面設計 & 動畫制作工具&#xff0c;它可以讓你像拼圖一樣直觀地 ?創建、編輯和預覽用戶界面&#xff08;UI&#xff09;以及動畫效果。 一、下載文件 首先&#xff0c;你得先把這個 ?Kite Compositor for Mac …

【逆向】Android程序靜態+動態分析——去殼

對提供的 CrackmeTest.apk 進行逆向分析&#xff0c;程序含有反調試機制&#xff08;加殼&#xff09;&#xff0c;通過靜態補丁反反調試&#xff08;去殼&#xff09;&#xff0c;再動態調試獲取其中密碼。 目錄 環境 基礎 實驗內容 靜態分析 動態分析 反反調試 再動態…

Rust 開發環境安裝與 crates.io 國內源配置(Windows / macOS / Linux 全流程)

Rust 這幾年在系統編程、WebAssembly、區塊鏈、后端服務領域越來越火&#xff0c;很多開發者都在嘗試用它做一些新項目。 但是國內安裝 Rust 開發環境時&#xff0c;經常遇到 安裝慢、依賴拉不下來、crates.io 超時 等問題。本文結合個人踩坑經驗&#xff0c;整理了一份 跨平臺…

Nginx SSL/TLS 配置

Nginx SSL/TLS 配置指南&#xff1a;從入門到安全強化前言一、環境準備&#xff1a;Nginx安裝配置1.1. **EPEL倉庫配置**&#xff1a;1.2. **Nginx安裝**&#xff1a;1.3. **服務啟停管理**&#xff1a;1.4. **服務狀態驗證**&#xff1a;二、SSL/TLS證書獲取方案方案A&#xf…

Java ReentrantLock和synchronized的相同點與區別

1. 核心概念與定位synchronized&#xff1a;Java 內置的關鍵字&#xff0c;屬于 JVM 層面的隱式鎖。通過在方法或代碼塊上聲明&#xff0c;自動實現鎖的獲取與釋放&#xff0c;無需手動操作。設計目標是提供簡單易用的基礎同步能力&#xff0c;適合大多數常規同步場景。Reentra…

【npm】npm 包更新工具 npm-check-updates (ncu)

npm 包太多了&#xff0c;一個項目有那么多依賴包&#xff0c;它們的升級管理需要一個工具&#xff1a;npm-check-updates&#xff1a; 安裝&#xff1a; npm install -g npm-check-updates安裝之后&#xff0c;就可以使用它的命令&#xff1a;ncu 查看哪些包可以升級&#xff…