2020-08-10 12:15:57 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
|
|
|
import "../imports"
|
2020-10-03 19:00:07 +00:00
|
|
|
import "../shared/status"
|
2020-08-10 12:15:57 +00:00
|
|
|
import "./"
|
|
|
|
|
|
|
|
ModalPopup {
|
2020-08-10 13:06:46 +00:00
|
|
|
id: confirmationDialog
|
2020-10-02 13:02:56 +00:00
|
|
|
|
|
|
|
property Popup parentPopup
|
2021-01-13 20:26:30 +00:00
|
|
|
property string btnType: "primary"
|
2020-10-02 13:02:56 +00:00
|
|
|
|
|
|
|
|
2020-08-10 12:15:57 +00:00
|
|
|
height: 186
|
|
|
|
width: 400
|
2020-08-26 15:52:26 +00:00
|
|
|
//% "Confirm your action"
|
|
|
|
title: qsTrId("confirm-your-action")
|
2020-08-10 13:06:46 +00:00
|
|
|
|
2020-08-26 15:52:26 +00:00
|
|
|
//% "Confirm"
|
|
|
|
property string confirmButtonLabel: qsTrId("close-app-button")
|
|
|
|
//% "Are you sure you want to this?"
|
|
|
|
property string confirmationText: qsTrId("are-you-sure-you-want-to-this-")
|
2020-10-02 13:02:56 +00:00
|
|
|
|
2020-10-02 14:37:51 +00:00
|
|
|
property var value
|
|
|
|
|
2020-08-10 13:06:46 +00:00
|
|
|
signal confirmButtonClicked()
|
2020-08-10 12:15:57 +00:00
|
|
|
|
2020-10-05 15:08:26 +00:00
|
|
|
StyledText {
|
2020-08-10 13:06:46 +00:00
|
|
|
text: confirmationDialog.confirmationText
|
2020-08-10 12:15:57 +00:00
|
|
|
font.pixelSize: 15
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
wrapMode: Text.WordWrap
|
|
|
|
}
|
|
|
|
|
|
|
|
footer: Item {
|
|
|
|
id: footerContainer
|
|
|
|
width: parent.width
|
|
|
|
height: children[0].height
|
|
|
|
|
2020-10-03 19:00:07 +00:00
|
|
|
StatusButton {
|
2021-01-13 20:26:30 +00:00
|
|
|
type: confirmationDialog.btnType
|
2020-08-10 12:15:57 +00:00
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: Style.current.smallPadding
|
2020-10-05 15:08:26 +00:00
|
|
|
color: Style.current.danger
|
2020-10-03 19:00:07 +00:00
|
|
|
text: confirmationDialog.confirmButtonLabel
|
2020-08-10 12:15:57 +00:00
|
|
|
anchors.bottom: parent.bottom
|
2020-08-10 13:06:46 +00:00
|
|
|
onClicked: confirmationDialog.confirmButtonClicked()
|
2020-08-10 12:15:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-08-10 13:06:46 +00:00
|
|
|
|