Index: leahi.qrc =================================================================== diff -u -r128121958d87699685bd88261e39bb968a0de204 -r2f76603ecaceffc19181bffbf811cae2966d7593 --- leahi.qrc (.../leahi.qrc) (revision 128121958d87699685bd88261e39bb968a0de204) +++ leahi.qrc (.../leahi.qrc) (revision 2f76603ecaceffc19181bffbf811cae2966d7593) @@ -34,6 +34,7 @@ sources/gui/qml/dialogs/NotificationDialog.qml sources/gui/qml/dialogs/AlarmListDialog.qml sources/gui/qml/dialogs/LockDialog.qml + sources/gui/qml/dialogs/AcidConcentrateAdjustment.qml sources/gui/qml/dialogs/diagnostics/DiagnosticsDialog.qml @@ -100,6 +101,9 @@ resources/images/Information.png resources/images/Storage.png resources/images/help.png + resources/images/Menu_Dot.png + resources/images/ArrowLeftDisabled.png + resources/images/ArrowRightDisabled.png sources/gui/qml/components/MainMenu.qml @@ -129,10 +133,6 @@ sources/gui/qml/components/TimeText.qml sources/gui/qml/components/ProgressCircle.qml sources/gui/qml/components/Slider.qml - sources/gui/qml/components/SliderCreateTreatment.qml - sources/gui/qml/components/ConfirmTreatmentTable.qml - sources/gui/qml/components/ConfirmTreatmentSubTable.qml - sources/gui/qml/components/GridSelection.qml sources/gui/qml/components/ProgressBarEx.qml sources/gui/qml/components/CloseButton.qml sources/gui/qml/components/ConfirmButton.qml @@ -143,7 +143,6 @@ sources/gui/qml/components/ImageWave.qml sources/gui/qml/components/ImageClock.qml sources/gui/qml/components/ImageLogoDDarkTransparent.qml - sources/gui/qml/components/ConfirmTreatmentTableEntry.qml sources/gui/qml/components/DebugDataColumn.qml sources/gui/qml/components/RangeSlider.qml sources/gui/qml/components/MuteButton.qml @@ -165,6 +164,7 @@ sources/gui/qml/components/HeaderBar.qml sources/gui/qml/components/HeaderBarPopup.qml sources/gui/qml/components/AlarmButtonRow.qml + sources/gui/qml/components/BaseComboBox.qml sources/gui/qml/compounds/PressureRangeSlider.qml @@ -173,6 +173,8 @@ sources/gui/qml/compounds/CheckListView.qml sources/gui/qml/compounds/TouchGrid.qml sources/gui/qml/compounds/BPHREntry.qml + sources/gui/qml/compounds/LabelUnitContainer.qml + sources/gui/qml/compounds/ValueAdjuster.qml qtquickcontrols2.conf @@ -235,9 +237,9 @@ sources/gui/qml/pages/pretreatment/PreTreatmentPrimeStack.qml - sources/gui/qml/pages/pretreatment/create/PreTreatmentCreateStack.qml sources/gui/qml/pages/pretreatment/create/PreTreatmentCreate.qml - sources/gui/qml/pages/pretreatment/create/PreTreatmentConfirm.qml + sources/gui/qml/pages/pretreatment/create/PreTreatmentCreateContent.qml + sources/gui/qml/pages/pretreatment/create/PreTreatmentCreateStack.qml sources/gui/qml/pages/pretreatment/connection/PreTreatmentUltrafiltration.qml Index: sources/gui/qml/main.qml =================================================================== diff -u -r128121958d87699685bd88261e39bb968a0de204 -r2f76603ecaceffc19181bffbf811cae2966d7593 --- sources/gui/qml/main.qml (.../main.qml) (revision 128121958d87699685bd88261e39bb968a0de204) +++ sources/gui/qml/main.qml (.../main.qml) (revision 2f76603ecaceffc19181bffbf811cae2966d7593) @@ -179,6 +179,7 @@ onStandbyChanged: { if(vTDOpMode.standby) { vTreatmentVitals.doReset() + vTreatmentCreate.txCode = "" } } } @@ -348,17 +349,18 @@ // } } // keyboard should always be before AlarmItem to not to covet it. - KeyboardItem { id: _keyboard } + KeyboardItem { id: _keyboard } - HeaderbarWiFi { id: _headerbarWifi } - HeaderbarStorage { id: _headerbarStorage } - HeaderbarSettings { id: _headerbarSettings } - HeaderbarInformation { id: _headerbarInformation } - LockDialog { id: _lockDialog } - AlarmItem { id: _alarmItem ; z: 996 } - PowerItem { id: _powerItem ; z: 997 } - ConfirmDialog { id: _confirmDialog ; z: 998 } - DiagnosticsDialog { id: _diagnosticsDialog; z: 999 } + // Dialogs + AcidConcentrateAdjustment { id: _acidConcentrateAdjustment } + HeaderbarWiFi { id: _headerbarWifi } + HeaderbarStorage { id: _headerbarStorage } + HeaderbarSettings { id: _headerbarSettings } + LockDialog { id: _lockDialog } + AlarmItem { id: _alarmItem ; z: 996 } + PowerItem { id: _powerItem ; z: 997 } + ConfirmDialog { id: _confirmDialog ; z: 998 } + DiagnosticsDialog { id: _diagnosticsDialog; z: 999 } // Note: NotificationBar has to be anchored to the main menu and if it is moved into the AlarmItem // then cannot be anchored.