QML UI: show dive number and date in the detail view

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-07-27 12:26:51 -07:00
parent 16c6ff0089
commit 4b29cc21fb
2 changed files with 11 additions and 2 deletions

View file

@ -18,6 +18,8 @@ Item {
property string buddy
property string divemaster;
property string notes;
property string date
property string number
onDive_idChanged: {
qmlProfile.diveId = dive_id
@ -78,11 +80,16 @@ Item {
id: editorDetails
width: parent.width
columns: 2
Text { }
Text {
Layout.columnSpan: 2
Layout.alignment: Qt.AlignHCenter
text: "Dive " + number + " (" + date + ")"; font.bold: true
}
QMLProfile {
Layout.columnSpan: 2
Layout.fillWidth: true
id: qmlProfile
height: 500
Layout.fillWidth: true
}
Text { text: "Location:"; font.bold: true }
TextField { id: txtLocation; text: location; Layout.fillWidth: true }

View file

@ -40,6 +40,8 @@ Rectangle {
detailsWindow.watertemp = watertemp
detailsWindow.divemaster = divemaster
detailsWindow.notes = notes
detailsWindow.number = diveNumber
detailsWindow.date = date
stackView.push(detailsWindow)
}
}