2 * Copyright (C) 2015 Canonical, Ltd.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 3.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 import Ubuntu.Components 1.3
26 // Controls to be set from outside
27 property bool altTabPressed
28 property url background
29 property bool beingResized
30 property int dragAreaWidth
31 property bool interactive
32 property real inverseProgress // This is the progress for left edge drags, in pixels.
33 property bool keepDashRunning: true
34 property real maximizedAppTopMargin
35 property real nativeHeight
36 property real nativeWidth
37 property QtObject orientations
38 property int shellOrientation
39 property int shellOrientationAngle
40 property bool spreadEnabled: true // If false, animations and right edge will be disabled
41 property bool suspended
43 // To be read from outside
44 property var mainApp: null
45 property int mainAppWindowOrientationAngle
46 property bool orientationChangesEnabled
48 // Shared code for use in stage implementations
50 id: lifecycleExceptions
51 schema.id: "com.canonical.qtmir"
54 function isExemptFromLifecycle(appId) {
55 var shortAppId = appId.split('_')[0];
56 for (var i = 0; i < lifecycleExceptions.lifecycleExemptAppids.length; i++) {
57 if (shortAppId === lifecycleExceptions.lifecycleExemptAppids[i]) {