37 lines
963 B
QML
37 lines
963 B
QML
// SPDX-FileCopyrightText: 2022 Carl Schwan <carl@carlschwan.eu>
|
|
// SPDX-FileCopyrightText: 2022 Tobias Fella <tobias.fella@kde.org>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls as QQC2
|
|
import org.kde.kirigami as Kirigami
|
|
|
|
import org.kde.neochat
|
|
|
|
Kirigami.PromptDialog {
|
|
id: root
|
|
|
|
title: i18nc("@title:dialog", "Activate Encryption")
|
|
subtitle: i18n("It will not be possible to deactivate the encryption after it is enabled.")
|
|
dialogType: Kirigami.PromptDialog.Warning
|
|
|
|
property NeoChatRoom room
|
|
|
|
onRejected: {
|
|
root.close();
|
|
}
|
|
|
|
footer: QQC2.DialogButtonBox {
|
|
standardButtons: QQC2.Dialog.Cancel
|
|
|
|
QQC2.Button {
|
|
text: i18n("Activate Encryption")
|
|
QQC2.DialogButtonBox.buttonRole: QQC2.DialogButtonBox.AcceptRole
|
|
onClicked: {
|
|
root.room.activateEncryption();
|
|
root.close();
|
|
}
|
|
}
|
|
}
|
|
}
|