2023-03-29 13:00:08 +02:00
|
|
|
/*
|
2023-12-31 10:03:40 +01:00
|
|
|
* Copyright (C) 2018-2024 QuasarApp.
|
2023-03-29 13:00:08 +02:00
|
|
|
* Distributed under the GPLv3 software license, see the accompanying
|
|
|
|
* Everyone is permitted to copy and distribute verbatim copies
|
|
|
|
* of this license document, but changing it is not allowed.
|
|
|
|
*/
|
|
|
|
|
2021-01-18 23:20:03 +03:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
import QtQuick.Controls.Material 2.15
|
|
|
|
import QtQuick.Layouts 1.15
|
|
|
|
|
|
|
|
NotificationForm {
|
|
|
|
id: questionDialog
|
|
|
|
|
2021-01-19 21:35:18 +03:00
|
|
|
readonly property string defImg: "qrc:/icons/question"
|
|
|
|
|
2021-01-18 23:20:03 +03:00
|
|
|
autoClose: false
|
|
|
|
clickClose: false
|
2021-10-21 18:46:18 +03:00
|
|
|
modal: true
|
2021-01-18 23:20:03 +03:00
|
|
|
|
|
|
|
footer: DialogButtonBox {
|
|
|
|
standardButtons: Dialog.Yes | Dialog.No;
|
|
|
|
}
|
|
|
|
}
|