Index: sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentDurationConfirm.qml =================================================================== diff -u -r3b09007701d2da7cced59daa8093094df12590cd -re6ffa6d5d1b7820875de07cdbb15f06617400344 --- sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentDurationConfirm.qml (.../TreatmentAdjustmentDurationConfirm.qml) (revision 3b09007701d2da7cced59daa8093094df12590cd) +++ sources/gui/qml/pages/treatment/adjustments/TreatmentAdjustmentDurationConfirm.qml (.../TreatmentAdjustmentDurationConfirm.qml) (revision e6ffa6d5d1b7820875de07cdbb15f06617400344) @@ -33,8 +33,9 @@ property real ufVolumeGoal : 0 property real ufRate : 0 property int newTreatmentDuration : 0 + property int newHeparinDuration : 0 - signal confirmClicked(int vNewTreatmentDuration) + signal confirmClicked(int vNewTreatmentDuration, int vNewHeparinDuration, real vRate) Row { id: _infoRow objectName: "_infoRow" @@ -57,6 +58,16 @@ valueColor : Colors.ufVolumeGoalText } + LabelUnitText { id: _newHeparinDuration + objectName: "_newHeparinDuration" + width : _infoRow.cellWidth + label : qsTr("New Heparin Duration") + unit : Variables.unitTextDuration + value : _root.newHeparinDuration + valueColor : Colors.ufVolumeGoalText + visible : vSettings.heparinSyringePump + } + LabelUnitText { id: _ufVolumeGoal objectName : "_ufVolumeGoal" width : _infoRow.cellWidth @@ -123,7 +134,9 @@ isDefault : true onClicked : { - _root.confirmClicked(_root.newTreatmentDuration) + _root.confirmClicked(_newTreatmentDuration.value, + _newHeparinDuration.value , + _ufRate.value ) } } }