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

View file

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