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.value hidden: combine dimension: 28 } HLabel { width: parent.width id: contentLabel text: "" + sender.displayName.value + " " + ChatJS.getEventText(type, dict) + "  " + "" + Qt.formatDateTime(dateTime, "hh:mm:ss") + " " + "" textFormat: Text.RichText background: Rectangle {color: HStyle.chat.event.background} wrapMode: Text.Wrap leftPadding: horizontalPadding rightPadding: horizontalPadding topPadding: verticalPadding bottomPadding: verticalPadding } }