我正在 Qt 中编写一个跨平台的 Web 浏览器,因为它通过 QWebView 或更新的 QWebEngineView 内置了 WebKit 支持。为了获得紧凑的窗口镶边,我想通过 Qt::FramelessWindowHint 禁用本机窗口标题栏和边框,但仍然可以获得诸如调整大小和 Windows 的 Aero Snap 之类的本机行为。
首先,我精简了PKE的BorderlessWindow演示。这工作得很好:在 Windows 8.1 x64 上,窗口可以调整大小,自定义标题栏可以拖动或双击,Aero Snap 可以工作。
然后我尝试用 QWebEngineView 替换中央 QLabel。这导致我的窗口周围出现灰色的原生大小边框。当我在窗口顶部有交互式小部件(如菜单或工具栏)时,带有 QWebEngineView 的“幽灵”标题栏将它们向下推,但在它们的位置接受光标点击。
这是比较两个窗口的屏幕截图。(在深色背景下查看,以更好地看到右侧的浅灰色边框。)
QWebEngineView 是否与无框窗口完全兼容,还是应该处理本机窗口 chrome 浪费的空间?
编辑:用 QWebView 替换 QWebEngineView 可以避免这个问题:
但是,WebView 已被弃用,WebEngine 具有更多有用的功能:
- 使用 Chromium 的 Blink 而不是 Safari 的 WebKit 进行渲染
- 多进程,因此您可以在不锁定 UI 的情况下运行 Javascript
- 不会在Panopticlick上泄漏浏览器插件详细信息(试试看,QWebView 会在 Javascript 中填充 navigator.plugins 但 QWebEngineView 不会)
不过,我真的不想在本机标题栏上浪费空间,所以如果 QWebEngineView 可以与无框窗口一起工作,我想知道如何。
主窗口.h:
#include <QtWidgets>
#include <QToolBar>
class MainWindow : public QMainWindow {
Q_OBJECT
public:
MainWindow();
protected:
void showEvent(QShowEvent *event) Q_DECL_OVERRIDE;
bool nativeEvent(const QByteArray &eventType, void *message, long *result) Q_DECL_OVERRIDE;
private:
QToolBar *titleBar;
};
主窗口.cpp:
#include <QtWidgets>
#include <QLabel>
#include <QWebEngineView>
#include <windows.h>
#include <windowsx.h>
#include "mainwindow.h"
MainWindow::MainWindow() : QMainWindow() {
setWindowFlags(windowFlags() | Qt::FramelessWindowHint);
titleBar = addToolBar(tr("Title Bar"));
titleBar->setIconSize(QSize(16, 16));
titleBar->setFloatable(false);
titleBar->setMovable(false);
titleBar->setStyleSheet("QToolBar { background: red; border: 0; padding: 0; }");
titleBar->addWidget(new QLabel("Title Bar", titleBar));
// Try QLabel...
QLabel *central = new QLabel("Hello World");
// ...or QWebEngineView
//QWebEngineView *central = new QWebEngineView(this);
//central->load(QUrl("http://www.google.com"));
setCentralWidget(central);
resize(320, 240);
}
bool MainWindow::nativeEvent(const QByteArray &eventType, void *message, long *result) {
Q_UNUSED(eventType);
MSG *msg = (MSG *)message;
HWND hwnd = isVisible() ? (HWND)winId() : NULL;
LPARAM lparam = msg->lParam;
const LONG border_width = 4;
RECT winrect;
long x, y;
switch (msg->message) {
case WM_NCCALCSIZE:
result = 0;
return true;
case WM_NCHITTEST:
GetWindowRect(hwnd, &winrect);
x = GET_X_LPARAM(lparam);
y = GET_Y_LPARAM(lparam);
if (x >= winrect.left && x < winrect.left + border_width &&
y < winrect.bottom && y >= winrect.bottom - border_width)
*result = HTBOTTOMLEFT;
else if (x < winrect.right && x >= winrect.right - border_width &&
y < winrect.bottom && y >= winrect.bottom - border_width)
*result = HTBOTTOMRIGHT;
else if (x >= winrect.left && x < winrect.left + border_width &&
y >= winrect.top && y < winrect.top + border_width)
*result = HTTOPLEFT;
else if (x < winrect.right && x >= winrect.right - border_width &&
y >= winrect.top && y < winrect.top + border_width)
*result = HTTOPRIGHT;
else if (x >= winrect.left && x < winrect.left + border_width)
*result = HTLEFT;
else if (x < winrect.right && x >= winrect.right - border_width)
*result = HTRIGHT;
else if (y < winrect.bottom && y >= winrect.bottom - border_width)
*result = HTBOTTOM;
else if (y >= winrect.top && y < winrect.top + border_width)
*result = HTTOP;
else if (titleBar->underMouse())
*result = HTCAPTION;
else
break;
return true;
}
return QMainWindow::nativeEvent(eventType, message, result);
}
void MainWindow::showEvent(QShowEvent *event) {
Q_UNUSED(event);
HWND hwnd = (HWND)winId();
DWORD newStyle = WS_POPUP | WS_CAPTION | WS_THICKFRAME | WS_MAXIMIZEBOX | WS_MINIMIZEBOX;
SetWindowLongPtr(hwnd, GWL_STYLE, static_cast<LONG>(newStyle));
SetWindowPos(hwnd, 0, 0, 0, 0, 0, SWP_FRAMECHANGED | SWP_NOMOVE | SWP_NOSIZE);
ShowWindow(hwnd, SW_SHOW);
}
主.cpp:
#include <QtWidgets>
#include "mainwindow.h"
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
MainWindow *window = new MainWindow();
window->show();
return app.exec();
}
例子.pro:
QT += core gui widgets webenginewidgets
msvc:LIBS += -luser32
TEMPLATE = app
SOURCES += main.cpp \
mainwindow.cpp
HEADERS += mainwindow.h