blob: f00a0ab13fb22c2fc5606e2561c7611f007f5be5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import QtQuick 2.0
import QtQuick.Dialogs 1.2
import QtQuick.Controls 1.4
Dialog {
standardButtons: StandardButton.Ok
title: qsTr("Login Successful")
Column {
anchors.fill: parent
Text {
text: qsTr("Login successful. You can now start the VPN.")
}
}
function _loginOk() {
visible: false
backend.resetNotification("login_ok")
}
visible: false
onAccepted: _loginOk()
onRejected: _loginOk()
}
|