aboutsummaryrefslogtreecommitdiffstats
path: root/dev/apps/com.pelagicore.sheets
diff options
context:
space:
mode:
authorBramastyo Harimukti <bramastyo.harimukti.santoso@pelagicore.com>2018-02-07 10:28:32 +0100
committerDaniel d'Andrada <daniel.dandrada@luxoft.com>2018-02-28 15:58:33 +0100
commit47dc335f90fa12b457407a7da45b97354a6b4dba (patch)
tree18d1edd140ab93668a9ea09f91080a263858fd61 /dev/apps/com.pelagicore.sheets
parent8a105072e5e0d88eed28d0b1b1e31c78d0305cc9 (diff)
[SheetsApp] Add initial ListItem panel for sheets app
Diffstat (limited to 'dev/apps/com.pelagicore.sheets')
-rw-r--r--dev/apps/com.pelagicore.sheets/components/ListItemPanel.qml97
1 files changed, 97 insertions, 0 deletions
diff --git a/dev/apps/com.pelagicore.sheets/components/ListItemPanel.qml b/dev/apps/com.pelagicore.sheets/components/ListItemPanel.qml
new file mode 100644
index 00000000..b365b8e4
--- /dev/null
+++ b/dev/apps/com.pelagicore.sheets/components/ListItemPanel.qml
@@ -0,0 +1,97 @@
+/****************************************************************************
+**
+** Copyright (C) 2018 Pelagicore AG
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the Triton IVI UI.
+**
+** $QT_BEGIN_LICENSE:GPL-QTAS$
+** Commercial License Usage
+** Licensees holding valid commercial Qt Automotive Suite licenses may use
+** this file in accordance with the commercial license agreement provided
+** with the Software or, alternatively, in accordance with the terms
+** contained in a written agreement between you and The Qt Company. For
+** licensing terms and conditions see https://www.qt.io/terms-conditions.
+** For further information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3 or (at your option) any later version
+** approved by the KDE Free Qt Foundation. The licenses are as published by
+** the Free Software Foundation and appearing in the file LICENSE.GPL3
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-3.0.html.
+**
+** $QT_END_LICENSE$
+**
+** SPDX-License-Identifier: GPL-3.0
+**
+****************************************************************************/
+
+import QtQuick 2.8
+import QtQuick.Controls 2.3
+import QtQuick.Layouts 1.3
+import controls 1.0
+import utils 1.0
+
+Item {
+ id: root
+ anchors.horizontalCenter: parent ? parent.horizontalCenter : null
+ anchors.top: parent ? parent.top : null
+ anchors.topMargin: Style.vspan(1)
+ anchors.bottom: parent ? parent.bottom : null
+
+ ColumnLayout {
+ anchors.horizontalCenter: parent.horizontalCenter
+ width: Style.hspan(17)
+ spacing: Style.vspan(0.05)
+
+ ListItem {
+ implicitWidth: Style.hspan(17)
+ implicitHeight: Style.vspan(1.3)
+ text: "Basic ListItem"
+ }
+
+ ListItem {
+ implicitWidth: Style.hspan(17)
+ implicitHeight: Style.vspan(1.3)
+ text: "ListItem Text"
+ subText: "ListItem Subtext"
+ }
+
+ ListItem {
+ implicitWidth: Style.hspan(17)
+ implicitHeight: Style.vspan(1.3)
+ symbol: Style.symbol("ic-update")
+ text: "ListItem with Icon"
+ }
+
+ ListItem {
+ implicitWidth: Style.hspan(17)
+ implicitHeight: Style.vspan(1.3)
+ symbol: Style.symbol("ic-update")
+ text: "ListItem with Secondary Text"
+ secondaryText: "Company"
+ }
+
+ ListItem {
+ implicitWidth: Style.hspan(17)
+ implicitHeight: Style.vspan(1.3)
+ symbol: Style.symbol("ic-update")
+ rightToolSymbol: Style.symbol("ic-close")
+ text: "ListItem with Secondary Text"
+ secondaryText: "68% of 14 MB"
+ }
+
+ ListItem {
+ implicitWidth: Style.hspan(17)
+ implicitHeight: Style.vspan(1.3)
+ symbol: Style.symbol("ic-update")
+ rightToolSymbol: Style.symbol("ic-close")
+ text: "ListItem with Looooooooooonnngggg Text"
+ secondaryText: "Loooooooong Secondary Text"
+ }
+ }
+}
+