Index: sources/gui/qml/pages/treatment/sections/TreatmentPressures.qml =================================================================== diff -u -rff8553ddbd24f3b7e4727e78bc74c13e8eb7eeb5 -re4a6f98d9a3eefb5226f85d62dfe103867189a4c --- sources/gui/qml/pages/treatment/sections/TreatmentPressures.qml (.../TreatmentPressures.qml) (revision ff8553ddbd24f3b7e4727e78bc74c13e8eb7eeb5) +++ sources/gui/qml/pages/treatment/sections/TreatmentPressures.qml (.../TreatmentPressures.qml) (revision e4a6f98d9a3eefb5226f85d62dfe103867189a4c) @@ -47,6 +47,20 @@ isTouchable: true title: qsTr("PRESSURE") + " " + qsTr("(mmHg)") + /* + Since this Component cannot be bound to the properties since it has to make sure the request has been accepted. + Because the pressure response regardless of the accepted/rejected the FW Software message will pass what is preferred. + */ + function setBounds(vArterialLimitLow , + vArterialLimitHigh , + vVenousLimitLow , + vVenousLimitHigh ) { + _root.arterialLowerBound = vArterialLimitLow + _root.arterialUpperBound = vArterialLimitHigh + _root.venousLowerBound = vVenousLimitLow + _root.venousUpperBound = vVenousLimitHigh + } + RangeBar { id: _arterialRangeBar x: 0 y: 80