summary refs log tree commit diff
diff options
context:
space:
mode:
authorFallenValkyrie <e.vanemelen@proton.me>2023-12-07 00:59:03 +0100
committerFallenValkyrie <e.vanemelen@proton.me>2023-12-16 15:48:11 +0100
commite3fe1703faa6560cfb6f830b0b676a7844567a7e (patch)
tree87e071b4263ef6862290fdc59721313c92ca8afc
parentFactor out the logic to delete an ImagePack (diff)
downloadnheko-e3fe1703faa6560cfb6f830b0b676a7844567a7e.tar.xz
Create ImagePackDeleteDialog component
-rw-r--r--CMakeLists.txt1
-rw-r--r--resources/qml/dialogs/ImagePackDeleteDialog.qml25
2 files changed, 26 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt

index af50aff8..54dda226 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -766,6 +766,7 @@ set(QML_SOURCES resources/qml/dialogs/EventExpirationDialog.qml resources/qml/dialogs/ImageOverlay.qml resources/qml/dialogs/ImagePackEditorDialog.qml + resources/qml/dialogs/ImagePackDeleteDialog.qml resources/qml/dialogs/ImagePackSettingsDialog.qml resources/qml/dialogs/InputDialog.qml resources/qml/dialogs/InviteDialog.qml diff --git a/resources/qml/dialogs/ImagePackDeleteDialog.qml b/resources/qml/dialogs/ImagePackDeleteDialog.qml new file mode 100644
index 00000000..b674de2b --- /dev/null +++ b/resources/qml/dialogs/ImagePackDeleteDialog.qml
@@ -0,0 +1,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); + } +}