2019-09-20 21:29:39 +02:00
|
|
|
import QtQuick 2.4
|
2025-01-07 14:41:48 +01:00
|
|
|
import Lomiri.Components 1.3
|
|
|
|
import Lomiri.Components.Popups 1.3
|
2019-09-20 21:29:39 +02:00
|
|
|
|
|
|
|
Dialog {
|
|
|
|
id: doubleValidationDialog
|
|
|
|
|
|
|
|
property int nb_validation: 0
|
|
|
|
property string text1
|
|
|
|
property string text2
|
|
|
|
|
|
|
|
signal doubleValidated
|
|
|
|
signal canceled
|
|
|
|
|
|
|
|
Text {
|
|
|
|
visible: nb_validation == 0
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
text: text1
|
|
|
|
}
|
|
|
|
|
|
|
|
Text {
|
|
|
|
visible: nb_validation == 1
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
text: text2
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
text: i18n.tr("Ok")
|
2025-01-07 14:41:48 +01:00
|
|
|
color: LomiriColors.green
|
2019-09-20 21:29:39 +02:00
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
if (nb_validation == 1) {
|
|
|
|
nb_validation = 0
|
|
|
|
doubleValidated()
|
|
|
|
PopupUtils.close(doubleValidationDialog)
|
|
|
|
} else {
|
|
|
|
nb_validation += 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
id: cancelButton
|
|
|
|
text: i18n.tr("Cancel")
|
2025-01-07 14:41:48 +01:00
|
|
|
color: LomiriColors.red
|
2019-09-20 21:29:39 +02:00
|
|
|
onClicked: {
|
|
|
|
nb_validation = 0
|
|
|
|
canceled()
|
|
|
|
PopupUtils.close(doubleValidationDialog)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|