Fisheye: Tag 7f40720f04b2d4391c7933f7346bb1bfbdb881f3 refers to a dead (removed) revision in file `ConfirmTreatmentTableEntry.qml'. Fisheye: No comparison available. Pass `N' to diff? Index: denali.qrc =================================================================== diff -u -rd94a2b9334b1b35739b637472e8c3054d7b9b804 -r7f40720f04b2d4391c7933f7346bb1bfbdb881f3 --- denali.qrc (.../denali.qrc) (revision d94a2b9334b1b35739b637472e8c3054d7b9b804) +++ denali.qrc (.../denali.qrc) (revision 7f40720f04b2d4391c7933f7346bb1bfbdb881f3) @@ -79,7 +79,7 @@ sources/gui/qml/components/ImageClock.qml sources/gui/qml/components/ImageLogoDDarkTransparent.qml sources/gui/qml/components/PrimingTimer.qml - ConfirmTreatmentTableEntry.qml + sources/gui/qml/components/ConfirmTreatmentTableEntry.qml sources/gui/qml/components/DebugDataColumn.qml sources/gui/qml/components/CheckListItem.qml Index: sources/gui/qml/components/ConfirmTreatmentTableEntry.qml =================================================================== diff -u --- sources/gui/qml/components/ConfirmTreatmentTableEntry.qml (revision 0) +++ sources/gui/qml/components/ConfirmTreatmentTableEntry.qml (revision 7f40720f04b2d4391c7933f7346bb1bfbdb881f3) @@ -0,0 +1,66 @@ +/*! + * + * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. + * \copyright \n + * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, \n + * IN PART OR IN WHOLE, \n + * WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. \n + * + * \file ConfirmTreatmentTableEntry.qml + * \date 2020/08/25 + * \author Peter Lucia + * + */ + +// Qt +import QtQuick 2.12 + +// Project + +// Qml imports +import "qrc:/globals" +import "qrc:/components" + +/*! + * \brief ConfirmTreatmentTableEntry - A cell of a confirm treatment + * parameters table with configurable key name, value name, and dimensions. + */ +Rectangle { + id: _root + property var key: "Key" + property var value: "Value" + height: Variables.createTreatmentSubTableHeight + width: Variables.createTreatmentSubTableWidth + color: "transparent" + + Line { + id: _line + width: _root.width + Variables.createTreatmentTableMargin + thickness: 3 + color: Colors.backgroundMenu + anchors.top: _root.bottom + anchors.left: _root.left + anchors.leftMargin: -Variables.createTreatmentTableMargin + } + + Text { + id: _key + objectName: key + index + color: Colors.textMain + text: key + anchors.left: parent.left + anchors.verticalCenter: _root.verticalCenter + font.pixelSize: Fonts.crTreatmentTableFontSize + } + + Text { + id: _value + objectName: value + index + color: Colors.textMain + text: value + anchors.left: _line.horizontalCenter + anchors.verticalCenter: _root.verticalCenter + anchors.leftMargin: 3*Variables.createTreatmentMargin + font.pixelSize: Fonts.crTreatmentTableFontSize + } +}