diff options
author | Sebastian Kügler <sebas@kde.org> | 2015-10-09 03:56:36 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-10-09 12:51:51 -0700 |
commit | 5195fcf919a1b34410fbb99498571752137adce1 (patch) | |
tree | cef33138f57f4e18bdf147acaab36b9f36d11147 /qt-mobile/DiveList.qml | |
parent | 0ed2584231f0583a9bc45a300b96bbb6127c6cd3 (diff) | |
download | subsurface-5195fcf919a1b34410fbb99498571752137adce1.tar.gz |
QML-UI: improve list painting
- section headers get underline with a thick line
- items are separated by spacing and a thin grey line at the bottom
- spacing on both sides, aligning with header
Signed-off-by: Sebastian Kügler <sebas@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile/DiveList.qml')
-rw-r--r-- | qt-mobile/DiveList.qml | 69 |
1 files changed, 41 insertions, 28 deletions
diff --git a/qt-mobile/DiveList.qml b/qt-mobile/DiveList.qml index d244c5bec..6c03daa5f 100644 --- a/qt-mobile/DiveList.qml +++ b/qt-mobile/DiveList.qml @@ -16,18 +16,9 @@ Rectangle { property real detailsOpacity : 0 - width: diveListView.width + width: diveListView.width - units.spacing height: childrenRect.height - //Bounded rect for the background - Rectangle { - id: background - x: 2; y: 2; width: parent.width - x*2; height: parent.height - y*2; - color: "ivory" - border.color: "lightblue" - radius: 5 - } - //Mouse region: When clicked, the mode changes to details view MouseArea { anchors.fill: parent @@ -49,19 +40,23 @@ Rectangle { //Layout of the page: (mini profile, dive no, date at the top //And other details at the bottom. - Row { - id: topLayout - x: 10; y: 10; height: childrenRect.height; width: parent.width + Column { + x: units.spacing + width: parent.width - units.spacing * 2 + height: childrenRect.height + units.spacing * 2 + spacing: units.spacing / 2 + anchors.margins: units.spacing - Column { - width: background.width; height: childrenRect.height * 1.1 - spacing: 5 - - Text { - text: diveNumber + ' (' + date + ')' - } - Text { text: location; width: parent.width } - Text { text: '<b>Depth:</b> ' + depth + ' <b>Duration:</b> ' + duration; width: parent.width } + Text { + text: diveNumber + ' (' + date + ')' + } + Text { text: location; width: parent.width } + Text { text: '<b>Depth:</b> ' + depth + ' <b>Duration:</b> ' + duration; width: parent.width } + Rectangle { + color: theme.textColor + opacity: .2 + width: parent.width + height: Math.max(1, units.gridUnit / 24) // we really want a thin line } } } @@ -69,16 +64,32 @@ Rectangle { Component { id: tripHeading - Rectangle { - width: page.width - height: childrenRect.height - color: "lightsteelblue" + Item { + width: page.width - units.spacing * 2 + height: childrenRect.height + units.spacing * 2 Text { + id: sectionText text: section - font.bold: true + anchors { + top: parent.top + left: parent.left + leftMargin: units.spacing + right: parent.right + } + color: theme.textColor font.pointSize: 16 } + Rectangle { + height: Math.max(2, units.gridUnit / 12) // we want a thicker line + anchors { + top: sectionText.bottom + left: parent.left + leftMargin: units.spacing + right: parent.right + } + color: theme.accentColor + } } } @@ -87,8 +98,10 @@ Rectangle { anchors.fill: parent model: diveModel delegate: diveDelegate + boundsBehavior: Flickable.StopAtBounds + //highlight: Rectangle { color: theme.highlightColor; width: units.spacing } focus: true - + clip: true section.property: "trip" section.criteria: ViewSection.FullString section.delegate: tripHeading |