X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=meta-app-framework%2Frecipes-core%2Fweb-runtime%2Fweb-runtime%2Fweb-runtime.qml;fp=meta-app-framework%2Frecipes-core%2Fweb-runtime%2Fweb-runtime%2Fweb-runtime.qml;h=afe8a77d074d75e5674b225158f31bafb193a16c;hb=80f4d503fc5bb2564b72b72daedebf74612c30f3;hp=0000000000000000000000000000000000000000;hpb=86180838e730d7ef96256f2c1e49081072ad84b6;p=AGL%2Fmeta-agl.git diff --git a/meta-app-framework/recipes-core/web-runtime/web-runtime/web-runtime.qml b/meta-app-framework/recipes-core/web-runtime/web-runtime/web-runtime.qml new file mode 100644 index 000000000..afe8a77d0 --- /dev/null +++ b/meta-app-framework/recipes-core/web-runtime/web-runtime/web-runtime.qml @@ -0,0 +1,13 @@ +import QtQuick 2.1 +import QtQuick.Controls 1.1 +import QtWebEngine 1.1 + +ApplicationWindow { + width: 1024 + height: 768 + visible: true + WebEngineView { + url: Qt.application.arguments[1] + anchors.fill: parent + } +}