Index: sources/gui/qml/pages/treatment/TreatmentStack.qml =================================================================== diff -u -r56e378f7504701b9e9a9dccaf205aef2fd52c58e -r9a0581274e4dc51af6d6f3e4dd932581e8dce445 --- sources/gui/qml/pages/treatment/TreatmentStack.qml (.../TreatmentStack.qml) (revision 56e378f7504701b9e9a9dccaf205aef2fd52c58e) +++ sources/gui/qml/pages/treatment/TreatmentStack.qml (.../TreatmentStack.qml) (revision 9a0581274e4dc51af6d6f3e4dd932581e8dce445) @@ -68,6 +68,12 @@ onSectionFlowClicked : { _treatmentAdjustmentFlow.open() } + onSectionVitalsClicked: { + // no page yet + } + onSectionPressuresClicked: { + _treatmentAdjustmentPressures.open() + } onSectionTimeClicked : { _treatmentAdjustmentDuration.durationValue = vTreatmentTime.time_Total / 60 // minutes => hours _treatmentAdjustmentDuration.open() @@ -93,6 +99,24 @@ onCloseClicked : close() onConfirmClicked : vTreatmentAdjustmentFlows.doAdjustment(bloodFlowRateValue, dialysateFlowRateValue) } + + TreatmentAdjustmentPressures{ id: _treatmentAdjustmentPressures + onCloseClicked : close() + //onConfirmClicked : vTreatmentAdjustmentFlows.doAdjustment(bloodFlowRateValue, dialysateFlowRateValue) + // TODO : TEST : values are real regarding PRS but has to be populated my Model. + arterialPressureMinimum : -400 + arterialPressureLowerBound : -300 + arterialPressureUpperBound : +100 + arterialPressureMaximum : +600 + arterialPressureValue : 70 + + venousPressureMinimum : -100 + venousPressureLowerBound : +100 + venousPressureUpperBound : +400 + venousPressureMaximum : +700 + venousPressureValue : 300 + } + TreatmentAdjustmentDuration { id: _treatmentAdjustmentDuration onCloseClicked : close() onConfirmClicked : vTreatmentAdjustmentDuration.doAdjustment(durationValue)