2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
2021-03-07 07:57:56 +03:00
|
|
|
//
|
2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2021-03-15 00:22:52 +03:00
|
|
|
import Qt.labs.platform 1.1 as Platform
|
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.12
|
2021-01-12 17:03:39 +03:00
|
|
|
import QtQuick.Layouts 1.2
|
2020-10-26 16:57:54 +03:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: topBar
|
|
|
|
|
2021-06-08 23:18:51 +03:00
|
|
|
property bool showBackButton: false
|
|
|
|
|
2020-10-26 16:57:54 +03:00
|
|
|
Layout.fillWidth: true
|
2021-05-15 00:35:34 +03:00
|
|
|
implicitHeight: topLayout.height + Nheko.paddingMedium * 2
|
2020-10-26 16:57:54 +03:00
|
|
|
z: 3
|
2021-05-13 09:23:56 +03:00
|
|
|
color: Nheko.colors.window
|
2020-10-26 16:57:54 +03:00
|
|
|
|
2021-03-15 00:22:52 +03:00
|
|
|
TapHandler {
|
2021-04-11 23:24:39 +03:00
|
|
|
onSingleTapped: {
|
2021-05-28 23:14:59 +03:00
|
|
|
room.openRoomSettings();
|
2021-04-11 23:24:39 +03:00
|
|
|
eventPoint.accepted = true;
|
|
|
|
}
|
|
|
|
gesturePolicy: TapHandler.ReleaseWithinBounds
|
2020-10-26 16:57:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
GridLayout {
|
|
|
|
//Layout.margins: 8
|
|
|
|
|
|
|
|
id: topLayout
|
|
|
|
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
2021-05-15 00:35:34 +03:00
|
|
|
anchors.margins: Nheko.paddingMedium
|
2020-10-26 16:57:54 +03:00
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
|
|
|
|
ImageButton {
|
|
|
|
id: backToRoomsButton
|
|
|
|
|
|
|
|
Layout.column: 0
|
|
|
|
Layout.row: 0
|
|
|
|
Layout.rowSpan: 2
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
2021-05-13 12:32:20 +03:00
|
|
|
width: Nheko.avatarSize
|
|
|
|
height: Nheko.avatarSize
|
2021-06-08 23:18:51 +03:00
|
|
|
visible: showBackButton
|
2020-10-26 16:57:54 +03:00
|
|
|
image: ":/icons/icons/ui/angle-pointing-to-left.png"
|
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.text: qsTr("Back to room list")
|
2021-06-08 23:18:51 +03:00
|
|
|
onClicked: Rooms.resetCurrentRoom()
|
2020-10-26 16:57:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Avatar {
|
|
|
|
Layout.column: 1
|
|
|
|
Layout.row: 0
|
|
|
|
Layout.rowSpan: 2
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
2021-05-13 12:32:20 +03:00
|
|
|
width: Nheko.avatarSize
|
|
|
|
height: Nheko.avatarSize
|
2020-10-26 16:57:54 +03:00
|
|
|
url: room ? room.roomAvatarUrl.replace("mxc://", "image://MxcImage/") : ""
|
|
|
|
displayName: room ? room.roomName : qsTr("No room selected")
|
2021-05-28 23:14:59 +03:00
|
|
|
onClicked: room.openRoomSettings()
|
2020-10-26 16:57:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.column: 2
|
|
|
|
Layout.row: 0
|
2021-05-13 09:23:56 +03:00
|
|
|
color: Nheko.colors.text
|
2020-10-26 16:57:54 +03:00
|
|
|
font.pointSize: fontMetrics.font.pointSize * 1.1
|
|
|
|
text: room ? room.roomName : qsTr("No room selected")
|
2020-12-13 18:05:48 +03:00
|
|
|
maximumLineCount: 1
|
2021-04-27 12:08:21 +03:00
|
|
|
elide: Text.ElideRight
|
|
|
|
textFormat: Text.RichText
|
2020-10-26 16:57:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
MatrixText {
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.column: 2
|
|
|
|
Layout.row: 1
|
|
|
|
Layout.maximumHeight: fontMetrics.lineSpacing * 2 // show 2 lines
|
|
|
|
clip: true
|
|
|
|
text: room ? room.roomTopic : ""
|
|
|
|
}
|
|
|
|
|
|
|
|
ImageButton {
|
|
|
|
id: roomOptionsButton
|
|
|
|
|
|
|
|
Layout.column: 3
|
|
|
|
Layout.row: 0
|
|
|
|
Layout.rowSpan: 2
|
|
|
|
Layout.alignment: Qt.AlignVCenter
|
|
|
|
image: ":/icons/icons/ui/vertical-ellipsis.png"
|
|
|
|
ToolTip.visible: hovered
|
|
|
|
ToolTip.text: qsTr("Room options")
|
2021-03-15 00:22:52 +03:00
|
|
|
onClicked: roomOptionsMenu.open(roomOptionsButton)
|
2020-10-26 16:57:54 +03:00
|
|
|
|
2021-03-15 00:22:52 +03:00
|
|
|
Platform.Menu {
|
2020-10-26 16:57:54 +03:00
|
|
|
id: roomOptionsMenu
|
|
|
|
|
2021-03-15 00:22:52 +03:00
|
|
|
Platform.MenuItem {
|
2021-05-28 23:14:59 +03:00
|
|
|
visible: room ? room.permissions.canInvite() : false
|
2020-10-26 16:57:54 +03:00
|
|
|
text: qsTr("Invite users")
|
|
|
|
onTriggered: TimelineManager.openInviteUsersDialog()
|
|
|
|
}
|
|
|
|
|
2021-03-15 00:22:52 +03:00
|
|
|
Platform.MenuItem {
|
2020-10-26 16:57:54 +03:00
|
|
|
text: qsTr("Members")
|
2021-05-28 23:14:59 +03:00
|
|
|
onTriggered: TimelineManager.openMemberListDialog(room.roomId())
|
2020-10-26 16:57:54 +03:00
|
|
|
}
|
|
|
|
|
2021-03-15 00:22:52 +03:00
|
|
|
Platform.MenuItem {
|
2020-10-26 16:57:54 +03:00
|
|
|
text: qsTr("Leave room")
|
2021-05-28 23:14:59 +03:00
|
|
|
onTriggered: TimelineManager.openLeaveRoomDialog(room.roomId())
|
2020-10-26 16:57:54 +03:00
|
|
|
}
|
|
|
|
|
2021-03-15 00:22:52 +03:00
|
|
|
Platform.MenuItem {
|
2020-10-26 16:57:54 +03:00
|
|
|
text: qsTr("Settings")
|
2021-05-28 23:14:59 +03:00
|
|
|
onTriggered: room.openRoomSettings()
|
2020-10-26 16:57:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|