2019-03-22 14:28:14 +11:00
|
|
|
import QtQuick 2.7
|
|
|
|
import QtQuick.Controls 2.2
|
|
|
|
import QtQuick.Layouts 1.4
|
2019-03-26 20:52:43 +11:00
|
|
|
import "../base" as Base
|
2019-03-22 14:28:14 +11:00
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: root
|
|
|
|
Layout.fillWidth: true
|
2019-03-26 18:19:55 +11:00
|
|
|
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
|
|
|
|
2019-03-26 20:52:43 +11:00
|
|
|
Base.Avatar {
|
2019-03-26 09:29:46 +11:00
|
|
|
id: "avatar"
|
|
|
|
Layout.alignment: Qt.AlignTop
|
|
|
|
dimmension: root.Layout.minimumHeight
|
2019-03-28 10:21:14 +11:00
|
|
|
name: chatPage.room.display_name
|
2019-03-26 09:29:46 +11:00
|
|
|
}
|
|
|
|
|
2019-03-26 20:52:43 +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
|
|
|
|
2019-03-26 20:52:43 +11:00
|
|
|
Base.HLabel {
|
2019-03-28 09:38:48 +11:00
|
|
|
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
|
2019-03-26 20:52:43 +11:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|