Index: sources/gui/qml/globals/Variables.qml =================================================================== diff -u -rff8553ddbd24f3b7e4727e78bc74c13e8eb7eeb5 -r1aa53e9869f4c27d53dd9052271ca38befbe22e9 --- sources/gui/qml/globals/Variables.qml (.../Variables.qml) (revision ff8553ddbd24f3b7e4727e78bc74c13e8eb7eeb5) +++ sources/gui/qml/globals/Variables.qml (.../Variables.qml) (revision 1aa53e9869f4c27d53dd9052271ca38befbe22e9) @@ -110,6 +110,37 @@ readonly property int dialysateFlowResolution : 50 readonly property int durationResolution : 15 // PRS346 + // Inline Blood Pressures + // - Artrial + // - Artrial - Entire pressure value range + readonly property int arterialValueMin : -400; // PRS362 const + readonly property int arterialValueMax : +600; // PRS362 const + // - Artrial - Adjust pressure limit range and manufacturing default - Low + readonly property int arterialLimitLowMin : -300; // PRS354 const + // ref to Model // arterialLimitLowMin : -300; // PRS354 default \ref MAdjustPressuresLimitsReq + readonly property int arterialLimitLowMax : +200; // PRS354 const + // - Artrial - Adjust pressure limit range and manufacturing default - High + readonly property int arterialLimitHighMin : -300; // PRS355 const + // ref to Model // arterialLimitHighMin : +100; // PRS355 default \ref MAdjustPressuresLimitsReq + readonly property int arterialLimitHighMax : +200; // PRS355 const + // - Artrial - Adjust pressure limit resolution + readonly property int arterialLimitStep : +10; // PRS354,PRS355 // has to be the same since it's on the same line + + // - Venous + // - Venous - Entire pressure value range + readonly property int venousValueMin : -100; // PRS361 const + readonly property int venousValueMax : +700; // PRS361 const + // - Venous - Adjust pressure limit range and manufacturing default - Low + readonly property int venousLimitLowMin : -100; // PRS356 const + // ref to Model // venousLimitLowDef : -100; // PRS356 default \ref MAdjustPressuresLimitsReq + readonly property int venousLimitLowMax : +600; // PRS356 const + // - Venous - Adjust pressure limit range and manufacturing default - High + readonly property int venousLimitHighMin : +100; // PRS357 const + // ref to Model // venousLimitHighDef : +400; // PRS357 default \ref MAdjustPressuresLimitsReq + readonly property int venousLimitHighMax : +600; // PRS357 const + // - Venous - Adjust pressure limit resolution + readonly property int venousLimitStep : +10; // PRS356,PRS357 // has to be the same since it's on the same line + // Units // - Ultrafiltration readonly property string unitTextUltrafiltrationVolume : qsTr("(L)")