Index: sources/gui/qml/pages/treatment/TreatmentBloodPrime.qml =================================================================== diff -u -re8df7fe7fe6274c416f176369250b9581e07d2a5 -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/gui/qml/pages/treatment/TreatmentBloodPrime.qml (.../TreatmentBloodPrime.qml) (revision e8df7fe7fe6274c416f176369250b9581e07d2a5) +++ 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) 12-Sep-2022 + * \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 : vTreatmentRanges.arterialPressureMonitorMin - arterialMaximum : vTreatmentRanges.arterialPressureMonitorMax - venousMinimum : vTreatmentRanges.venousPressureMonitorMin - venousMaximum : vTreatmentRanges.venousPressureMonitorMax + // 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 - arterialPressure : vTreatmentPressureOcclusion.arterialPressure - venousPressure : vTreatmentPressureOcclusion.venousPressure - isTouchable : false - valueOutRangeNotify : false x : Variables.screenGridLeftColumnX y : Variables.screenGridRow1Y width : Variables.screenGridAreaWidth