mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.3 KiB
67 lines
1.3 KiB
// SPDX-FileCopyrightText: 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: inputDialog
|
|
|
|
property alias prompt: promptLabel.text
|
|
property alias echoMode: statusInput.echoMode
|
|
signal accepted(text: string)
|
|
|
|
modality: Qt.NonModal
|
|
flags: Qt.Dialog
|
|
width: 350
|
|
height: fontMetrics.lineSpacing * 7
|
|
|
|
function forceActiveFocus() {
|
|
statusInput.forceActiveFocus();
|
|
}
|
|
|
|
Shortcut {
|
|
sequences: [StandardKey.Cancel]
|
|
onActivated: dbb.rejected()
|
|
}
|
|
|
|
ColumnLayout {
|
|
spacing: Nheko.paddingMedium
|
|
anchors.margins: Nheko.paddingMedium
|
|
anchors.fill: parent
|
|
|
|
Label {
|
|
id: promptLabel
|
|
|
|
color: palette.text
|
|
}
|
|
|
|
MatrixTextField {
|
|
id: statusInput
|
|
|
|
Layout.fillWidth: true
|
|
onAccepted: dbb.accepted()
|
|
focus: true
|
|
}
|
|
|
|
}
|
|
|
|
footer: DialogButtonBox {
|
|
id: dbb
|
|
|
|
standardButtons: DialogButtonBox.Ok | DialogButtonBox.Cancel
|
|
onAccepted: {
|
|
inputDialog.accepted(statusInput.text);
|
|
|
|
inputDialog.close();
|
|
}
|
|
onRejected: {
|
|
inputDialog.close();
|
|
}
|
|
}
|
|
|
|
}
|
|
|