mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Mobile: remove remaining accesses to DiveObjectHelper from QML
Add a couple more roles and remove the dive role that allows accesss to the DiveObjectHelper in the first place. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
32ae3810ce
commit
158a2ec159
4 changed files with 23 additions and 20 deletions
|
@ -216,7 +216,7 @@ Kirigami.Page {
|
|||
|
||||
onCurrentItemChanged: {
|
||||
// why do we do this? What consumes this?
|
||||
manager.selectedDiveTimestamp = currentItem.modelData.dive.timestamp
|
||||
manager.selectedDiveTimestamp = currentItem.modelData.date
|
||||
// make sure the core data structures reflect that this dive is selected
|
||||
manager.selectDive(currentItem.modelData.id)
|
||||
// update the map to show the highlighted flag and center on it
|
||||
|
@ -284,15 +284,15 @@ Kirigami.Page {
|
|||
// careful when translating, this text is "magic" in DiveDetailsEdit.qml
|
||||
weight = "cannot edit multiple weight systems"
|
||||
}
|
||||
startpressure = dive.startPressure
|
||||
endpressure = dive.endPressure
|
||||
usedGas = dive.firstGas
|
||||
usedCyl = dive.getCylinder
|
||||
cylinderIndex0 = dive.cylinderList.indexOf(usedCyl[0])
|
||||
cylinderIndex1 = dive.cylinderList.indexOf(usedCyl[1])
|
||||
cylinderIndex2 = dive.cylinderList.indexOf(usedCyl[2])
|
||||
cylinderIndex3 = dive.cylinderList.indexOf(usedCyl[3])
|
||||
cylinderIndex4 = dive.cylinderList.indexOf(usedCyl[4])
|
||||
startpressure = modelData.startPressure
|
||||
endpressure = modelData.endPressure
|
||||
usedGas = modelData.firstGas
|
||||
usedCyl = modelData.getCylinder
|
||||
cylinderIndex0 = modelData.cylinderList.indexOf(usedCyl[0])
|
||||
cylinderIndex1 = modelData.cylinderList.indexOf(usedCyl[1])
|
||||
cylinderIndex2 = modelData.cylinderList.indexOf(usedCyl[2])
|
||||
cylinderIndex3 = modelData.cylinderList.indexOf(usedCyl[3])
|
||||
cylinderIndex4 = modelData.cylinderList.indexOf(usedCyl[4])
|
||||
rating = modelData.rating
|
||||
visibility = modelData.viz
|
||||
|
||||
|
|
|
@ -363,7 +363,7 @@ Item {
|
|||
id: cylinderBox0
|
||||
flat: true
|
||||
model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ?
|
||||
diveDetailsListView.currentItem.modelData.dive.cylinderList : null
|
||||
diveDetailsListView.currentItem.modelData.cylinderList : null
|
||||
inputMethodHints: Qt.ImhNoPredictiveText
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
|
@ -420,7 +420,7 @@ Item {
|
|||
id: cylinderBox1
|
||||
flat: true
|
||||
model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ?
|
||||
diveDetailsListView.currentItem.modelData.dive.cylinderList : null
|
||||
diveDetailsListView.currentItem.modelData.cylinderList : null
|
||||
inputMethodHints: Qt.ImhNoPredictiveText
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
|
@ -484,7 +484,7 @@ Item {
|
|||
currentIndex: find(usedCyl[2])
|
||||
flat: true
|
||||
model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ?
|
||||
diveDetailsListView.currentItem.modelData.dive.cylinderList : null
|
||||
diveDetailsListView.currentItem.modelData.cylinderList : null
|
||||
inputMethodHints: Qt.ImhNoPredictiveText
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
|
@ -547,7 +547,7 @@ Item {
|
|||
currentIndex: find(usedCyl[3])
|
||||
flat: true
|
||||
model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ?
|
||||
diveDetailsListView.currentItem.modelData.dive.cylinderList : null
|
||||
diveDetailsListView.currentItem.modelData.cylinderList : null
|
||||
inputMethodHints: Qt.ImhNoPredictiveText
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
|
@ -611,7 +611,7 @@ Item {
|
|||
currentIndex: find(usedCyl[4])
|
||||
flat: true
|
||||
model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ?
|
||||
diveDetailsListView.currentItem.modelData.dive.cylinderList : null
|
||||
diveDetailsListView.currentItem.modelData.cylinderList : null
|
||||
inputMethodHints: Qt.ImhNoPredictiveText
|
||||
Layout.fillWidth: true
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue