Index: sources/gui/qml/components/DebugDataColumn.qml =================================================================== diff -u -r1b179fe77fc16bc3f4eca4824b8adb32cb558f52 -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision 1b179fe77fc16bc3f4eca4824b8adb32cb558f52) +++ sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) @@ -1,13 +1,13 @@ /*! * - * Copyright (c) 2020-2022 Diality Inc. - All Rights Reserved. + * Copyright (c) 2020-2024 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file DebugDataColumn.qml * \author (last) Behrouz NematiPour - * \date (last) 16-Aug-2021 + * \date (last) 28-May-2023 * \author (original) Behrouz NematiPour * \date (original) 23-Aug-2020 * @@ -27,12 +27,14 @@ property var model: [] property var label: [] property string title: "Title" - property int fontPixelSizeTitle: 30 - property int fontPixelSizeText : 38 + property int fontPixelSizeTitle: Fonts.fontPixelDebugTitle + property int fontPixelSizeText : Fonts.fontPixelDebugText + property int fontPixelSizeLabel: Fonts.fontPixelDebugLabel + property string textObjectName: "_DebugDataColumn" - property var horizontalAlignmentTitle: Text.AlignRight - property var horizontalAlignmentText : Text.AlignRight + property int horizontalAlignmentTitle: Text.AlignRight + property int horizontalAlignmentText : Text.AlignRight width : 150 spacing : -15 @@ -45,6 +47,7 @@ font.pixelSize: fontPixelSizeTitle font.underline: true bottomPadding: 5 + font.family: Fonts.fontFamilyFixed } Repeater { id: _repeater model: _root.model @@ -55,14 +58,17 @@ horizontalAlignment: _root.horizontalAlignmentText color: Colors.textMain font.pixelSize: fontPixelSizeText + font.family: Fonts.fontFamilyFixed + Text { objectName : _root.textObjectName + "L" + index text : (index < _root.label.length) ? _root.label[index] : "" color : Colors.textMain - font.pixelSize : 15 + font.pixelSize : fontPixelSizeLabel anchors.baseline: parent.baseline anchors.left : parent.right horizontalAlignment: Text.AlignLeft + font.family: Fonts.fontFamilyFixed } } }