我想让QWebEngine填满整个窗口。根据这个answer我试图使用setContentsMargins(0,0,0,0);
以下结果:QWebEngine以完整窗口大小加载页面,但随后立即缩小到:
当我在布局中使用setContentsMargins(1,1,1,1);
和QWebEngine
时,它会正确加载,边距为1 px。我做了一个直接加载图像的测试,没有边距,它加载得很好并填满了屏幕。
这是我的错误/问题还是QWebEngine's
?
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include <QtWebEngineWidgets>
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QVBoxLayout *mainLayout = new QVBoxLayout;
mainLayout->setContentsMargins(0,0,0,0);
ui->centralWidget->setLayout(mainLayout);
// // load and show image
// inputImg = new QImage(":/images/testScreen.jpg");
// imgDisplayLabel = new QLabel("");
// imgDisplayLabel->setPixmap(QPixmap::fromImage(*inputImg));
// imgDisplayLabel->adjustSize();
// mainLayout->addWidget(imgDisplayLabel);
view = new QWebEngineView(this);
mainLayout->addWidget(view);
QUrl url;
url = QUrl("qrc:/testScreen.html");
view->load(url);
}
答案 0 :(得分:1)
这对我有用,但我正在Windows平台上测试。 为简洁起见,我在此处内置了构造函数定义。
class MainWindow : public QWidget
{
Q_OBJECT
public:
MainWindow() {
auto webView = new QWebEngineView(this);
auto main_layout = new QVBoxLayout(this);
main_layout->setMargin(0);
main_layout->addWidget(webView);
}
};
html就像这样:
<!DOCTYPE html>
<html style="width: 100%; height: 100%; margin: 0; padding: 0">
<body style="overflow: hidden; width: 100%; height: 100%; margin: 0; padding: 0">
</body>
</html>