2019-03-21 23:28:14 -04:00
|
|
|
import QtQuick 2.7
|
2019-04-28 15:45:42 -04:00
|
|
|
import QtQuick.Layouts 1.3
|
2019-04-28 15:18:36 -04:00
|
|
|
import "../Base"
|
2019-03-21 23:28:14 -04:00
|
|
|
|
2019-04-28 15:18:36 -04:00
|
|
|
HGlassRectangle {
|
2019-04-20 17:36:21 -04:00
|
|
|
property string displayName: ""
|
|
|
|
property string topic: ""
|
|
|
|
|
2019-04-28 14:20:30 -04:00
|
|
|
id: roomHeader
|
2019-04-28 15:18:36 -04:00
|
|
|
color: HStyle.chat.roomHeader.background
|
2019-03-21 23:28:14 -04:00
|
|
|
|
2019-04-28 14:20:30 -04:00
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.preferredHeight: 32
|
|
|
|
|
2019-04-28 15:18:36 -04:00
|
|
|
HRowLayout {
|
2019-04-20 17:45:51 -04:00
|
|
|
id: row
|
2019-04-28 14:20:30 -04:00
|
|
|
spacing: 8
|
2019-03-25 18:29:46 -04:00
|
|
|
anchors.fill: parent
|
2019-03-21 23:28:14 -04:00
|
|
|
|
2019-04-28 15:18:36 -04:00
|
|
|
HAvatar {
|
2019-04-20 17:45:51 -04:00
|
|
|
id: avatar
|
2019-04-20 17:36:21 -04:00
|
|
|
name: displayName
|
2019-04-28 14:20:30 -04:00
|
|
|
dimension: roomHeader.height
|
|
|
|
Layout.alignment: Qt.AlignTop
|
2019-03-25 18:29:46 -04:00
|
|
|
}
|
|
|
|
|
2019-04-28 15:18:36 -04:00
|
|
|
HLabel {
|
2019-04-20 17:45:51 -04:00
|
|
|
id: roomName
|
2019-04-20 17:36:21 -04:00
|
|
|
text: displayName
|
2019-04-28 15:18:36 -04:00
|
|
|
font.pixelSize: HStyle.fontSize.big
|
2019-03-25 18:29:46 -04:00
|
|
|
elide: Text.ElideRight
|
|
|
|
maximumLineCount: 1
|
2019-04-28 14:20:30 -04:00
|
|
|
Layout.maximumWidth: row.width - row.totalSpacing - avatar.width
|
2019-03-25 18:29:46 -04:00
|
|
|
}
|
2019-03-21 23:28:14 -04:00
|
|
|
|
2019-04-28 15:18:36 -04:00
|
|
|
HLabel {
|
2019-04-20 17:45:51 -04:00
|
|
|
id: roomTopic
|
2019-04-20 17:36:21 -04:00
|
|
|
text: topic
|
2019-04-28 15:18:36 -04:00
|
|
|
font.pixelSize: HStyle.fontSize.small
|
2019-03-25 18:29:46 -04:00
|
|
|
elide: Text.ElideRight
|
|
|
|
maximumLineCount: 1
|
2019-03-26 05:52:43 -04:00
|
|
|
Layout.maximumWidth:
|
2019-04-28 14:20:30 -04:00
|
|
|
row.width - row.totalSpacing - avatar.width - roomName.width
|
2019-03-21 23:28:14 -04:00
|
|
|
}
|
2019-03-25 18:29:46 -04:00
|
|
|
|
2019-04-28 15:22:53 -04:00
|
|
|
HSpacer {}
|
2019-03-21 23:28:14 -04:00
|
|
|
}
|
|
|
|
}
|