mirror of
https://github.com/QRouland/UTPass.git
synced 2026-01-10 19:36:57 +00:00
Initial Commit : 0.0.1
This commit is contained in:
22
qml/dialogs/SuccessDialog.qml
Normal file
22
qml/dialogs/SuccessDialog.qml
Normal file
@@ -0,0 +1,22 @@
|
||||
import QtQuick 2.4
|
||||
import Ubuntu.Components 1.3
|
||||
import Ubuntu.Components.Popups 1.3
|
||||
|
||||
Dialog {
|
||||
id: dialogSuccess
|
||||
|
||||
property string textSuccess
|
||||
|
||||
signal dialogClosed
|
||||
|
||||
title: i18n.tr("Success !")
|
||||
text: textSuccess
|
||||
Button {
|
||||
text: i18n.tr("OK")
|
||||
color: UbuntuColors.green
|
||||
onClicked: function () {
|
||||
dialogClosed()
|
||||
PopupUtils.close(dialogSuccess)
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user