2023-12-07 02:59:03 +03:00
|
|
|
// SPDX-FileCopyrightText: Nheko Contributors
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
import Qt.labs.platform 1.1 as P
|
|
|
|
import QtQuick
|
|
|
|
import im.nheko
|
|
|
|
|
|
|
|
P.MessageDialog {
|
|
|
|
id: deleteStickerPackRoot
|
|
|
|
|
|
|
|
property SingleImagePackModel imagePack
|
|
|
|
|
2023-12-07 17:56:18 +03:00
|
|
|
text: qsTr("Are you sure you wish to delete the sticker pack '%1'?").arg(imagePack.packname)
|
2023-12-07 02:59:03 +03:00
|
|
|
modality: Qt.ApplicationModal
|
|
|
|
flags: Qt.Tool | Qt.WindowStaysOnTopHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint
|
|
|
|
buttons: P.MessageDialog.Yes | P.MessageDialog.No
|
|
|
|
|
2024-03-14 03:00:31 +03:00
|
|
|
// Broken on macos, see https://bugreports.qt.io/browse/QTBUG-102078
|
|
|
|
//onAccepted: {
|
|
|
|
onOkClicked: {
|
2023-12-07 17:48:24 +03:00
|
|
|
console.info("deleting image pack " + imagePack.packname);
|
2023-12-07 02:59:03 +03:00
|
|
|
imagePack.remove()
|
|
|
|
}
|
|
|
|
}
|