aboutsummaryrefslogtreecommitdiffstats
path: root/imports_system/system/models/application/ApplicationModel.qml
blob: ff7f4756d25a75fae174e57736f49c97a5c17318 (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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
/****************************************************************************
**
** Copyright (C) 2018 Pelagicore AG
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Neptune 3 IVI UI.
**
** $QT_BEGIN_LICENSE:GPL-QTAS$
** Commercial License Usage
** Licensees holding valid commercial Qt Automotive Suite licenses may use
** this file in accordance with the commercial license agreement provided
** with the Software or, alternatively, in accordance with the terms
** contained in a written agreement between you and The Qt Company.  For
** licensing terms and conditions see https://www.qt.io/terms-conditions.
** For further information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 or (at your option) any later version
** approved by the KDE Free Qt Foundation. The licenses are as published by
** the Free Software Foundation and appearing in the file LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
** SPDX-License-Identifier: GPL-3.0
**
****************************************************************************/

import QtQuick 2.8
import QtApplicationManager.SystemUI 1.0
import system.requests 1.0

/*
  A list of ApplicationInfo objects.
*/
ListModel {
    id: root

    // The currently active application. The active application should be displayed in a maximized state.
    readonly property var activeAppInfo: d.activeAppInfo

    // The instrument cluster application.
    readonly property var instrumentClusterAppInfo: d.instrumentClusterAppInfo

    // The bottom bar application.
    readonly property var bottomBarAppInfo: d.bottomBarAppInfo

    // The HUD application.
    readonly property var hudAppInfo: d.hudAppInfo

    // The locale code (eg: "en_US") that is passed down to applications
    property string localeCode

    // Whether the model is still being populated. It's true during start up.
    readonly property alias populating: d.populating

    // Whether the Neptune 3 UI runs on single- / multi-process mode.
    readonly property bool singleProcess: ApplicationManager.singleProcess

    signal shuttingDown()
    signal applicationPopupAdded(var window)

    // Populate the model
    function populate(widgetStates) {
        // Configures which applications should be shown as widgets,
        // which, in turn, will cause them to be started.
        d.deserializeWidgetsState(widgetStates);
        d.populating = false;
    }

    // Returns an ApplicationInfo given its index
    function application(index) {
        return get(index).appInfo;
    }

    // Returns an ApplicationInfo given its id
    function applicationFromId(appId) {
        for (var i = 0; i < count; i++) {
            var appInfo = get(i).appInfo;
            if (appInfo.id === appId) {
                return appInfo;
            }
        }
        return null;
    }

    function goBack() {
        //if a request is sent
        if (d.applicationRequestHandler.history.length > 1) {
            d.applicationRequestHandler.goBack();
        } else {
            //else return to home
            goHome();
        }
    }

    function serializeWidgetsState() {
        var appWidgetIds = [];
        var appWidgetHeights = [];
        var widgetStates = [];

        for (var i = 0; i < root.count; i++) {
            var appInfo = root.get(i).appInfo;
            if (appInfo.asWidget) {
                appWidgetIds.push(appInfo.id);
                appWidgetHeights.push(appInfo.heightRows)
            }
        }

        for (var j = 0; j < appWidgetIds.length; j++) {
            var appIdAndHeight = appWidgetIds[j] + ":" + appWidgetHeights[j];
            widgetStates.push(appIdAndHeight);
        }
        return widgetStates.toString();
    }

    // Go back to the home screen.
    //
    // It deactivates the currently active application, if any.
    // When there is no active application the home screen should be
    // seen instead, hence the name.
    function goHome() {
        if (d.activeAppInfo) {
            d.activeAppInfo.priv.active = false;
            d.activeAppInfo = null;
            console.log(d.logCat, "activeAppId=<empty>");
        }
    }

    property var priv: QtObject {
        id: d
        property var activeAppInfo: null
        property var instrumentClusterAppInfo: null
        property var bottomBarAppInfo: null
        property var hudAppInfo: null
        property bool populating: true
        property ApplicationRequestHandler applicationRequestHandler: ApplicationRequestHandler {
            id: applicationRequestHandler
            activeAppId: activeAppInfo ? activeAppInfo.id : ""
        }
        readonly property var logCat: LoggingCategory {
            name: "applicationmodel"
        }

        function reactOnAppActivation(appId) {
            if (d.activeAppInfo && appId === d.activeAppInfo.id)
                return;

            var appInfo = root.applicationFromId(appId);
            if (!appInfo || !appInfo.canBeActive)
                return;

            appInfo.priv.active = true;

            if (d.activeAppInfo) {
                d.activeAppInfo.priv.active = false;
            }

            d.activeAppInfo = appInfo;
            console.log(d.logCat, "activeAppId=" + d.activeAppInfo.id);
        }

        function isInstrumentClusterApp(app)
        {
            return app.categories.indexOf("cluster") >= 0;
        }

        function isBottomBarApp(app)
        {
            return app.categories.indexOf("bottombar") >= 0;
        }

        function isHUDApp(app)
        {
            return app.categories.indexOf("hud") >= 0;
        }
        property Component appInfoComponent: Component { ApplicationInfo{} }
        function appendApplication(app) {
            var appInfo = appInfoComponent.createObject(root, {"application":app});
            appInfo.localeCode = Qt.binding(function() { return root.localeCode; });

            if (d.isInstrumentClusterApp(app)) {
                d.instrumentClusterAppInfo = appInfo;
                appInfo.start();
            } else if (d.isBottomBarApp(app)) {
                d.bottomBarAppInfo = appInfo;
                appInfo.start();
            } else if (d.isHUDApp(app)) {
                d.hudAppInfo = appInfo;
                appInfo.start();
            } else {
                root.append({"appInfo":appInfo});
            }
        }

        function deserializeWidgetsState(widgetStates)
        {
            var appIds = []
            var appHeights = []

            var apps = widgetStates.split(",");

            for (var i = 0; i < apps.length; i++) {
                var values = apps[i].split(":");
                appIds.push(values[0]);
                appHeights.push(values[1]);
            }

            for (var j = 0; j < appIds.length; j++) {
                var appInfos = root.applicationFromId(appIds[j]);
                if (appInfos) {
                    appInfos.asWidget = true;
                    appInfos.heightRows = Number(appHeights[j]);
                }
            }
        }
    }

    Component.onCompleted: {
        var i;
        for (i = 0; i < ApplicationManager.count; i++) {
            var app = ApplicationManager.application(i);
            d.appendApplication(app);
        }
    }

    property var appManConns: Connections {
        target: ApplicationManager

        onApplicationWasActivated: d.reactOnAppActivation(id);

        onApplicationRunStateChanged: {
            var appInfo = root.applicationFromId(id);
            if (!appInfo) {
                return;
            }

            if (runState === ApplicationObject.NotRunning) {
                if (appInfo === d.activeAppInfo) {
                    root.goHome();
                }
                if (appInfo.asWidget) {
                    // otherwise the widget would get maximized once restarted.
                    appInfo.canBeActive = false;

                    // Application was killed or crashed while being displayed as a widget.
                    // Remove it from the widget list
                    appInfo.asWidget = false;
                }
            }
        }

        onApplicationAdded: {
            var app = ApplicationManager.application(id);
            d.appendApplication(app);
        }

        onApplicationAboutToBeRemoved: {
            var appInfo = null;
            var index;

            for (index = 0; index < count; index++) {
                var someAppInfo = get(index).appInfo;
                if (someAppInfo.id === id) {
                    appInfo = someAppInfo;
                    break;
                }
            }

            console.assert(!!appInfo);

            if (d.activeAppInfo === appInfo) {
                root.goHome();
            }
            if (appInfo.asWidget) {
                appInfo.asWidget = false;
            }

            root.remove(index);
        }

        onShuttingDownChanged: {
            if (ApplicationManager.shuttingDown) {
                root.shuttingDown();
            }
        }
    }

    property var winManConns: Connections {
        target: WindowManager

        onWindowAdded: {
            var appInfo = applicationFromId(window.application.id);

            var isRegularApp = !!appInfo;

            var isPopupWindow = window.windowProperty("windowType") === "popup";

            if (isPopupWindow) {
                root.applicationPopupAdded(window)
            }

            if (isRegularApp) {
                var isApplicationICWindow = window.windowProperty("windowType") === "instrumentcluster";
                var isApplicationCCWindow = !window.windowProperty("windowType");

                if (isApplicationICWindow) {
                    appInfo.priv.icWindow = window;
                } else if (isApplicationCCWindow) {
                    appInfo.priv.window = window;
                    appInfo.canBeActive = true;
                }
            // need to check if the window is not a popup, otherwise, a popup window that belongs to the bottom bar
            // application will be added to the bottom bar window as well
            } else if (d.isBottomBarApp(window.application) && window.windowProperty("windowType") !== "popup") {
                d.bottomBarAppInfo.priv.window = window;
            } else if (d.isHUDApp(window.application)) {
                d.hudAppInfo.priv.window = window;
            } else if (d.isInstrumentClusterApp(window.application)) {
                d.instrumentClusterAppInfo.priv.window = window;
            }
        }

        onWindowAboutToBeRemoved: {
            var appInfo = applicationFromId(window.application.id);
            if (!appInfo) {
                if (d.isInstrumentClusterApp(window.application)) {
                    appInfo = d.instrumentClusterAppInfo;
                } else if (d.isBottomBarApp(window.application)) {
                    appInfo = d.bottomBarAppInfo;
                } else if (d.isHUDApp(window.application)) {
                    appInfo = d.hudAppInfo;
                }
            }

            if (appInfo.priv.window === window) {
                appInfo.priv.window = null;
            } else if (appInfo.priv.icWindow === window) {
                appInfo.priv.icWindow = null;
            }
        }

        onWindowPropertyChanged: {
            var appInfo = applicationFromId(window.application.id);
            switch (name) {
            case "activationCount":
                window.application.activated();
                d.reactOnAppActivation(window.application.id);
                break;
            }
        }
    }
}