Index: sources/gui/qml/pages/treatment/TreatmentBloodPrime.qml =================================================================== diff -u -r8df3fd1873abbe81c7833de240a3ecb2f0f3d1a7 -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/gui/qml/pages/treatment/TreatmentBloodPrime.qml (.../TreatmentBloodPrime.qml) (revision 8df3fd1873abbe81c7833de240a3ecb2f0f3d1a7) +++ sources/gui/qml/pages/treatment/TreatmentBloodPrime.qml (.../TreatmentBloodPrime.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) @@ -1,13 +1,13 @@ /*! * - * Copyright (c) 2021-2022 Diality Inc. - All Rights Reserved. + * Copyright (c) 2021-2024 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file TreatmentBloodPrime.qml * \author (last) Behrouz NematiPour - * \date (last) 15-May-2021 + * \date (last) 13-Sep-2023 * \author (original) Behrouz NematiPour * \date (original) 11-Apr-2021 * @@ -52,21 +52,28 @@ text: vTreatmentBloodPrime.current.toFixed(0) + " " + qsTr(Variables.unitTextFluid) font.pixelSize: 76 font.weight: Font.ExtraLight + } + Text { id: _labelRate + anchors { + top: parent.bottom + topMargin: 20 + horizontalCenter: parent.horizontalCenter + } + color: Colors.textMain + text: vTreatmentBloodFlow.bloodFlow_FlowSetPoint.toFixed(0) + " " + qsTr(Variables.unitTextFlowRate) + font.pixelSize: 23 } } TreatmentPressures { id: _pressuresTouchArea - arterialMinimum : Variables.arterialValueMin - arterialMaximum : Variables.arterialValueMax - venousMinimum : Variables.venousValueMin - venousMaximum : Variables.venousValueMax + // maybe now it makes sense for the ranges to be displayed + // arterialLowerBound : 0 // requested to hide the bounds + // arterialUpperBound : 0 // requested to hide the bounds + // venousLowerBound : 0 // requested to hide the bounds + // venousUpperBound : 0 // requested to hide the bounds - arterilPressure : vTreatmentPressureOcclusion.arterialPressure - venousPressure : vTreatmentPressureOcclusion.venousPressure - isTouchable : false - valueOutRangeNotify : false x : Variables.screenGridLeftColumnX y : Variables.screenGridRow1Y width : Variables.screenGridAreaWidth