mirror of
https://github.com/QRouland/UTPass.git
synced 2025-01-24 23:56:39 +00:00
38 lines
709 B
QML
38 lines
709 B
QML
import QtQuick 2.4
|
|
import Lomiri.Components 1.3
|
|
import Lomiri.Components.Popups 1.3
|
|
|
|
Dialog {
|
|
id: doubleValidationDialog
|
|
|
|
property string text
|
|
|
|
signal validated
|
|
signal canceled
|
|
|
|
Text {
|
|
horizontalAlignment: Text.AlignHCenter
|
|
text: doubleValidationDialog.text
|
|
}
|
|
|
|
Button {
|
|
text: i18n.tr("Ok")
|
|
color: LomiriColors.green
|
|
|
|
onClicked: {
|
|
validated()
|
|
PopupUtils.close(doubleValidationDialog)
|
|
}
|
|
}
|
|
|
|
Button {
|
|
id: cancelButton
|
|
text: i18n.tr("Cancel")
|
|
color: LomiriColors.red
|
|
onClicked: {
|
|
canceled()
|
|
PopupUtils.close(doubleValidationDialog)
|
|
}
|
|
}
|
|
}
|