mirror of https://github.com/Nheko-Reborn/nheko
commit
088765b427
@ -0,0 +1,76 @@ |
|||||||
|
// 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 |
||||||
|
|
||||||
|
Shortcut { |
||||||
|
sequence: StandardKey.Cancel |
||||||
|
onActivated: dbb.rejected() |
||||||
|
} |
||||||
|
|
||||||
|
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 |
||||||
|
|
||||||
|
focus: true |
||||||
|
Layout.fillWidth: true |
||||||
|
onAccepted: { |
||||||
|
if (input.text.match("#.+?:.{3,}")) |
||||||
|
dbb.accepted(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
footer: DialogButtonBox { |
||||||
|
id: dbb |
||||||
|
|
||||||
|
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 |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -1,73 +0,0 @@ |
|||||||
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
||||||
//
|
|
||||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
||||||
|
|
||||||
#include <QLabel> |
|
||||||
#include <QPushButton> |
|
||||||
#include <QVBoxLayout> |
|
||||||
|
|
||||||
#include "dialogs/JoinRoom.h" |
|
||||||
|
|
||||||
#include "Config.h" |
|
||||||
#include "ui/TextField.h" |
|
||||||
|
|
||||||
using namespace dialogs; |
|
||||||
|
|
||||||
JoinRoom::JoinRoom(QWidget *parent) |
|
||||||
: QFrame(parent) |
|
||||||
{ |
|
||||||
setAutoFillBackground(true); |
|
||||||
setWindowFlags(Qt::Tool | Qt::WindowStaysOnTopHint); |
|
||||||
setWindowModality(Qt::WindowModal); |
|
||||||
setAttribute(Qt::WA_DeleteOnClose, true); |
|
||||||
|
|
||||||
setMinimumWidth(conf::modals::MIN_WIDGET_WIDTH); |
|
||||||
setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Maximum); |
|
||||||
|
|
||||||
auto layout = new QVBoxLayout(this); |
|
||||||
layout->setSpacing(conf::modals::WIDGET_SPACING); |
|
||||||
layout->setMargin(conf::modals::WIDGET_MARGIN); |
|
||||||
|
|
||||||
auto buttonLayout = new QHBoxLayout(); |
|
||||||
buttonLayout->setSpacing(15); |
|
||||||
|
|
||||||
confirmBtn_ = new QPushButton(tr("Join"), this); |
|
||||||
confirmBtn_->setDefault(true); |
|
||||||
cancelBtn_ = new QPushButton(tr("Cancel"), this); |
|
||||||
|
|
||||||
buttonLayout->addStretch(1); |
|
||||||
buttonLayout->addWidget(cancelBtn_); |
|
||||||
buttonLayout->addWidget(confirmBtn_); |
|
||||||
|
|
||||||
roomInput_ = new TextField(this); |
|
||||||
roomInput_->setLabel(tr("Room ID or alias")); |
|
||||||
|
|
||||||
layout->addWidget(roomInput_); |
|
||||||
layout->addLayout(buttonLayout); |
|
||||||
layout->addStretch(1); |
|
||||||
|
|
||||||
connect(roomInput_, &QLineEdit::returnPressed, this, &JoinRoom::handleInput); |
|
||||||
connect(confirmBtn_, &QPushButton::clicked, this, &JoinRoom::handleInput); |
|
||||||
connect(cancelBtn_, &QPushButton::clicked, this, &JoinRoom::close); |
|
||||||
} |
|
||||||
|
|
||||||
void |
|
||||||
JoinRoom::handleInput() |
|
||||||
{ |
|
||||||
if (roomInput_->text().isEmpty()) |
|
||||||
return; |
|
||||||
|
|
||||||
// TODO: input validation with error messages.
|
|
||||||
emit joinRoom(roomInput_->text()); |
|
||||||
roomInput_->clear(); |
|
||||||
|
|
||||||
emit close(); |
|
||||||
} |
|
||||||
|
|
||||||
void |
|
||||||
JoinRoom::showEvent(QShowEvent *event) |
|
||||||
{ |
|
||||||
roomInput_->setFocus(); |
|
||||||
|
|
||||||
QFrame::showEvent(event); |
|
||||||
} |
|
@ -1,36 +0,0 @@ |
|||||||
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
||||||
//
|
|
||||||
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
||||||
|
|
||||||
#pragma once |
|
||||||
|
|
||||||
#include <QFrame> |
|
||||||
|
|
||||||
class QPushButton; |
|
||||||
class TextField; |
|
||||||
|
|
||||||
namespace dialogs { |
|
||||||
|
|
||||||
class JoinRoom : public QFrame |
|
||||||
{ |
|
||||||
Q_OBJECT |
|
||||||
public: |
|
||||||
JoinRoom(QWidget *parent = nullptr); |
|
||||||
|
|
||||||
signals: |
|
||||||
void joinRoom(const QString &room); |
|
||||||
|
|
||||||
protected: |
|
||||||
void showEvent(QShowEvent *event) override; |
|
||||||
|
|
||||||
private slots: |
|
||||||
void handleInput(); |
|
||||||
|
|
||||||
private: |
|
||||||
QPushButton *confirmBtn_; |
|
||||||
QPushButton *cancelBtn_; |
|
||||||
|
|
||||||
TextField *roomInput_; |
|
||||||
}; |
|
||||||
|
|
||||||
} // dialogs
|
|
Loading…
Reference in new issue