Index: sources/gui/qml/pages/pretreatment/connection/PreTreatmentConnectionStack.qml =================================================================== diff -u -rbb93d05bea8defa9ff689ceda63d03e5233da855 -re384cd37cb5f778a75e86c28e5901086a5aa2aa3 --- sources/gui/qml/pages/pretreatment/connection/PreTreatmentConnectionStack.qml (.../PreTreatmentConnectionStack.qml) (revision bb93d05bea8defa9ff689ceda63d03e5233da855) +++ sources/gui/qml/pages/pretreatment/connection/PreTreatmentConnectionStack.qml (.../PreTreatmentConnectionStack.qml) (revision e384cd37cb5f778a75e86c28e5901086a5aa2aa3) @@ -23,6 +23,7 @@ import "qrc:/compounds" import "qrc:/pages/pretreatment" import "qrc:/pages/pretreatment/connection" +import "qrc:/pages/settings" // for SettingsBluetoothCuff /*! * \brief the pre-treatment consumbles stack screen @@ -50,6 +51,16 @@ topMarginContent : 250 contentRectHeight : _root.height } + TouchRect { id: _enterBluetoothScreen + visible : true + text.text : qsTr("Bluetooth Settings") + onClicked : _settingsBluetoothPage.visible = true + isDefault : true + width : _bphrEntry.width/2 + anchors.top : _bphrEntry.bottom + anchors.topMargin : Variables.notificationHeight + Variables.minVGap + anchors.horizontalCenter: _bphrEntry.horizontalCenter + } Label { text : qsTr("Press START on Blood Pressure Measurement Cuff to display reading or enter vitals manually") width : parent.width @@ -78,6 +89,11 @@ _preTreatmentVitals.update( vSystolic, vDiastolic, vHeartRate ) } } + SettingsBluetoothCuff { id: _settingsBluetoothPage + property var itemsText : [qsTr("Bluetooth Cuff")] + itemIndex : 0 // set to zero for itemsText access of array + onBackClicked: _settingsBluetoothPage.visible = false + } } PreTreatmentUltrafiltration { id: _preTreatmentUltrafiltration