summaryrefslogtreecommitdiffstats
path: root/recipes-graphics/web-runtime/web-runtime/web-runtime.qml
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2018-06-05 17:00:40 +0000
committerGerrit Code Review <gerrit@automotivelinux.org>2018-06-05 17:00:40 +0000
commitf0b5fd39013abe170222051f91589a6db6616770 (patch)
treeb3907e478b0a65c400cbcd1e2f735961743dd66c /recipes-graphics/web-runtime/web-runtime/web-runtime.qml
parent5c1f34ff690f28179ab308f068d84c909e46b171 (diff)
parentb6852864508358930586e083e72cd2912af68674 (diff)
Merge "3rd part of the layer/profile rework [2/2]"
Diffstat (limited to 'recipes-graphics/web-runtime/web-runtime/web-runtime.qml')
-rw-r--r--recipes-graphics/web-runtime/web-runtime/web-runtime.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/recipes-graphics/web-runtime/web-runtime/web-runtime.qml b/recipes-graphics/web-runtime/web-runtime/web-runtime.qml
new file mode 100644
index 000000000..852567a49
--- /dev/null
+++ b/recipes-graphics/web-runtime/web-runtime/web-runtime.qml
@@ -0,0 +1,14 @@
+import QtQuick 2.1
+import QtQuick.Controls 1.1
+import QtWebEngine 1.1
+
+ApplicationWindow {
+ width: 1024
+ height: 768
+ visible: true
+ flags: Qt.WindowFullScreen | Qt.FramelessWindowHint
+ WebEngineView {
+ url: Qt.application.arguments[1]
+ anchors.fill: parent
+ }
+}