70 lines
1.6 KiB
QML
70 lines
1.6 KiB
QML
import QtQuick 2.9
|
|
import QtQuick.Controls 2.2
|
|
import QtQuick.Layouts 1.3
|
|
import QtQuick.Controls.Material 2.2
|
|
|
|
import Spectral 0.1
|
|
|
|
Rectangle {
|
|
property alias image: headerImage.image
|
|
property alias topic: headerTopicLabel.text
|
|
signal clicked()
|
|
|
|
id: header
|
|
|
|
color: Material.accent
|
|
|
|
ItemDelegate {
|
|
anchors.fill: parent
|
|
|
|
id: roomHeader
|
|
|
|
onClicked: header.clicked()
|
|
|
|
RowLayout {
|
|
anchors.fill: parent
|
|
anchors.margins: 12
|
|
|
|
spacing: 12
|
|
|
|
ImageItem {
|
|
Layout.preferredWidth: height
|
|
Layout.fillHeight: true
|
|
|
|
id: headerImage
|
|
|
|
hint: currentRoom ? currentRoom.displayName : "No name"
|
|
}
|
|
|
|
ColumnLayout {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
visible: parent.width > 64
|
|
|
|
Label {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
text: currentRoom ? currentRoom.displayName : ""
|
|
color: "white"
|
|
font.pointSize: 12
|
|
elide: Text.ElideRight
|
|
wrapMode: Text.NoWrap
|
|
}
|
|
|
|
Label {
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
|
|
id: headerTopicLabel
|
|
|
|
color: "white"
|
|
elide: Text.ElideRight
|
|
wrapMode: Text.NoWrap
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|