1
0
mirror of https://github.com/QRouland/UTPass.git synced 2025-01-26 00:26:40 +00:00
UTPass/qml/dialogs/DoubleValidationDialog.qml

54 lines
1.1 KiB
QML
Raw Normal View History

import Lomiri.Components 1.3
import Lomiri.Components.Popups 1.3
2025-01-10 15:28:42 +01:00
import QtQuick 2.4
2019-09-20 21:29:39 +02:00
Dialog {
id: doubleValidationDialog
property int nb_validation: 0
property string text1
property string text2
2025-01-10 15:28:42 +01:00
signal doubleValidated()
signal canceled()
2019-09-20 21:29:39 +02:00
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")
color: LomiriColors.green
2019-09-20 21:29:39 +02:00
onClicked: {
if (nb_validation == 1) {
2025-01-10 15:28:42 +01:00
nb_validation = 0;
doubleValidated();
PopupUtils.close(doubleValidationDialog);
2019-09-20 21:29:39 +02:00
} else {
2025-01-10 15:28:42 +01:00
nb_validation += 1;
2019-09-20 21:29:39 +02:00
}
}
}
Button {
id: cancelButton
2025-01-10 15:28:42 +01:00
2019-09-20 21:29:39 +02:00
text: i18n.tr("Cancel")
color: LomiriColors.red
2019-09-20 21:29:39 +02:00
onClicked: {
2025-01-10 15:28:42 +01:00
nb_validation = 0;
canceled();
PopupUtils.close(doubleValidationDialog);
2019-09-20 21:29:39 +02:00
}
}
2025-01-10 15:28:42 +01:00
2019-09-20 21:29:39 +02:00
}