aboutsummaryrefslogtreecommitdiffstats
path: root/homescreen/qml/MediaArea.qml
diff options
context:
space:
mode:
authorwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2019-05-30 11:40:01 +0800
committerwang_zhiqiang <wang_zhiqiang@dl.cn.nexty-ele.com>2019-05-30 11:40:01 +0800
commit387c167e310124227b2d137eafa7cca992a8eb4a (patch)
tree2d090827726c11079f5a0f82b43b1fa80d3e7a16 /homescreen/qml/MediaArea.qml
parentf266dcd35564ea649ed1435a3ab7a3abbef900d9 (diff)
update
Change-Id: I04732e6f7b1c6fac93d81f0c0451cca96c6ba573
Diffstat (limited to 'homescreen/qml/MediaArea.qml')
-rw-r--r--homescreen/qml/MediaArea.qml57
1 files changed, 0 insertions, 57 deletions
diff --git a/homescreen/qml/MediaArea.qml b/homescreen/qml/MediaArea.qml
deleted file mode 100644
index 0447589..0000000
--- a/homescreen/qml/MediaArea.qml
+++ /dev/null
@@ -1,57 +0,0 @@
-/*
- * Copyright (C) 2016 The Qt Company Ltd.
- * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import QtQuick 2.2
-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()
- }
- }
- }
-}