Index: sources/gui/qml/pages/treatment/TreatmentStart.qml =================================================================== diff -u -r7045fd6002bdeb28e23a7af6a708a852d522ad12 -ra159e12630645a9a35fb0a5585cc7b639cfe6aa6 --- sources/gui/qml/pages/treatment/TreatmentStart.qml (.../TreatmentStart.qml) (revision 7045fd6002bdeb28e23a7af6a708a852d522ad12) +++ sources/gui/qml/pages/treatment/TreatmentStart.qml (.../TreatmentStart.qml) (revision a159e12630645a9a35fb0a5585cc7b639cfe6aa6) @@ -30,8 +30,13 @@ property int bloodFlow_MeasuredFlow_Precision: 0 property int dialysateInletFlow_MeasuredFlow_Precision: 0 + property int areaWidth : 400 + property int areaHeightRow1 : 170 + property int areaHeightRow2 : 225 + property int areaHeightRow3 : 200 + property int leftColumnX : 40 - property int rightColumnX : 875 + property int rightColumnX : Variables.applicationWidth - leftColumnX - areaWidth property int row1Y : 100 property int row2Y : 290 // 320 @@ -53,6 +58,8 @@ TreatmentFlows { id: _flowsTouchArea x : leftColumnX y : row1Y + width : areaWidth + height : areaHeightRow1 onClicked: { sectionFlowClicked() } @@ -61,6 +68,8 @@ TreatmentVitals { id: _vitalsTouchArea x : leftColumnX y : row2Y + width : areaWidth + height : areaHeightRow2 } Line { x: 0; y: row2LineY; length: lineLength } TreatmentPressure { id: _pressureTouchArea @@ -76,14 +85,16 @@ x : leftColumnX y : row3Y - width : _flowsTouchArea.width + width : areaWidth + height : areaHeightRow3 } // ---------- COLUMN RIGHT TreatmentUltrafiltration { id: _ultrafiltrationTouchArea; x : rightColumnX y : row1Y - width : _flowsTouchArea.width + width : areaWidth + height : areaHeightRow1 onClicked : { sectionUltrafiltrationClicked() } @@ -95,7 +106,8 @@ x : rightColumnX y : row2Y - width : _flowsTouchArea.width + width : areaWidth + height : areaHeightRow2 title : qsTr("SALINE BOLUS") } Line { x: rightLinesX; y: row2LineY; length: lineLength; } @@ -105,7 +117,8 @@ x : rightColumnX y : row3Y - width : _flowsTouchArea.width + width : areaWidth + height : areaHeightRow3 title : qsTr("HEPARIN") cumulativeVisible: false }