summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/qml_model_qt5/views/RadioPlayer.qml
diff options
context:
space:
mode:
Diffstat (limited to 'SDL_Core/src/components/qt_hmi/qml_model_qt5/views/RadioPlayer.qml')
-rw-r--r--SDL_Core/src/components/qt_hmi/qml_model_qt5/views/RadioPlayer.qml160
1 files changed, 160 insertions, 0 deletions
diff --git a/SDL_Core/src/components/qt_hmi/qml_model_qt5/views/RadioPlayer.qml b/SDL_Core/src/components/qt_hmi/qml_model_qt5/views/RadioPlayer.qml
new file mode 100644
index 000000000..f673327c6
--- /dev/null
+++ b/SDL_Core/src/components/qt_hmi/qml_model_qt5/views/RadioPlayer.qml
@@ -0,0 +1,160 @@
+/**
+ * @file RadioPlayerView.qml
+ * @brief Parent for AM, FM, Sirius players screen view.
+ * Copyright (c) 2013, Ford Motor Company
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ * Redistributions of source code must retain the above copyright notice, this
+ * list of conditions and the following disclaimer.
+ *
+ * Redistributions in binary form must reproduce the above copyright notice,
+ * this list of conditions and the following
+ * disclaimer in the documentation and/or other materials provided with the
+ * distribution.
+ *
+ * Neither the name of the Ford Motor Company nor the names of its contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGE.
+ */
+
+import QtQuick 2.0
+import "../controls"
+import "../models"
+import "../models/Constants.js" as Constants
+
+Item {
+ id: radioPlayerView
+
+ property string radioType: ""
+ property string radioName: ""
+ property alias buttonHD: bot.children
+
+ property PlayerState playerState
+
+ Item {
+ // top 3/4 screen
+ id: upperContent
+ anchors.top: parent.top
+ anchors.left: parent.left
+ height: parent.height * 3/4
+ width: parent.width
+
+ Item {
+ // top part for buttons
+ id: top
+ anchors.top: parent.top
+ anchors.left: parent.left
+ width: parent.width
+ height: parent.height * 1/4
+
+ OvalButton {
+ text: radioName
+ onReleased: contentLoader.go("./views/MusicSourceView.qml")
+ fontSize: Constants.fontSize
+ }
+
+ OvalButton {
+ anchors.right: parent.right
+ anchors.top: parent.top
+ text: "Tune"
+ fontSize: Constants.fontSize
+ }
+ }
+
+ Item {
+ // mid part for information about song
+ id: mid
+ anchors.verticalCenter: parent.verticalCenter
+ anchors.left: parent.left
+ width: parent.width
+ height: parent.height / 2
+
+ Column {
+ anchors.verticalCenter: parent.verticalCenter
+ anchors.left: parent.left
+
+ Row {
+ Text {
+ id: radioChannelNameText
+ color: Constants.primaryColor
+ text: playerState.presets[0]
+ font.pixelSize: 45
+ }
+ Text {
+ anchors.bottom: radioChannelNameText.bottom
+ color: Constants.primaryColor
+ text: " " + radioType
+ font.pixelSize: 25
+ }
+ }
+
+ Text {
+ color: Constants.primaryColor
+ text: playerState.songName
+ font.pixelSize: 25
+ font.bold: true
+ }
+
+ Text {
+ color: Constants.primaryColor
+ text: playerState.albumName
+ font.pixelSize: 25
+ }
+ }
+ }
+
+ Item {
+ // bottom part for HD button (for FM radio)
+ id: bot
+ anchors.left: parent.left
+ anchors.bottom: parent. bottom
+ width: parent.width
+ height: parent.height * 1/4
+ }
+ }
+
+ Item {
+ // bottom 1/4 screen
+ id: lowerContent
+ anchors.bottom: parent.bottom
+ anchors.left: parent.left
+ width: parent.width
+ height: 1/4 * parent.height
+
+ // Line that divide screen in two parts
+ Rectangle {
+ anchors.top: parent.top
+ anchors.left: parent.left
+ width: parent.width
+ height: 2
+ color: Constants.primaryColor
+ }
+
+ PresetRow {
+ anchors.verticalCenter: parent.verticalCenter
+ anchors.left: parent.left
+ presets: playerState.presets
+ width: parent.width
+ onSelectedIndexChanged: {
+ radioChannelNameText.text = presets[selectedIndex];
+ }
+ }
+ }
+}
+
+