split divedetails into view and edit parts

This splits the dive detail page into two modes: view and edit

- The edit part loses the profile (it's not editable anyway)

- The view part gets a new layout, friendlier for viewing

- Properties for diveNumber, duration, depth and weight are added

Signed-off-by: Sebastian Kügler <sebas@kde.org>
This commit is contained in:
Sebastian Kügler 2015-12-04 02:28:48 +01:00
parent bd7af5a511
commit 8cf4725742
5 changed files with 168 additions and 127 deletions

View file

@ -28,6 +28,10 @@ MobileComponents.Page {
detailsWindow.width = parent.width
detailsWindow.location = location
detailsWindow.dive_id = id
detailsWindow.diveNumber = diveNumber
detailsWindow.duration = duration
detailsWindow.depth = depth
detailsWindow.rating = rating
detailsWindow.buddy = buddy
detailsWindow.suit = suit
detailsWindow.airtemp = airtemp
@ -36,6 +40,7 @@ MobileComponents.Page {
detailsWindow.notes = notes
detailsWindow.number = diveNumber
detailsWindow.date = date
detailsWindow.weight = weight
stackView.push(detailsWindow)
}
@ -66,7 +71,6 @@ MobileComponents.Page {
}
}
Row {
id: descriptionText
anchors {
left: parent.left
right: parent.right