mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
mobile/summary: add section headers
Add section headers to the dive summaries on mobile by adding a section-property. Of course, this will not work on desktop. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
1809dbd00a
commit
a93c303b8b
3 changed files with 28 additions and 1 deletions
|
@ -123,6 +123,7 @@ Kirigami.ScrollablePage {
|
|||
id: headerLabel
|
||||
verticalAlignment: Qt.AlignVCenter
|
||||
colorBackground: parent.color
|
||||
leftPadding: Kirigami.Units.largeSpacing
|
||||
text: header !== undefined ? header : ""
|
||||
font.bold: true
|
||||
}
|
||||
|
@ -150,6 +151,20 @@ Kirigami.ScrollablePage {
|
|||
}
|
||||
}
|
||||
|
||||
Component {
|
||||
id: sectionDelegate
|
||||
Rectangle {
|
||||
width: headerColumnWidth * 4 - Kirigami.Units.gridUnit * 2
|
||||
height: headerLabel.height + Kirigami.Units.largeSpacing
|
||||
TemplateLabel {
|
||||
id: headerLabel
|
||||
verticalAlignment: Qt.AlignVCenter
|
||||
colorBackground: parent.color
|
||||
text: section
|
||||
font.bold: true
|
||||
}
|
||||
}
|
||||
}
|
||||
ListView {
|
||||
id: resultsTable
|
||||
model: summaryModel
|
||||
|
@ -157,6 +172,8 @@ Kirigami.ScrollablePage {
|
|||
width: summary.width
|
||||
height: summaryModel.rowCount() * 2 * Kirigami.Units.gridUnit
|
||||
delegate: rowDelegate
|
||||
section.property: "section"
|
||||
section.delegate: sectionDelegate
|
||||
Component.onCompleted: {
|
||||
manager.appendTextToLog("SUMMARY: width: " + width + " height: " + height + " rows: " + model.rowCount())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue