Index: sources/gui/qml/main.qml =================================================================== diff -u -r90bcc276f2a879169fef20e9168711cf906c0e54 -r15de0cd12dad1ea5107c52e5ed89280bc9e29b1d --- sources/gui/qml/main.qml (.../main.qml) (revision 90bcc276f2a879169fef20e9168711cf906c0e54) +++ sources/gui/qml/main.qml (.../main.qml) (revision 15de0cd12dad1ea5107c52e5ed89280bc9e29b1d) @@ -29,6 +29,7 @@ import VTreatmentTime 0.1; import VAlarmStatus 0.1; import VPowerOff 0.1; +import VHDOperationMode 0.1; import VTreatmentAdjustmentDuration 0.1; import VTreatmentAdjustmentFlows 0.1; @@ -66,14 +67,12 @@ onDidActionReceive: { //console.debug(vAction, vData) switch(vAction) { - case GuiActions.ID_PowerOffBroadcast: + case GuiActions.ID_ShuttingDown: _autoHideInfo.showDialog( qsTr("System is shutting down"), 5000 // if any error happens and shutdown is not successful then after 5 seconds dialog hides. ) break; - case GuiActions.ID_DGLoadCellReadingsData: - console.debug("ID_DGLoadCellReadingsData",vData) } } @@ -84,6 +83,7 @@ VAlarmStatus { id: vAlarmStatus } VPowerOff { id: vPowerOff } + VHDOperationMode { id: vHDOperationMode } VTreatmentBloodFlow { id: vTreatmentBloodFlow } VTreatmentDialysateFlow { id: vTreatmentDialysateFlow }