This commit is contained in:
Your Name
2024-05-10 01:00:25 -05:00
parent 7d56c3fdbc
commit efae31ec63

View File

@@ -33,7 +33,6 @@ int main(int argc, char *argv[]) {
QWidget window; QWidget window;
window.setWindowTitle("Webview"); window.setWindowTitle("Webview");
window.setStyleSheet("background-color: black;"); window.setStyleSheet("background-color: black;");
window.showFullScreen();
// auto windowHandle = window.windowHandle(); // auto windowHandle = window.windowHandle();
// if (!windowHandle) { // if (!windowHandle) {
@@ -54,13 +53,16 @@ int main(int argc, char *argv[]) {
// window.setFixedSize(2160, 1080); // window.setFixedSize(2160, 1080);
QVBoxLayout *layout = new QVBoxLayout(&window); QVBoxLayout *layout = new QVBoxLayout(&window);
layout->setSpacing(0); // layout->setSpacing(0);
layout->setContentsMargins(0, 0, 0, 0); // layout->setContentsMargins(0, 0, 0, 0);
// QString url = args.first(); // QString url = args.first();
QWebEngineView *web_view = new QWebEngineView(); QWebEngineView *web_view = new QWebEngineView();
web_view->load(QUrl(argv[1]))); web_view->load(QUrl(argv[1]));
layout->addWidget(web_view); layout->addWidget(web_view);
// window.showFullScreen();
window.show()
return app.exec(); return app.exec();
} }