Index: sources/gui/qml/pages/treatment/TreatmentConfirm.qml =================================================================== diff -u -r810e4b12507feba688c3ea2ab045040214661298 -ra51b1ec80d65c7cf9f7f3b86f45a637a6d42efc1 --- sources/gui/qml/pages/treatment/TreatmentConfirm.qml (.../TreatmentConfirm.qml) (revision 810e4b12507feba688c3ea2ab045040214661298) +++ sources/gui/qml/pages/treatment/TreatmentConfirm.qml (.../TreatmentConfirm.qml) (revision a51b1ec80d65c7cf9f7f3b86f45a637a6d42efc1) @@ -31,15 +31,15 @@ ScreenItem { id: _root objectName: "TreatmentConfirm" backgroundRect.color: Colors.backgroundMainMenu - signal backClicked() - signal confirmClicked() + signal clickedBack() + signal clickedConfirm() TopMenuBarCreateTreatment { id: _topMenuBar anchors.top: parent.top anchors.left: parent.left width: parent.width - onBackClicked: { - _root.backClicked(); + onClickedBack: { + _root.clickedBack(); } state: "confirm" } @@ -67,15 +67,27 @@ color: Colors.textMain font.pixelSize: Fonts.fontPixelTitle } + // insert the treatment information table here + ConfirmTreatmentTable { + anchors.horizontalCenter: parent.horizontalCenter + } + TouchRect { id : _continueRect objectName: "_continueRect" anchors.horizontalCenter: parent.horizontalCenter text.text: qsTr("CONFIRM TREATMENT") button.onClicked: { - _root.confirmClicked() + _root.clickedConfirm() } } + + Rectangle { + id: _spacer + height: 75 + width: parent.width + color: "transparent" + } } }