aboutsummaryrefslogtreecommitdiffstats
path: root/imports/system/models/application/ApplicationModel.qml
blob: e65af69bc48bcbedea86f97d7b9b97f30da47857 (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
/****************************************************************************
**
** 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 1.0 as AM
import intents 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 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 bool populating: d.populating

    // Populate the model
    function populate() {
        // Configures which applications should be shown as widgets,
        // which, in turn, will cause them to be started.
        d.configureApps();
        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 an intent is requested
        if (d.intentsInterface.history.length > 1) {
            d.intentsInterface.goBack();
        } else {
            //else return to home
            goHome();
        }
    }

    // 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 populating: true
        property IntentsInterface intentsInterface: IntentsInterface {
            id: intentsInterface
            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;
        }

        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 {
                root.append({"appInfo":appInfo});
            }
        }

        // TODO: Load the widget configuration from some database or file
        function configureApps()
        {
            var appInfo = root.applicationFromId("com.pelagicore.calendar");
            appInfo.asWidget = true;
            appInfo.heightRows = 2;

            appInfo = root.applicationFromId("com.pelagicore.phone");
            appInfo.asWidget = true;
            appInfo.heightRows = 2;

            appInfo = root.applicationFromId("com.pelagicore.music");
            appInfo.asWidget = true;
        }
    }


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

    property var appManConns: Connections {
        target: AM.ApplicationManager

        onApplicationWasActivated: d.reactOnAppActivation(id);

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

            if (runState === AM.Application.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 = AM.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);
        }
    }

    property var winManConns: Connections {
        target: AM.WindowManager

        onWindowReady: {
            var appID = AM.WindowManager.get(index).applicationId;
            var appInfo = applicationFromId(appID);

            var isRegularApp = !!appInfo;

            if (isRegularApp) {
                var isSecondaryWindow = AM.WindowManager.windowProperty(window, "windowType") === "secondary";
                var isPopupWindow = AM.WindowManager.windowProperty(window, "windowType") === "popup";

                if (isSecondaryWindow) {
                    appInfo.priv.secondaryWindow = window;
                } else if (isPopupWindow) {
                    appInfo.priv.popupWindow = window;
                } else {
                    appInfo.priv.window = window;
                    appInfo.canBeActive = true;
                }
            } else {
                // must be the instrument cluster, which is set apart
                console.assert(!!d.instrumentClusterAppInfo, "Didn't find an Instrument Cluster application!");
                d.instrumentClusterAppInfo.priv.window = window;
            }
        }

        onWindowLost: {
            var appID = AM.WindowManager.get(index).applicationId;

            var appInfo = applicationFromId(appID);
            if (!appInfo) {
                // must be the instrument cluster, which is set apart
                console.assert(d.instrumentClusterAppInfo && d.instrumentClusterAppInfo.id === appID);
                appInfo = d.instrumentClusterAppInfo;
            }

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

            // TODO care about animating before releasing
            AM.WindowManager.releaseWindow(window);
        }

        onWindowPropertyChanged: {
            var appId = AM.WindowManager.get(AM.WindowManager.indexOfWindow(window)).applicationId;
            var appInfo = applicationFromId(appId);
            switch (name) {
            case "activationCount":
                AM.ApplicationManager.application(appId).activated();
                d.reactOnAppActivation(appId);
                break;
            case "openPopup":
                appInfo.openPopup = value;
                break;
            case "originItemX":
                appInfo.originItemX = value;
                break;
            case "originItemY":
                appInfo.originItemY = value;
                break;
            case "popupWidth":
                appInfo.popupWidth = value;
                break;
            case "popupHeight":
                appInfo.popupHeight = value;
                break;
            }
        }
    }
}