X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=HomeScreenNG%2Fqml%2Fmain.qml;fp=HomeScreenNG%2Fqml%2Fmain.qml;h=0000000000000000000000000000000000000000;hb=4088de47844451c7b331a612d41a0ec5fc7db53a;hp=e9774aec03324c21fa462b2ea2eb8c610fca290f;hpb=3b66010c1f381f397e827209727742daf642e7fd;p=staging%2FHomeScreen.git diff --git a/HomeScreenNG/qml/main.qml b/HomeScreenNG/qml/main.qml deleted file mode 100644 index e9774ae..0000000 --- a/HomeScreenNG/qml/main.qml +++ /dev/null @@ -1,44 +0,0 @@ -import QtQuick 2.7 -import QtQuick.Window 2.2 -import QtQuick.Layouts 1.1 - -Window { - visible: true - flags: Qt.FramelessWindowHint - width: container.width * container.scale - height: container.height * container.scale - title: 'HomeScreen' - - Image { - id: container - anchors.centerIn: parent - width: 1080 - height: 1920 - scale: 0.7 - source: './images/AGL_HMI_Background_NoCar-01.png' - - ColumnLayout { - anchors.fill: parent - spacing: 0 - TopArea { - id: topArea - Layout.fillWidth: true - Layout.preferredHeight: 218 - } - - Item { - id: applicationArea - Layout.fillWidth: true - Layout.fillHeight: true - Layout.preferredHeight: 1920 - 218 - 215 - } - - MediaArea { - id: mediaArea - Layout.fillWidth: true - Layout.fillHeight: true - Layout.preferredHeight: 215 - } - } - } -}