2023-02-21 23:48:49 +01:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
2021-05-28 17:25:46 +02:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
import ".."
|
2021-06-13 01:48:11 +02:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.5
|
2021-05-28 17:25:46 +02:00
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import im.nheko 1.0
|
|
|
|
|
|
|
|
ApplicationWindow {
|
|
|
|
id: inputDialog
|
|
|
|
|
|
|
|
property alias prompt: promptLabel.text
|
2021-09-18 00:21:14 +02:00
|
|
|
property alias echoMode: statusInput.echoMode
|
2023-10-26 21:43:05 +02:00
|
|
|
signal accepted(text: string)
|
2021-05-28 17:25:46 +02:00
|
|
|
|
|
|
|
modality: Qt.NonModal
|
|
|
|
flags: Qt.Dialog
|
|
|
|
width: 350
|
|
|
|
height: fontMetrics.lineSpacing * 7
|
|
|
|
|
2022-03-06 14:48:31 +01:00
|
|
|
function forceActiveFocus() {
|
|
|
|
statusInput.forceActiveFocus();
|
|
|
|
}
|
|
|
|
|
2021-11-17 03:06:51 +01:00
|
|
|
Shortcut {
|
|
|
|
sequence: StandardKey.Cancel
|
|
|
|
onActivated: dbb.rejected()
|
|
|
|
}
|
|
|
|
|
2021-05-28 17:25:46 +02:00
|
|
|
ColumnLayout {
|
2021-09-25 03:33:50 +02:00
|
|
|
spacing: Nheko.paddingMedium
|
|
|
|
anchors.margins: Nheko.paddingMedium
|
2021-05-28 17:25:46 +02:00
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
Label {
|
|
|
|
id: promptLabel
|
|
|
|
|
2023-06-02 01:29:05 +02:00
|
|
|
color: palette.text
|
2021-05-28 17:25:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
MatrixTextField {
|
|
|
|
id: statusInput
|
|
|
|
|
|
|
|
Layout.fillWidth: true
|
2021-11-17 03:06:51 +01:00
|
|
|
onAccepted: dbb.accepted()
|
|
|
|
focus: true
|
2021-05-28 17:25:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
footer: DialogButtonBox {
|
2021-11-17 03:06:51 +01:00
|
|
|
id: dbb
|
|
|
|
|
2021-05-28 17:25:46 +02:00
|
|
|
standardButtons: DialogButtonBox.Ok | DialogButtonBox.Cancel
|
|
|
|
onAccepted: {
|
2023-10-26 21:43:05 +02:00
|
|
|
inputDialog.accepted(statusInput.text);
|
2021-05-28 17:25:46 +02:00
|
|
|
|
|
|
|
inputDialog.close();
|
|
|
|
}
|
|
|
|
onRejected: {
|
|
|
|
inputDialog.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|