2019-07-08 13:52:41 +10:00
|
|
|
// Copyright 2019 miruka
|
|
|
|
// This file is part of harmonyqml, licensed under LGPLv3.
|
|
|
|
|
2019-04-15 06:12:07 +10:00
|
|
|
import QtQuick 2.7
|
2019-04-29 05:45:42 +10:00
|
|
|
import QtQuick.Layouts 1.3
|
2019-04-29 05:18:36 +10:00
|
|
|
import "../Base"
|
2019-04-15 06:12:07 +10:00
|
|
|
|
2019-05-12 07:51:00 +10:00
|
|
|
HRectangle {
|
2019-07-07 07:29:32 +10:00
|
|
|
property alias label: typingLabel
|
|
|
|
|
2019-07-07 07:50:55 +10:00
|
|
|
color: theme.chat.typingMembers.background
|
2019-07-07 07:29:32 +10:00
|
|
|
implicitWidth: childrenRect.width
|
|
|
|
implicitHeight: typingLabel.text ? childrenRect.height : 0
|
2019-07-07 07:35:51 +10:00
|
|
|
|
2019-07-07 07:42:04 +10:00
|
|
|
Behavior on implicitHeight { HNumberAnimation {} }
|
2019-04-29 04:20:30 +10:00
|
|
|
|
2019-07-07 07:29:32 +10:00
|
|
|
Row {
|
|
|
|
spacing: 8
|
|
|
|
leftPadding: spacing
|
|
|
|
rightPadding: spacing
|
|
|
|
topPadding: 2
|
|
|
|
bottomPadding: 2
|
2019-04-21 07:36:21 +10:00
|
|
|
|
2019-07-07 07:29:32 +10:00
|
|
|
HIcon {
|
|
|
|
svgName: "typing" // TODO: animate
|
|
|
|
height: typingLabel.height
|
|
|
|
}
|
2019-04-15 06:12:07 +10:00
|
|
|
|
2019-07-07 07:29:32 +10:00
|
|
|
HLabel {
|
|
|
|
id: typingLabel
|
|
|
|
text: chatPage.roomInfo.typingText
|
|
|
|
textFormat: Text.StyledText
|
|
|
|
elide: Text.ElideMiddle
|
|
|
|
maximumLineCount: 1
|
|
|
|
}
|
2019-04-15 06:12:07 +10:00
|
|
|
}
|
|
|
|
}
|