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

39 lines
718 B
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 string text
2025-01-10 15:28:42 +01:00
signal validated()
signal canceled()
2019-09-20 21:29:39 +02:00
Text {
horizontalAlignment: Text.AlignHCenter
text: doubleValidationDialog.text
}
Button {
text: i18n.tr("Ok")
color: LomiriColors.green
2019-09-20 21:29:39 +02:00
onClicked: {
2025-01-10 15:28:42 +01:00
validated();
PopupUtils.close(doubleValidationDialog);
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
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
}