2021-10-01 14:23:14 -04:00
|
|
|
/*
|
2022-01-06 11:24:13 -05:00
|
|
|
* Copyright (C) 2021-2022 Savoir-faire Linux Inc.
|
2021-10-01 14:23:14 -04:00
|
|
|
* Author: Trevor Tabah <trevor.tabah@savoirfairelinux.com>
|
|
|
|
* Author: Andreas Traczyk <andreas.traczyk@savoirfairelinux.com>
|
|
|
|
* Author: Mingrui Zhang <mingrui.zhang@savoirfairelinux.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-09-08 10:31:38 -04:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Layouts
|
2021-10-01 14:23:14 -04:00
|
|
|
|
|
|
|
import net.jami.Adapters 1.1
|
|
|
|
import net.jami.Constants 1.1
|
|
|
|
|
|
|
|
Column {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
property bool showTime: false
|
|
|
|
property int seq: MsgSeq.single
|
|
|
|
|
|
|
|
width: ListView.view ? ListView.view.width : 0
|
|
|
|
|
|
|
|
spacing: 2
|
|
|
|
topPadding: 12
|
|
|
|
bottomPadding: 12
|
|
|
|
|
|
|
|
Label {
|
|
|
|
width: parent.width
|
|
|
|
text: Body
|
|
|
|
horizontalAlignment: Qt.AlignHCenter
|
|
|
|
font.pointSize: 12
|
|
|
|
color: JamiTheme.chatviewTextColor
|
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: infoCell
|
|
|
|
|
|
|
|
width: parent.width
|
|
|
|
height: childrenRect.height
|
|
|
|
|
|
|
|
Label {
|
|
|
|
text: MessagesAdapter.getFormattedTime(Timestamp)
|
|
|
|
color: JamiTheme.timestampColor
|
|
|
|
visible: showTime || seq === MsgSeq.last
|
|
|
|
height: visible * implicitHeight
|
|
|
|
font.pointSize: 9
|
|
|
|
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
opacity: 0
|
|
|
|
Behavior on opacity { NumberAnimation { duration: 100 } }
|
|
|
|
Component.onCompleted: opacity = 1
|
|
|
|
}
|