blob: e8034fd3d9556b3e36be63391479b4c1ca5f0ba2 [file] [log] [blame]
Sébastien Blin1f915762020-08-03 13:27:42 -04001
2/*
3 * Copyright (C) 2020 by Savoir-faire Linux
4 * Author: Mingrui Zhang <mingrui.zhang@savoirfairelinux.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19import QtQuick 2.14
20import QtQuick.Controls 2.14
21import QtQuick.Layouts 1.14
22import net.jami.Models 1.0
23
24Image {
25 id: userImage
26
ababidf651a22020-07-30 13:38:57 +020027 width: 40
28 height: 40
Sébastien Blin1f915762020-08-03 13:27:42 -040029
30 fillMode: Image.PreserveAspectFit
31 source: "data:image/png;base64," + Picture
32 mipmap: true
33
Ming Rui Zhange5a75ad2020-08-31 14:54:11 -040034 AccountPresenceCycle {
35 id: conversationAccountPresenseCycle
Sébastien Blin1f915762020-08-03 13:27:42 -040036
37 anchors.right: userImage.right
Sébastien Blin1f915762020-08-03 13:27:42 -040038 anchors.bottom: userImage.bottom
ababidf651a22020-07-30 13:38:57 +020039 anchors.bottomMargin: -2
Sébastien Blin1f915762020-08-03 13:27:42 -040040
Sébastien Blin1f915762020-08-03 13:27:42 -040041 visible: Presence
Sébastien Blin1f915762020-08-03 13:27:42 -040042 }
43
44 Rectangle {
45 id: unreadMessageCountRect
46
47 anchors.right: userImage.right
ababidf651a22020-07-30 13:38:57 +020048 anchors.rightMargin: -2
Sébastien Blin1f915762020-08-03 13:27:42 -040049 anchors.top: userImage.top
ababidf651a22020-07-30 13:38:57 +020050 anchors.topMargin: -2
Sébastien Blin1f915762020-08-03 13:27:42 -040051
52 width: 14
53 height: 14
54
55 visible: UnreadMessagesCount > 0
56
57 Text {
58 id: unreadMessageCounttext
59
60 anchors.centerIn: unreadMessageCountRect
61
62 text: UnreadMessagesCount > 9 ? "···" : UnreadMessagesCount
63 color: "white"
ababidf651a22020-07-30 13:38:57 +020064 font.pointSize: JamiTheme.textFontSize
Sébastien Blin1f915762020-08-03 13:27:42 -040065 }
66
67 radius: 30
68 color: JamiTheme.notificationRed
69 }
70}