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
|
/*
* Copyright 2014-2016 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.15
import QtQml 2.15
import Lomiri.Components 1.3
import QtMir.Application 0.1
FocusScope {
id: root
implicitWidth: requestedWidth
implicitHeight: requestedHeight
// to be read from outside
property alias interactive: surfaceContainer.interactive
property bool orientationChangesEnabled: d.supportsSurfaceResize ? d.surfaceOldEnoughToBeResized : true
readonly property string title: surface && surface.name !== "" ? surface.name : d.name
readonly property QtObject focusedSurface: d.focusedSurface.surface
readonly property alias surfaceInitialized: d.surfaceInitialized
readonly property bool supportsResize: d.surfaceOldEnoughToBeResized && d.supportsSurfaceResize
// to be set from outside
property QtObject surface
property QtObject application
property int surfaceOrientationAngle
property int requestedWidth: -1
property int requestedHeight: -1
property real splashRotation: 0
property bool clip: false
property var stage : null
readonly property int minimumWidth: surface ? surface.minimumWidth : 0
readonly property int minimumHeight: surface ? surface.minimumHeight : 0
readonly property int maximumWidth: surface ? surface.maximumWidth : 0
readonly property int maximumHeight: surface ? surface.maximumHeight : 0
readonly property int widthIncrement: surface ? surface.widthIncrement : 0
readonly property int heightIncrement: surface ? surface.heightIncrement : 0
signal sizeChanged(size size)
onSizeChanged: {
let width = Math.max(size.width, root.minimumWidth)
width = Math.min(width, root.maximumWidth)
let height = Math.max(size.height, root.minimumHeight)
height = Math.min(height, root.maximumHeight)
implicitWidth = width
implicitHeight = height
}
Connections {
target: surface
function onReady() { d.surfaceUp() }
}
Component.onCompleted: {
if (surface && surface.live && surface.isReady) {
d.surfaceUp()
}
}
onSurfaceChanged: {
// The order in which the instructions are executed here matters, to that the correct state
// transitions in stateGroup take place.
// More specifically, the moment surfaceContainer.surface gets updated relative to the
// other instructions.
if (surface) {
surfaceContainer.surface = surface;
} else {
d.surfaceInitialized = false;
surfaceContainer.surface = null;
}
}
QtObject {
id: d
// helpers so that we don't have to check for the existence of an application everywhere
// (in order to avoid breaking qml binding due to a javascript exception)
readonly property string name: root.application ? root.application.name : ""
readonly property url icon: root.application ? root.application.icon : ""
readonly property int applicationState: root.application ? root.application.state : -1
readonly property string splashTitle: root.application ? root.application.splashTitle : ""
readonly property url splashImage: root.application ? root.application.splashImage : ""
readonly property bool splashShowHeader: root.application ? root.application.splashShowHeader : true
readonly property color splashColor: root.application ? root.application.splashColor : "#00000000"
readonly property color splashColorHeader: root.application ? root.application.splashColorHeader : "#00000000"
readonly property color splashColorFooter: root.application ? root.application.splashColorFooter : "#00000000"
// Whether the Application had a surface before but lost it.
property bool hadSurface: false
//FIXME - this is a hack to avoid the first few rendered frames as they
// might show the UI accommodating due to surface resizes on startup.
// Remove this when possible
property bool surfaceInitialized: false
readonly property bool supportsSurfaceResize:
application &&
((application.supportedOrientations & Qt.PortraitOrientation)
|| (application.supportedOrientations & Qt.InvertedPortraitOrientation))
&&
((application.supportedOrientations & Qt.LandscapeOrientation)
|| (application.supportedOrientations & Qt.InvertedLandscapeOrientation))
&&
!((root.minimumWidth === root.maximumWidth) && (root.minimumHeight === root.maximumHeight))
property bool surfaceOldEnoughToBeResized: false
property Item focusedSurface: promptSurfacesRepeater.count === 0 ? surfaceContainer
: promptSurfacesRepeater.first
function surfaceUp() {
d.surfaceInitialized = true;
d.hadSurface = true;
d.surfaceOldEnoughToBeResized = true;
}
onFocusedSurfaceChanged: {
if (focusedSurface) {
focusedSurface.focus = true;
}
}
}
Binding {
target: root.application
restoreMode: Binding.RestoreBinding
property: "initialSurfaceSize"
value: Qt.size(root.requestedWidth, root.requestedHeight)
}
Timer {
id: surfaceInitTimer
interval: 100
repeat: true
running: root.surface && !d.surfaceInitialized
onTriggered: {
if (root.surface && root.surface.isReady) {
d.surfaceUp()
}
}
}
SurfaceContainer {
id: surfaceContainer
anchors.fill: parent
requestedWidth: root.requestedWidth
requestedHeight: root.requestedHeight
surfaceOrientationAngle: application && application.rotatesWindowContents ? root.surfaceOrientationAngle : 0
clip: root.clip
onSizeChanged: root.sizeChanged(size)
stage: root.stage
}
Loader {
id: splashLoader
objectName: "splashLoader"
anchors.fill: parent
sourceComponent: Component {
Splash {
id: splash
title: d.splashTitle ? d.splashTitle : d.name
imageSource: d.splashImage
icon: d.icon
showHeader: d.splashShowHeader
backgroundColor: d.splashColor
headerColor: d.splashColorHeader
footerColor: d.splashColorFooter
rotation: root.splashRotation
anchors.centerIn: parent
width: rotation == 0 || rotation == 180 ? root.width : root.height
height: rotation == 0 || rotation == 180 ? root.height : root.width
}
}
}
Repeater {
id: promptSurfacesRepeater
objectName: "promptSurfacesRepeater"
// show only along with the top-most application surface
model: {
if (root.application && (
root.surface === root.application.surfaceList.first ||
root.application.surfaceList.count === 0)) {
return root.application.promptSurfaceList;
} else {
return null;
}
}
delegate: SurfaceContainer {
id: promptSurfaceContainer
interactive: index === 0 && root.interactive
surface: model.surface
width: root.width
height: root.height
requestedWidth: root.requestedWidth
requestedHeight: root.requestedHeight
isPromptSurface: true
z: surfaceContainer.z + (promptSurfacesRepeater.count - index)
property int index: model.index
onIndexChanged: updateFirst()
Component.onCompleted: updateFirst()
function updateFirst() {
if (index === 0) {
promptSurfacesRepeater.first = promptSurfaceContainer;
}
}
}
onCountChanged: {
if (count === 0) {
first = null;
}
}
property Item first: null
}
StateGroup {
id: stateGroup
objectName: "applicationWindowStateGroup"
states: [
State {
name: "surface"
when: (root.surface && d.surfaceInitialized)
},
State {
name: "splash"
when: (!root.surface || !d.surfaceInitialized) || !root.surface.live || d.hadSurface
}
]
transitions: [
Transition {
to: "surface"
SequentialAnimation {
PropertyAnimation { target: splashLoader; property: "opacity"; from: 1; to: 0; easing.type: Easing.OutQuad }
PropertyAction { target: splashLoader; property: "active"; value: false }
}
}
]
}
}
|