summary refs log tree commit diff
path: root/resources/qml/dialogs/ImagePackDeleteDialog.qml
blob: b674de2b23cb9e57f8baf33b1c1257149d0c2e47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// 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

    text: "This will delete the sticker pack: " + imagePack.packname
    informativeText: "Are you sure you wish to delete the Sticker pack?"
    modality: Qt.ApplicationModal
    flags: Qt.Tool | Qt.WindowStaysOnTopHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint
    buttons: P.MessageDialog.Yes | P.MessageDialog.No
        
    onAccepted: {
        console.info("DELETE PACK: " + imagePack.packname);
        imagePack.remove()
        timelineRoot.destroyOnClose(dialog);
    }
}