ba922bedb47a834b3ba047fc5ab95db84d7c307b
[openvpnui.git] / qml / cover / CoverPage.qml
1 /*
2   Copyright (C) 2013 Jolla Ltd.
3   Contact: Thomas Perl <thomas.perl@jollamobile.com>
4   All rights reserved.
5
6   You may use this file under the terms of BSD license as follows:
7
8   Redistribution and use in source and binary forms, with or without
9   modification, are permitted provided that the following conditions are met:
10     * Redistributions of source code must retain the above copyright
11       notice, this list of conditions and the following disclaimer.
12     * Redistributions in binary form must reproduce the above copyright
13       notice, this list of conditions and the following disclaimer in the
14       documentation and/or other materials provided with the distribution.
15     * Neither the name of the Jolla Ltd nor the
16       names of its contributors may be used to endorse or promote products
17       derived from this software without specific prior written permission.
18
19   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20   ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22   DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR
23   ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24   (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
25   LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
26   ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 import QtQuick 2.0
32 import Sailfish.Silica 1.0
33
34 CoverBackground {
35     id: cover
36
37     Connections {
38         target:VpnControl
39         onStatusChanged: {
40             updateStatus(status)
41         }
42     }
43
44     Column {
45         anchors.centerIn: parent
46         spacing: Theme.paddingSmall
47         Label {
48             text: "OpenVPN"
49             color: Theme.highlightColor
50             font.pixelSize: Theme.fontSizeSmall
51             width: parent.parent.width - Theme.paddingMedium
52             wrapMode: Text.Wrap
53             horizontalAlignment: Text.AlignHCenter
54             anchors.horizontalCenter: parent.horizontalCenter
55         }
56         Label {
57             id: coverStatus
58             text: "Disconnected"
59             color: Theme.highlightColor
60             font.pixelSize: Theme.fontSizeMedium
61             width: parent.parent.width - Theme.paddingMedium
62             wrapMode: Text.Wrap
63             horizontalAlignment: Text.AlignHCenter
64             anchors.horizontalCenter: parent.horizontalCenter
65         }
66     }
67
68     function updateStatus(status) {
69         switch (status) {
70         case 0:
71             coverStatus.text = "Disconnected"
72             coverActionConnect.enabled = true;
73             coverActionDisconnect.enabled = false;
74             break
75         case 1:
76             coverStatus.text = "Initialising"
77             coverActionConnect.enabled = false;
78             coverActionDisconnect.enabled = false;
79             break
80         case 2:
81             coverStatus.text = "Connecting"
82             coverActionConnect.enabled = false;
83             coverActionDisconnect.enabled = true;
84             break
85         case 3:
86             coverStatus.text = "Connected"
87             coverActionConnect.enabled = false;
88             coverActionDisconnect.enabled = true;
89             break
90         case 4:
91             coverStatus.text = "Disconnecting"
92             coverActionConnect.enabled = false;
93             coverActionDisconnect.enabled = false;
94             break
95         default:
96             coverStatus.text = "Invalid"
97             coverActionConnect.enabled = true;
98             coverActionDisconnect.enabled = false;
99             break
100         }
101     }
102
103     CoverActionList {
104         id: coverActionConnect
105
106         enabled: true
107
108         CoverAction {
109             iconSource: "image://theme/icon-cover-next"
110             onTriggered: VpnControl.vpnConnect()
111         }
112     }
113
114     CoverActionList {
115         id: coverActionDisconnect
116
117         enabled: false
118
119         CoverAction {
120             iconSource: "image://theme/icon-cover-cancel"
121             onTriggered: VpnControl.vpnDisconnect()
122         }
123     }
124 }
125
126