summaryrefslogtreecommitdiffstats
path: root/meta-agl-demo/recipes-graphics/web-runtime/web-runtime/web-runtime.qml
diff options
context:
space:
mode:
authorToshikazuOhiwa <toshikazu_ohiwa@mail.toyota.co.jp>2020-03-30 09:24:26 +0900
committerToshikazuOhiwa <toshikazu_ohiwa@mail.toyota.co.jp>2020-03-30 09:24:26 +0900
commit5b80bfd7bffd4c20d80b7c70a7130529e9a755dd (patch)
treeb4bb18dcd1487dbf1ea8127e5671b7bb2eded033 /meta-agl-demo/recipes-graphics/web-runtime/web-runtime/web-runtime.qml
parent706ad73eb02caf8532deaf5d38995bd258725cb8 (diff)
agl-basesystem
Diffstat (limited to 'meta-agl-demo/recipes-graphics/web-runtime/web-runtime/web-runtime.qml')
-rw-r--r--meta-agl-demo/recipes-graphics/web-runtime/web-runtime/web-runtime.qml14
1 files changed, 14 insertions, 0 deletions
diff --git a/meta-agl-demo/recipes-graphics/web-runtime/web-runtime/web-runtime.qml b/meta-agl-demo/recipes-graphics/web-runtime/web-runtime/web-runtime.qml
new file mode 100644
index 00000000..3efe5159
--- /dev/null
+++ b/meta-agl-demo/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: 1080
+ height: 1488
+ visible: true
+ flags: Qt.WindowFullScreen | Qt.FramelessWindowHint
+ WebEngineView {
+ url: Qt.application.arguments[1]
+ anchors.fill: parent
+ }
+}