moment/harmonyqml/components/chat/RoomHeader.qml

50 lines
1.3 KiB
QML
Raw Normal View History

2019-03-22 14:28:14 +11:00
import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.4
import "../base" as Base
2019-03-22 14:28:14 +11:00
Rectangle {
id: root
Layout.fillWidth: true
Layout.minimumHeight: 36
2019-03-22 14:28:14 +11:00
Layout.maximumHeight: Layout.minimumHeight
color: "#BBB"
2019-03-26 09:29:46 +11:00
RowLayout {
2019-03-22 14:28:14 +11:00
id: "row"
2019-03-26 09:29:46 +11:00
spacing: 12
anchors.fill: parent
2019-03-22 14:28:14 +11:00
Base.Avatar {
2019-03-26 09:29:46 +11:00
id: "avatar"
Layout.alignment: Qt.AlignTop
dimmension: root.Layout.minimumHeight
name: chatPage.room.display_name
2019-03-26 09:29:46 +11:00
}
Base.HLabel {
2019-03-26 09:29:46 +11:00
id: "roomName"
text: chatPage.room.display_name
font.pixelSize: bigSize
elide: Text.ElideRight
maximumLineCount: 1
Layout.maximumWidth: row.width - row.spacing * (row.children.length - 1) - avatar.width
}
2019-03-22 14:28:14 +11:00
Base.HLabel {
id: "roomDescription"
2019-04-15 02:56:30 +10:00
text: chatPage.room.description || ""
2019-03-26 09:29:46 +11:00
font.pixelSize: smallSize
elide: Text.ElideRight
maximumLineCount: 1
Layout.maximumWidth:
row.width -
row.spacing * (row.children.length - 1) -
avatar.width -
roomName.width
2019-03-22 14:28:14 +11:00
}
2019-03-26 09:29:46 +11:00
Item { Layout.fillWidth: true }
2019-03-22 14:28:14 +11:00
}
}