summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/qml_model_qt4/popups/AlertWindow.qml
blob: 70e7ba29ef676cfa674197266915a1cc69e7b1d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
/**
 * @file AlertWindow.qml
 * @brief Alert popup window
 * Copyright (c) 2013, Ford Motor Company
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this
 * list of conditions and the following disclaimer.
 *
 * Redistributions in binary form must reproduce the above copyright notice,
 * this list of conditions and the following
 * disclaimer in the documentation and/or other materials provided with the
 * distribution.
 *
 * Neither the name of the Ford Motor Company nor the names of its contributors
 * may be used to endorse or promote products derived from this software
 * without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

import QtQuick 1.1
import "../controls"
import "../hmi_api/Common.js" as Common
import "../models/Constants.js" as Constants

Rectangle {
    id: alertWindow
    property date lastAlertTime
    property variant softButtons
    property int appId
    property string popUpName // TODO{ALESHIN}: No requerments for closePopUp, if alert couldn't be closed by closePopUp request - delete everywhere

    color: "transparent"

    property variant async

    Rectangle {
        id: rectangle

        anchors.centerIn: parent
        color: "black"
        border.color: "white"

        width: alertContent.width + 60
        height: alertContent.height + 60

        property alias alertString: alert.text
        property alias appNameString: appName.text
        property int duration

        Column {
            id: alertContent
            anchors.centerIn: parent
            spacing: 20

            Text {
                id: appName
                anchors.horizontalCenter: parent.horizontalCenter
                color: "white"
                font.pointSize: 16
            }

            Row {
                width: Constants.alertWidth
                spacing: 20

                Image {
                    id: alertLogo
                    source: "../res/warning.png"
                }

                Text {
                    id: alert
                    width: parent.width - alertLogo.width - parent.spacing
                    clip: true
                    color: "white"
                    font.pointSize: 16
                }
            }

            Rectangle {
                id: progressIndicator
                color: "white"
                height: 10
            }

            Column {
                Item {
                    width: Constants.alertWidth
                    height: alertButton1.visible ? alertButton1.height : 0

                    SoftButton {
                        id: alertButton1
                        appId: alertWindow.appId
                        button: softButtons && softButtons.length > 0 ? softButtons[0] : undefined
                        anchors.left: parent.left
                        anchors.right: alertButton2.visible ? alertButton2.left : parent.right
                        width: Constants.alertWidth / 2
                        onPressed: { alertWindow.keep = true; }
                        onReleased: { alertWindow.keep = false; }
                        onKeepContext: {
                            alertWindow.restart();
                            sdlUI.onResetTimeout(appId, "UI.Alert")
                        }
                        onDefaultAction: { alertWindow.complete(Common.Result.SUCCESS); }
                        onStealFocus: {
                            contentLoader.go("views/SDLPlayerView.qml", appId);
                            alertWindow.complete(Common.Result.SUCCESS);
                        }
                    }
                    SoftButton {
                        id: alertButton2
                        appId: alertWindow.appId
                        button: softButtons && softButtons.length > 1 ? softButtons[1] : undefined
                        anchors.right: parent.right
                        width: Constants.alertWidth / 2
                        onPressed: { alertWindow.keep = true; }
                        onReleased: { alertWindow.keep = false; }
                        onKeepContext: {
                            alertWindow.restart();
                            sdlUI.onResetTimeout(appId, "UI.Alert")
                        }
                        onDefaultAction: { alertWindow.complete(Common.Result.SUCCESS); }
                        onStealFocus: {
                            contentLoader.go("views/SDLPlayerView.qml", appId);
                            alertWindow.complete(Common.Result.SUCCESS);
                        }
                    }
                }
                Item {
                    width: Constants.alertWidth
                    height: alertButton3.visible ? childrenRect.height : 0
                    SoftButton {
                        id: alertButton3
                        appId: alertWindow.appId
                        button: softButtons && softButtons.length > 2 ? softButtons[2] : undefined
                        anchors.left: parent.left
                        anchors.right: alertButton4.visible ? alertButton4.left : parent.right
                        width: Constants.alertWidth / 2
                        onPressed: { alertWindow.keep = true; }
                        onReleased: { alertWindow.keep = false; }
                        onKeepContext: {
                            alertWindow.restart();
                            sdlUI.onResetTimeout(appId, "UI.Alert")
                        }
                        onDefaultAction: { alertWindow.complete(Common.Result.SUCCESS); }
                        onStealFocus: {
                            contentLoader.go("views/SDLPlayerView.qml", appId);
                            alertWindow.complete(Common.Result.SUCCESS);
                        }
                    }
                    SoftButton {
                        id: alertButton4
                        appId: alertWindow.appId
                        button: softButtons && softButtons.length > 3 ? softButtons[3] : undefined
                        anchors.right: parent.right
                        width: Constants.alertWidth / 2
                        onPressed: { alertWindow.keep = true; }
                        onReleased: { alertWindow.keep = false; }
                        onKeepContext: {
                            alertWindow.restart();
                            sdlUI.onResetTimeout(appId, "UI.Alert")
                        }
                        onDefaultAction: { alertWindow.complete(Common.Result.SUCCESS); }
                        onStealFocus: {
                            contentLoader.go("views/SDLPlayerView.qml", appId);
                            alertWindow.complete(Common.Result.SUCCESS);
                        }
                    }
                }
            }
        }

        SequentialAnimation {
            id: animation
            PropertyAction { target: progressIndicator; property: "width"; value: alertContent.width }
            PropertyAnimation {
                id: shrinkProgressAnimation
                target: progressIndicator
                property: "width"
                to: 0
                duration: rectangle.duration
            }
        }
    }

    Timer {
        id: timer
        onTriggered: {
            complete(Common.Result.SUCCESS)
        }
    }

    function alert (alertStrings, duration, showIndicator, sButtons, applicationId) {
        if (timer.running) { // we have alert already
            var currentTime = new Date()
            var timeFromLastAlert = currentTime - lastAlertTime
            var timeLeft = timer.interval - timeFromLastAlert
            var discreteInMilliseconds = 1000 // wish to round left time to integer seconds
            var timeLeftRounded = discreteInMilliseconds * Math.ceil(timeLeft / discreteInMilliseconds)
            return timeLeftRounded
        }
        else {
            lastAlertTime = new Date();
            appId = applicationId
            rectangle.appNameString = dataContainer.getApplication(appId).appName;
            softButtons = sButtons;
            rectangle.alertString = alertStrings.join('\n');
            timer.interval = duration;
            rectangle.duration = duration;
            timer.start();
            show();

            progressIndicator.visible = !!showIndicator
            progressIndicator.width = alertContent.width
            console.log("ProgressIndicator.width:", progressIndicator.width)
            animation.start()
        }
    }

    function show () {
        dataContainer.activeAlert = true
        dataContainer.applicationSavedContext = dataContainer.applicationContext
        visible = true
    }

    function complete (reason, data) {
        if (!keep) {
            hide()
            switch (reason) {
            case Common.Result.SUCCESS:
                DBus.sendReply(async, { __retCode: Common.Result.SUCCESS, __message: "UI.Alert" })
                break
            // For other cases
            }
        }
        timer.stop()
    }

    function hide() {
        console.debug(popUpName, "HIDE")
        dataContainer.activeAlert = false
        dataContainer.applicationContext = dataContainer.applicationSavedContext
        visible = false
    }

    function restart() {
        animation.restart();
        timer.restart();
    }

    property bool keep: false

    onKeepChanged: {
        if (visible && !keep && !timer.running) {
            hide()
        }
    }

    onVisibleChanged: {
        if (visible) {
            dataContainer.activePopup.push(popUpName)
        } else {
            for (var i in dataContainer.activePopup) {
                if (dataContainer.activePopup[i] === popUpName) {
                    dataContainer.activePopup.splice(i, 1)
                }
            }
        }
    }
}