Index: sources/gui/qml/components/NotificationBar.qml =================================================================== diff -u -refb549a694539630ba7c1d8e348f598052b85f0f -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/gui/qml/components/NotificationBar.qml (.../NotificationBar.qml) (revision efb549a694539630ba7c1d8e348f598052b85f0f) +++ sources/gui/qml/components/NotificationBar.qml (.../NotificationBar.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 NotificationBar.qml * \author (last) Behrouz NematiPour - * \date (last) 11-May-2021 + * \date (last) 29-Jul-2023 * \author (original) Behrouz NematiPour * \date (original) 30-Mar-2020 * @@ -23,6 +23,7 @@ Rectangle { id: _root objectName: "NotificationBar" // SquishQt + property int alarmID : -1 property alias text : _text.text property alias textPixelSize : _text.font.pixelSize property alias textColor : _text.color @@ -130,4 +131,14 @@ onClicked: _root.listClicked() } + Text { id: _alarmID + text : qsTr("ID") + ":" + _root.alarmID + anchors { + right : parent.right + top : parent.top + rightMargin : 130 + } + color : Colors.textMain + font.pixelSize : Fonts.fontPixelDialogText + } }