X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=HomeScreenNG%2Fqml%2FMediaArea.qml;fp=HomeScreenNG%2Fqml%2FMediaArea.qml;h=0000000000000000000000000000000000000000;hb=4088de47844451c7b331a612d41a0ec5fc7db53a;hp=16ceb275712b232c740b3b97d0dd925658675cef;hpb=3b66010c1f381f397e827209727742daf642e7fd;p=staging%2FHomeScreen.git diff --git a/HomeScreenNG/qml/MediaArea.qml b/HomeScreenNG/qml/MediaArea.qml deleted file mode 100644 index 16ceb27..0000000 --- a/HomeScreenNG/qml/MediaArea.qml +++ /dev/null @@ -1,40 +0,0 @@ -import QtQuick 2.7 -import QtQuick.Controls 2.0 - -StackView { - id: root - width: 1080 - height: 215 - - initialItem: blank - - Component { - id: blank - MediaAreaBlank { - MouseArea { - anchors.fill: parent - onClicked: root.push(mouse.x < 540 ? music : radio) - } - } - } - - Component { - id: music - MediaAreaMusic { - MouseArea { - anchors.fill: parent - onClicked: root.pop() - } - } - } - - Component { - id: radio - MediaAreaRadio { - MouseArea { - anchors.fill: parent - onClicked: root.pop() - } - } - } -}