From 6bf5bbd0ab5abab05305667a516c069c7c5556f4 Mon Sep 17 00:00:00 2001 From: Tasuku Suzuki Date: Fri, 2 Dec 2016 11:19:51 +0900 Subject: WIP: add Qt Quick HomeScreen UI Change-Id: I2be964f6d9e76df616169d7b2654d17ae9446687 Signed-off-by: Tasuku Suzuki --- HomeScreenNG/qml/TopArea.qml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 HomeScreenNG/qml/TopArea.qml (limited to 'HomeScreenNG/qml/TopArea.qml') diff --git a/HomeScreenNG/qml/TopArea.qml b/HomeScreenNG/qml/TopArea.qml new file mode 100644 index 0000000..8de8a8d --- /dev/null +++ b/HomeScreenNG/qml/TopArea.qml @@ -0,0 +1,26 @@ +import QtQuick 2.7 +import QtQuick.Layouts 1.1 + +Image { + width: 1920 + height: 218 + source: './images/TopSection_NoText_NoIcons-01.png' + fillMode: Image.PreserveAspectCrop + + RowLayout { + anchors.fill: parent + spacing: 0 + ShortcutArea { + id: shortcutArea + Layout.fillWidth: true + Layout.fillHeight: true + Layout.preferredWidth: 785 + } + StatusArea { + id: statusArea + Layout.fillWidth: true + Layout.fillHeight: true + Layout.preferredWidth: 295 + } + } +} -- cgit 1.2.3-korg