matrixion/resources/qml/TypingIndicator.qml

36 lines
879 B
QML
Raw Permalink Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
//
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.9
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.2
import im.nheko 1.0
Item {
Layout.fillWidth: true
2023-06-02 02:45:24 +03:00
implicitHeight: Math.max(fontMetrics.height * 1.2, typingDisplay.height)
Rectangle {
id: typingRect
anchors.fill: parent
2023-06-02 02:45:24 +03:00
color: palette.base
visible: (room && room.typingUsers.length > 0)
z: 3
Label {
id: typingDisplay
2023-06-02 02:45:24 +03:00
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.leftMargin: 10
anchors.right: parent.right
anchors.rightMargin: 10
color: palette.text
text: room ? room.formatTypingUsers(room.typingUsers, palette.base) : ""
textFormat: Text.RichText
}
}
}