mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
87e81498b7
We explicitly set a parent. We can't assign to ApplicationWindow.transientParent though, only to Window.transientParent, so we just call setTransientParent in C++.
54 lines
1.1 KiB
QML
54 lines
1.1 KiB
QML
// 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: inputDialog
|
|
|
|
property alias prompt: promptLabel.text
|
|
property var onAccepted: undefined
|
|
|
|
modality: Qt.NonModal
|
|
flags: Qt.Dialog
|
|
Component.onCompleted: Nheko.reparent(inputDialog)
|
|
width: 350
|
|
height: fontMetrics.lineSpacing * 7
|
|
|
|
ColumnLayout {
|
|
anchors.margins: Nheko.paddingLarge
|
|
anchors.fill: parent
|
|
|
|
Label {
|
|
id: promptLabel
|
|
|
|
color: Nheko.colors.text
|
|
}
|
|
|
|
MatrixTextField {
|
|
id: statusInput
|
|
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
}
|
|
|
|
footer: DialogButtonBox {
|
|
standardButtons: DialogButtonBox.Ok | DialogButtonBox.Cancel
|
|
onAccepted: {
|
|
if (inputDialog.onAccepted)
|
|
inputDialog.onAccepted(statusInput.text);
|
|
|
|
inputDialog.close();
|
|
}
|
|
onRejected: {
|
|
inputDialog.close();
|
|
}
|
|
}
|
|
|
|
}
|