Rename RoomEventList components
This commit is contained in:
parent
9d5701da19
commit
f0c5afe8c7
|
@ -2,7 +2,7 @@ import QtQuick 2.7
|
||||||
import QtQuick.Layouts 1.3
|
import QtQuick.Layouts 1.3
|
||||||
import "../Base"
|
import "../Base"
|
||||||
import "Banners"
|
import "Banners"
|
||||||
import "RoomEventList"
|
import "Timeline"
|
||||||
import "RoomSidePane"
|
import "RoomSidePane"
|
||||||
|
|
||||||
HColumnLayout {
|
HColumnLayout {
|
||||||
|
@ -50,7 +50,7 @@ HColumnLayout {
|
||||||
HColumnLayout {
|
HColumnLayout {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
|
|
||||||
RoomEventList {
|
EventList {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.fillHeight: true
|
Layout.fillHeight: true
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,53 +0,0 @@
|
||||||
import QtQuick 2.7
|
|
||||||
import QtQuick.Layouts 1.3
|
|
||||||
import "../../Base"
|
|
||||||
import "../utils.js" as ChatJS
|
|
||||||
|
|
||||||
Row {
|
|
||||||
id: eventContent
|
|
||||||
spacing: standardSpacing / 2
|
|
||||||
layoutDirection: isOwn ? Qt.RightToLeft : Qt.LeftToRight
|
|
||||||
|
|
||||||
width: Math.min(
|
|
||||||
roomEventListView.width - avatar.width - eventContent.spacing,
|
|
||||||
HStyle.fontSize.normal * 0.5 * 75, // 600 with 16px font
|
|
||||||
contentLabel.implicitWidth
|
|
||||||
)
|
|
||||||
|
|
||||||
HAvatar {
|
|
||||||
id: avatar
|
|
||||||
name: sender.displayName || stripUserId(sender.userId)
|
|
||||||
hidden: combine
|
|
||||||
dimension: 28
|
|
||||||
}
|
|
||||||
|
|
||||||
HLabel {
|
|
||||||
width: parent.width
|
|
||||||
|
|
||||||
id: contentLabel
|
|
||||||
text: "<font color='" +
|
|
||||||
Qt.hsla(Backend.hueFromString(sender.displayName.value),
|
|
||||||
HStyle.chat.event.saturation,
|
|
||||||
HStyle.chat.event.lightness,
|
|
||||||
1) +
|
|
||||||
"'>" +
|
|
||||||
sender.displayName.value + " " +
|
|
||||||
ChatJS.getEventText(type, dict) +
|
|
||||||
|
|
||||||
" " +
|
|
||||||
"<font size=" + HStyle.fontSize.small + "px " +
|
|
||||||
"color=" + HStyle.chat.event.date + ">" +
|
|
||||||
Qt.formatDateTime(dateTime, "hh:mm:ss") +
|
|
||||||
"</font> " +
|
|
||||||
"</font>"
|
|
||||||
|
|
||||||
textFormat: Text.RichText
|
|
||||||
background: Rectangle {color: HStyle.chat.event.background}
|
|
||||||
wrapMode: Text.Wrap
|
|
||||||
|
|
||||||
leftPadding: horizontalPadding
|
|
||||||
rightPadding: horizontalPadding
|
|
||||||
topPadding: verticalPadding
|
|
||||||
bottomPadding: verticalPadding
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -73,7 +73,7 @@ Column {
|
||||||
height: topPadding
|
height: topPadding
|
||||||
}
|
}
|
||||||
|
|
||||||
MessageContent {
|
EventContent {
|
||||||
anchors.right: isOwn ? parent.right : undefined
|
anchors.right: isOwn ? parent.right : undefined
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -20,7 +20,7 @@ HRectangle {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
delegate: RoomEventDelegate {}
|
delegate: EventDelegate {}
|
||||||
|
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.leftMargin: space
|
anchors.leftMargin: space
|
Loading…
Reference in New Issue
Block a user