summaryrefslogtreecommitdiffstats
path: root/meta-attic/recipes-graphics/web-runtime/web-runtime/web-runtime.qml
blob: 3efe51591bd28213de1e8f3fc0e2717e839f5071 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import QtQuick 2.1
import QtQuick.Controls 1.1
import QtWebEngine 1.1

ApplicationWindow {
	width: 1080
	height: 1488
	visible: true
	flags: Qt.WindowFullScreen | Qt.FramelessWindowHint
	WebEngineView {
		url: Qt.application.arguments[1]
		anchors.fill: parent
	}
}