summary refs log tree commit diff
path: root/resources/qml/dialogs
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2021-09-24 21:32:06 -0400
committerLoren Burkholder <computersemiexpert@outlook.com>2021-10-09 17:14:33 -0400
commite9ed12e27bcbc4f4a256e8e3840c1022fd14872e (patch)
tree8dc718d860600c88e9f9d36650d438f849f2fd47 /resources/qml/dialogs
parentMerge pull request #743 from LorenDB/qmlLogout (diff)
downloadnheko-e9ed12e27bcbc4f4a256e8e3840c1022fd14872e.tar.xz
QML the join room dialog
Diffstat (limited to 'resources/qml/dialogs')
-rw-r--r--resources/qml/dialogs/JoinRoomDialog.qml64
1 files changed, 64 insertions, 0 deletions
diff --git a/resources/qml/dialogs/JoinRoomDialog.qml b/resources/qml/dialogs/JoinRoomDialog.qml
new file mode 100644

index 00000000..25400e40 --- /dev/null +++ b/resources/qml/dialogs/JoinRoomDialog.qml
@@ -0,0 +1,64 @@ +// SPDX-FileCopyrightText: 2021 Nheko Contributors +// +// SPDX-License-Identifier: GPL-3.0-or-later + +import ".." +import QtQuick 2.12 +import QtQuick.Controls 2.5 +import QtQuick.Layouts 1.3 +import im.nheko 1.0 + +ApplicationWindow { + id: joinRoomRoot + + title: qsTr("Join room") + modality: Qt.WindowModal + flags: Qt.Dialog | Qt.WindowCloseButtonHint | Qt.WindowTitleHint + palette: Nheko.colors + color: Nheko.colors.window + Component.onCompleted: Nheko.reparent(joinRoomRoot) + width: 350 + height: fontMetrics.lineSpacing * 7 + + ColumnLayout { + spacing: Nheko.paddingMedium + anchors.margins: Nheko.paddingMedium + anchors.fill: parent + + Label { + id: promptLabel + + text: qsTr("Room ID or alias") + color: Nheko.colors.text + } + + MatrixTextField { + id: input + + Layout.fillWidth: true + } + + } + + footer: DialogButtonBox { + onAccepted: { + Nheko.joinRoom(input.text); + joinRoomRoot.close(); + } + onRejected: { + joinRoomRoot.close(); + } + + Button { + text: "Join" + enabled: input.text.match("#.+?:.{3,}") + DialogButtonBox.buttonRole: DialogButtonBox.AcceptRole + } + + Button { + text: "Cancel" + DialogButtonBox.buttonRole: DialogButtonBox.RejectRole + } + } + +}