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 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536
|
/*
* Copyright (C) 2015 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.15
import QtQml 2.15
import QtQuick.Window 2.2 as QtQuickWindow
import Lomiri.InputInfo 0.1
import Lomiri.Session 0.1
import WindowManager 1.0
import Utils 0.1
import GSettings 1.0
import "Components"
import "Rotation"
// Workaround https://bugs.launchpad.net/lomiri/+source/lomiri/+bug/1473471
import Lomiri.Components 1.3
Item {
id: root
implicitWidth: units.gu(40)
implicitHeight: units.gu(71)
property alias deviceConfiguration: _deviceConfiguration
property alias orientations: d.orientations
property bool lightIndicators: false
property var screen: null
Connections {
target: screen
function onFormFactorChanged() { calculateUsageMode(); }
}
onWidthChanged: calculateUsageMode();
property var overrideDeviceName: Screens.count > 1 ? "desktop" : false
DeviceConfiguration {
id: _deviceConfiguration
// Override for convergence to set scale etc for second monitor
overrideName: root.overrideDeviceName
}
Item {
id: d
property Orientations orientations: Orientations {
id: orientations
// NB: native and primary orientations here don't map exactly to their QScreen counterparts
native_: root.width > root.height ? Qt.LandscapeOrientation : Qt.PortraitOrientation
primary: deviceConfiguration.primaryOrientation == deviceConfiguration.useNativeOrientation
? native_ : deviceConfiguration.primaryOrientation
landscape: deviceConfiguration.landscapeOrientation
invertedLandscape: deviceConfiguration.invertedLandscapeOrientation
portrait: deviceConfiguration.portraitOrientation
invertedPortrait: deviceConfiguration.invertedPortraitOrientation
}
}
GSettings {
id: lomiriSettings
schema.id: "com.lomiri.Shell"
}
GSettings {
id: oskSettings
objectName: "oskSettings"
schema.id: "com.lomiri.keyboard.maliit"
}
property int physicalOrientation: QtQuickWindow.Screen.orientation
property bool orientationLocked: OrientationLock.enabled
property var orientationLock: OrientationLock
InputDeviceModel {
id: miceModel
deviceFilter: InputInfo.Mouse
property int oldCount: 0
}
InputDeviceModel {
id: touchPadModel
deviceFilter: InputInfo.TouchPad
property int oldCount: 0
}
InputDeviceModel {
id: keyboardsModel
deviceFilter: InputInfo.Keyboard
onDeviceAdded: forceOSKEnabled = autopilotDevicePresent();
onDeviceRemoved: forceOSKEnabled = autopilotDevicePresent();
}
InputDeviceModel {
id: touchScreensModel
deviceFilter: InputInfo.TouchScreen
}
Binding {
target: QuickUtils
property: "keyboardAttached"
value: keyboardsModel.count > 0
restoreMode: Binding.RestoreBinding
}
readonly property int pointerInputDevices: miceModel.count + touchPadModel.count
onPointerInputDevicesChanged: calculateUsageMode()
function calculateUsageMode() {
if (lomiriSettings.usageMode === undefined)
return; // gsettings isn't loaded yet, we'll try again in Component.onCompleted
console.log("Calculating new usage mode. Pointer devices:", pointerInputDevices, "current mode:", lomiriSettings.usageMode, "old device count", miceModel.oldCount + touchPadModel.oldCount, "root width:", root.width, "height:", root.height)
if (lomiriSettings.usageMode === "Windowed") {
if (Math.min(root.width, root.height) > units.gu(60)) {
if (pointerInputDevices === 0) {
// All pointer devices have been unplugged. Move to staged.
lomiriSettings.usageMode = "Staged";
}
} else {
// The display is not large enough, use staged.
lomiriSettings.usageMode = "Staged";
}
} else {
if (Math.min(root.width, root.height) > units.gu(60)) {
if (pointerInputDevices > 0 && pointerInputDevices > miceModel.oldCount + touchPadModel.oldCount) {
lomiriSettings.usageMode = "Windowed";
}
} else {
// Make sure we initialize to something sane
lomiriSettings.usageMode = "Staged";
}
}
miceModel.oldCount = miceModel.count;
touchPadModel.oldCount = touchPadModel.count;
}
/* FIXME: This exposes the NameRole as a work arround for lp:1542224.
* When QInputInfo exposes NameRole to QML, this should be removed.
*/
property bool forceOSKEnabled: false
property var autopilotEmulatedDeviceNames: ["py-evdev-uinput"]
LomiriSortFilterProxyModel {
id: autopilotDevices
model: keyboardsModel
}
function autopilotDevicePresent() {
for(var i = 0; i < autopilotDevices.count; i++) {
var device = autopilotDevices.get(i);
if (autopilotEmulatedDeviceNames.indexOf(device.name) != -1) {
console.warn("Forcing the OSK to be enabled as there is an autopilot eumlated device present.")
return true;
}
}
return false;
}
property int orientation
onPhysicalOrientationChanged: {
if (!orientationLocked) {
orientation = physicalOrientation;
} else {
if (orientation !== physicalOrientation && !shell.showingGreeter) {
rotateButton.show()
} else {
rotateButton.hide()
}
}
}
onOrientationLockedChanged: {
if (orientationLocked) {
orientationLock.savedOrientation = physicalOrientation;
} else {
orientation = physicalOrientation;
}
}
Component.onCompleted: {
if (orientationLocked) {
orientation = orientationLock.savedOrientation;
}
calculateUsageMode();
// We need to manually update this on startup as the binding
// below doesn't seem to have any effect at that stage
oskSettings.disableHeight = !shell.oskEnabled || shell.usageScenario == "desktop"
}
Component.onDestruction: {
const from_workspaces = root.screen.workspaces;
const from_workspaces_size = from_workspaces.count;
for (var i = 0; i < from_workspaces_size; i++) {
const from = from_workspaces.get(i);
WorkspaceManager.destroyWorkspace(from);
}
}
// we must rotate to a supported orientation regardless of shell's preference
property bool orientationChangesEnabled:
(shell.orientation & supportedOrientations) === 0 ? true
: shell.orientationChangesEnabled
Binding {
target: oskSettings
restoreMode: Binding.RestoreBinding
property: "disableHeight"
value: !shell.oskEnabled || shell.usageScenario == "desktop"
}
Binding {
target: lomiriSettings
restoreMode: Binding.RestoreBinding
property: "oskSwitchVisible"
value: shell.hasKeyboard
}
readonly property int supportedOrientations: shell.supportedOrientations
& (deviceConfiguration.supportedOrientations == deviceConfiguration.useNativeOrientation
? orientations.native_
: deviceConfiguration.supportedOrientations)
// During desktop mode switches back to phone mode Qt seems to swallow
// supported orientations by itself, not emitting them. Cause them to be emitted
// using the attached property here.
QtQuickWindow.Screen.orientationUpdateMask: supportedOrientations
property int acceptedOrientationAngle: {
if (orientation & supportedOrientations) {
return QtQuickWindow.Screen.angleBetween(orientations.native_, orientation);
} else if (shell.orientation & supportedOrientations) {
// stay where we are
return shell.orientationAngle;
} else if (angleToOrientation(shell.mainAppWindowOrientationAngle) & supportedOrientations) {
return shell.mainAppWindowOrientationAngle;
} else {
// rotate to some supported orientation as we can't stay where we currently are
// TODO: Choose the closest to the current one
if (supportedOrientations & Qt.PortraitOrientation) {
return QtQuickWindow.Screen.angleBetween(orientations.native_, Qt.PortraitOrientation);
} else if (supportedOrientations & Qt.LandscapeOrientation) {
return QtQuickWindow.Screen.angleBetween(orientations.native_, Qt.LandscapeOrientation);
} else if (supportedOrientations & Qt.InvertedPortraitOrientation) {
return QtQuickWindow.Screen.angleBetween(orientations.native_, Qt.InvertedPortraitOrientation);
} else if (supportedOrientations & Qt.InvertedLandscapeOrientation) {
return QtQuickWindow.Screen.angleBetween(orientations.native_, Qt.InvertedLandscapeOrientation);
} else {
// if all fails, fallback to primary orientation
return QtQuickWindow.Screen.angleBetween(orientations.native_, orientations.primary);
}
}
}
function angleToOrientation(angle) {
switch (angle) {
case 0:
return orientations.native_;
case 90:
return orientations.native_ === Qt.PortraitOrientation ? Qt.InvertedLandscapeOrientation
: Qt.PortraitOrientation;
case 180:
return orientations.native_ === Qt.PortraitOrientation ? Qt.InvertedPortraitOrientation
: Qt.InvertedLandscapeOrientation;
case 270:
return orientations.native_ === Qt.PortraitOrientation ? Qt.LandscapeOrientation
: Qt.InvertedPortraitOrientation;
default:
console.warn("angleToOrientation: Invalid orientation angle: " + angle);
return orientations.primary;
}
}
RotationStates {
id: rotationStates
objectName: "rotationStates"
orientedShell: root
shell: shell
shellCover: shellCover
shellSnapshot: shellSnapshot
}
Shell {
id: shell
objectName: "shell"
width: root.width
height: root.height
orientation: root.angleToOrientation(orientationAngle)
orientations: root.orientations
nativeWidth: root.width
nativeHeight: root.height
mode: applicationArguments.mode
hasMouse: pointerInputDevices > 0
hasKeyboard: keyboardsModel.count > 0
hasTouchscreen: touchScreensModel.count > 0
supportsMultiColorLed: deviceConfiguration.supportsMultiColorLed
lightIndicators: root.lightIndicators
oskEnabled: (!hasKeyboard && Screens.count === 1) ||
lomiriSettings.alwaysShowOsk || forceOSKEnabled
// Multiscreen support: in addition to judging by the device type, go by the screen type.
// This allows very flexible usecases beyond the typical "connect a phone to a monitor".
// Status quo setups:
// - phone + external monitor: virtual touchpad on the device
// - tablet + external monitor: dual-screen desktop
// - desktop: Has all the bells and whistles of a fully fledged PC/laptop shell
usageScenario: {
if (lomiriSettings.usageMode === "Windowed") {
return "desktop";
} else if (deviceConfiguration.category === "phone") {
return "phone";
} else if (deviceConfiguration.category === "tablet") {
return "tablet";
} else {
if (screen.formFactor === Screen.Tablet) {
return "tablet";
} else if (shell.hasTouchscreen) {
return "tablet";
} else if (screen.formFactor === Screen.Phone) {
return "phone";
} else {
return "desktop";
}
}
}
property real transformRotationAngle
property real transformOriginX
property real transformOriginY
transform: Rotation {
origin.x: shell.transformOriginX; origin.y: shell.transformOriginY; axis { x: 0; y: 0; z: 1 }
angle: shell.transformRotationAngle
}
}
Rectangle {
id: rotateButton
readonly property real visibleOpacity: 0.8
readonly property bool rotateAvailable: root.orientationLocked && root.physicalOrientation !== root.orientation
anchors.margins: units.gu(3)
states: [
State {
when: !rotateButton.rotateAvailable
AnchorChanges {
target: rotateButton
anchors.right: parent.left
anchors.top: parent.bottom
}
}
, State {
when: rotateButton.rotateAvailable && root.physicalOrientation == Qt.InvertedLandscapeOrientation
AnchorChanges {
target: rotateButton
anchors.left: parent.left
anchors.bottom: parent.bottom
}
}
, State {
when: rotateButton.rotateAvailable && root.physicalOrientation == Qt.LandscapeOrientation
AnchorChanges {
target: rotateButton
anchors.right: parent.right
anchors.top: parent.top
}
PropertyChanges {
target: rotateButton
anchors.topMargin: shell.shellMargin
}
}
, State {
when: rotateButton.rotateAvailable && root.physicalOrientation == Qt.PortraitOrientation
AnchorChanges {
target: rotateButton
anchors.right: parent.right
anchors.bottom: parent.bottom
}
}
, State {
when: rotateButton.rotateAvailable && root.physicalOrientation == Qt.InvertedPortraitOrientation
AnchorChanges {
target: rotateButton
anchors.left: parent.left
anchors.top: parent.top
}
PropertyChanges {
target: rotateButton
anchors.topMargin: shell.shellMargin
}
}
]
height: units.gu(4)
width: height
radius: width / 2
visible: opacity > 0
opacity: 0
color: theme.palette.normal.background
border {
width: units.dp(1)
color: theme.palette.normal.backgroundText
}
function show() {
if (!visible) {
showDelay.restart()
}
}
function hide() {
hideAnimation.restart()
showDelay.stop()
}
Icon {
id: icon
implicitWidth: units.gu(3)
implicitHeight: implicitWidth
anchors.centerIn: parent
name: "view-rotate"
color: theme.palette.normal.backgroundText
}
MouseArea {
anchors.fill: parent
onClicked: {
rotateButton.hide()
orientationLock.savedOrientation = root.orientation
root.orientation = root.physicalOrientation
}
}
LomiriNumberAnimation {
id: showAnimation
running: false
property: "opacity"
target: rotateButton
alwaysRunToEnd: true
to: rotateButton.visibleOpacity
duration: LomiriAnimation.SlowDuration
}
LomiriNumberAnimation {
id: hideAnimation
running: false
property: "opacity"
target: rotateButton
alwaysRunToEnd: true
to: 0
duration: LomiriAnimation.FastDuration
}
SequentialAnimation {
running: rotateButton.visible
loops: 3
RotationAnimation {
target: rotateButton
duration: LomiriAnimation.SnapDuration
to: 0
direction: RotationAnimation.Shortest
}
NumberAnimation { target: icon; duration: LomiriAnimation.SnapDuration; property: "opacity"; to: 1 }
PauseAnimation { duration: LomiriAnimation.SlowDuration }
RotationAnimation {
target: rotateButton
duration: LomiriAnimation.SlowDuration
to: root.orientationLocked ? QtQuickWindow.Screen.angleBetween(root.orientation, root.physicalOrientation) : 0
direction: RotationAnimation.Shortest
}
PauseAnimation { duration: LomiriAnimation.SlowDuration }
NumberAnimation { target: icon; duration: LomiriAnimation.SnapDuration; property: "opacity"; to: 0 }
onFinished: rotateButton.hide()
}
Timer {
id: showDelay
running: false
interval: 1000
onTriggered: {
showAnimation.restart()
}
}
Timer {
id: hideDelay
running: false
interval: 3000
onTriggered: rotateButton.hide()
}
}
Rectangle {
id: shellCover
color: "black"
anchors.fill: parent
visible: false
}
ItemSnapshot {
id: shellSnapshot
target: shell
visible: false
width: root.width
height: root.height
property real transformRotationAngle
property real transformOriginX
property real transformOriginY
transform: Rotation {
origin.x: shellSnapshot.transformOriginX; origin.y: shellSnapshot.transformOriginY;
axis { x: 0; y: 0; z: 1 }
angle: shellSnapshot.transformRotationAngle
}
}
}
|