2019-03-22 14:28:14 +11:00
|
|
|
import QtQuick 2.7
|
2019-04-29 05:45:42 +10:00
|
|
|
import QtQuick.Layouts 1.3
|
2019-04-29 05:18:36 +10:00
|
|
|
import "../Base"
|
2019-03-22 14:28:14 +11:00
|
|
|
|
2019-05-12 07:51:00 +10:00
|
|
|
HRectangle {
|
2019-07-03 03:59:52 +10:00
|
|
|
property var displayName: ""
|
2019-04-21 07:36:21 +10:00
|
|
|
property string topic: ""
|
|
|
|
|
2019-05-13 09:03:51 +10:00
|
|
|
property alias buttonsImplicitWidth: viewButtons.implicitWidth
|
2019-05-14 00:52:26 +10:00
|
|
|
property int buttonsWidth: viewButtons.Layout.preferredWidth
|
2019-05-14 02:01:57 +10:00
|
|
|
property var activeButton: "members"
|
2019-05-13 09:03:51 +10:00
|
|
|
|
2019-05-13 08:59:29 +10:00
|
|
|
property bool collapseButtons: width < 400
|
2019-05-13 03:17:42 +10:00
|
|
|
|
2019-04-29 04:20:30 +10:00
|
|
|
id: roomHeader
|
2019-04-29 05:18:36 +10:00
|
|
|
color: HStyle.chat.roomHeader.background
|
2019-03-22 14:28:14 +11:00
|
|
|
|
2019-04-29 05:18:36 +10:00
|
|
|
HRowLayout {
|
2019-04-21 07:45:51 +10:00
|
|
|
id: row
|
2019-05-13 08:59:29 +10:00
|
|
|
spacing: 8
|
2019-03-26 09:29:46 +11:00
|
|
|
anchors.fill: parent
|
2019-03-22 14:28:14 +11:00
|
|
|
|
2019-04-29 05:18:36 +10:00
|
|
|
HAvatar {
|
2019-04-21 07:45:51 +10:00
|
|
|
id: avatar
|
2019-07-03 03:59:52 +10:00
|
|
|
name: stripRoomName(displayName) || qsTr("Empty room")
|
2019-04-29 04:20:30 +10:00
|
|
|
dimension: roomHeader.height
|
|
|
|
Layout.alignment: Qt.AlignTop
|
2019-03-26 09:29:46 +11:00
|
|
|
}
|
|
|
|
|
2019-04-29 05:18:36 +10:00
|
|
|
HLabel {
|
2019-04-21 07:45:51 +10:00
|
|
|
id: roomName
|
2019-04-21 07:36:21 +10:00
|
|
|
text: displayName
|
2019-04-29 05:18:36 +10:00
|
|
|
font.pixelSize: HStyle.fontSize.big
|
2019-03-26 09:29:46 +11:00
|
|
|
elide: Text.ElideRight
|
|
|
|
maximumLineCount: 1
|
2019-05-13 03:17:42 +10:00
|
|
|
|
2019-05-13 08:59:29 +10:00
|
|
|
Layout.maximumWidth: Math.max(
|
|
|
|
0,
|
2019-05-17 05:50:14 +10:00
|
|
|
row.width - row.totalSpacing - avatar.width -
|
2019-05-13 03:17:42 +10:00
|
|
|
viewButtons.width -
|
|
|
|
(expandButton.visible ? expandButton.width : 0)
|
2019-05-13 08:59:29 +10:00
|
|
|
)
|
2019-03-26 09:29:46 +11:00
|
|
|
}
|
2019-03-22 14:28:14 +11:00
|
|
|
|
2019-04-29 05:18:36 +10:00
|
|
|
HLabel {
|
2019-04-21 07:45:51 +10:00
|
|
|
id: roomTopic
|
2019-04-21 07:36:21 +10:00
|
|
|
text: topic
|
2019-04-29 05:18:36 +10:00
|
|
|
font.pixelSize: HStyle.fontSize.small
|
2019-03-26 09:29:46 +11:00
|
|
|
elide: Text.ElideRight
|
|
|
|
maximumLineCount: 1
|
2019-05-13 03:17:42 +10:00
|
|
|
|
2019-05-13 08:59:29 +10:00
|
|
|
Layout.maximumWidth: Math.max(
|
|
|
|
0,
|
|
|
|
row.width - row.totalSpacing - avatar.width -
|
2019-05-13 03:17:42 +10:00
|
|
|
roomName.width - viewButtons.width -
|
|
|
|
(expandButton.visible ? expandButton.width : 0)
|
2019-05-13 08:59:29 +10:00
|
|
|
)
|
2019-03-22 14:28:14 +11:00
|
|
|
}
|
2019-03-26 09:29:46 +11:00
|
|
|
|
2019-04-29 05:22:53 +10:00
|
|
|
HSpacer {}
|
2019-05-13 03:17:42 +10:00
|
|
|
|
|
|
|
Row {
|
|
|
|
id: viewButtons
|
2019-05-13 08:59:29 +10:00
|
|
|
Layout.preferredWidth: collapseButtons ? 0 : implicitWidth
|
2019-05-13 11:29:52 +10:00
|
|
|
Layout.fillHeight: true
|
|
|
|
|
|
|
|
Repeater {
|
|
|
|
model: [
|
|
|
|
"members", "files", "notifications", "history", "settings"
|
|
|
|
]
|
|
|
|
HButton {
|
|
|
|
iconName: "room_view_" + modelData
|
|
|
|
iconDimension: 22
|
2019-05-14 00:52:26 +10:00
|
|
|
autoExclusive: true
|
2019-05-14 02:01:57 +10:00
|
|
|
checked: activeButton == modelData
|
|
|
|
onClicked: activeButton = activeButton == modelData ?
|
|
|
|
null : modelData
|
2019-05-13 11:29:52 +10:00
|
|
|
}
|
2019-05-13 03:17:42 +10:00
|
|
|
}
|
|
|
|
|
2019-05-13 08:59:29 +10:00
|
|
|
Behavior on Layout.preferredWidth {
|
2019-05-15 05:15:10 +10:00
|
|
|
NumberAnimation {
|
|
|
|
id: buttonsAnimation
|
|
|
|
duration: HStyle.animationDuration
|
|
|
|
}
|
2019-05-13 03:17:42 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
HButton {
|
|
|
|
id: expandButton
|
|
|
|
z: 1
|
|
|
|
anchors.right: parent.right
|
|
|
|
opacity: collapseButtons ? 1 : 0
|
|
|
|
visible: opacity > 0
|
|
|
|
iconName: "reduced_room_buttons"
|
|
|
|
|
|
|
|
Behavior on opacity {
|
|
|
|
NumberAnimation { duration: buttonsAnimation.duration * 2 }
|
|
|
|
}
|
2019-03-22 14:28:14 +11:00
|
|
|
}
|
|
|
|
}
|