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 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010
|
/*
* Copyright (C) 2013-2016 Canonical Ltd.
* Copyright (C) 2019-2021 UBports Foundation
*
* 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
import AccountsService 0.1
import QtMir.Application 0.1
import Lomiri.Components 1.3
import Lomiri.Components.Popups 1.3
import Lomiri.Gestures 0.1
import Lomiri.Telephony 0.1 as Telephony
import Lomiri.ModemConnectivity 0.1
import Lomiri.Launcher 0.1
import GlobalShortcut 1.0 // has to be before Utils, because of WindowInputFilter
import GSettings 1.0
import Utils 0.1
import Powerd 0.1
import SessionBroadcast 0.1
import "Greeter"
import "Launcher"
import "Panel"
import "Components"
import "Notifications"
import "Stage"
import "Tutorial"
import "Wizard"
import "Components/PanelState"
import Lomiri.Notifications 1.0 as NotificationBackend
import Lomiri.Session 0.1
import Lomiri.Indicators 0.1 as Indicators
import Cursor 1.1
import WindowManager 1.0
StyledItem {
id: shell
readonly property bool lightMode: settings.lightMode
theme.name: lightMode ? "Lomiri.Components.Themes.Ambiance" :
"Lomiri.Components.Themes.SuruDark"
// to be set from outside
property int orientationAngle: 0
property int orientation
property Orientations orientations
property real nativeWidth
property real nativeHeight
property alias panelAreaShowProgress: panel.panelAreaShowProgress
property string usageScenario: "phone" // supported values: "phone", "tablet" or "desktop"
property string mode: "full-greeter"
property alias oskEnabled: inputMethod.enabled
function updateFocusedAppOrientation() {
stage.updateFocusedAppOrientation();
}
function updateFocusedAppOrientationAnimated() {
stage.updateFocusedAppOrientationAnimated();
}
property bool hasMouse: false
property bool hasKeyboard: false
property bool hasTouchscreen: false
property bool supportsMultiColorLed: true
// The largest dimension, in pixels, of all of the screens this Shell is
// operating on.
// If a script sets the shell to 240x320 when it was 320x240, we could
// end up in a situation where our dimensions are 240x240 for a short time.
// Notifying the Wallpaper of both events would make it reload the image
// twice. So, we use a Binding { delayed: true }.
property real largestScreenDimension
Binding {
target: shell
restoreMode: Binding.RestoreBinding
delayed: true
property: "largestScreenDimension"
value: Math.max(nativeWidth, nativeHeight)
}
// Used by tests
property alias lightIndicators: indicatorsModel.light
// to be read from outside
readonly property int mainAppWindowOrientationAngle: stage.mainAppWindowOrientationAngle
readonly property bool orientationChangesEnabled: panel.indicators.fullyClosed
&& stage.orientationChangesEnabled
&& (!greeter.animating)
readonly property bool showingGreeter: greeter && greeter.shown
property bool startingUp: true
Timer { id: finishStartUpTimer; interval: 500; onTriggered: startingUp = false }
property int supportedOrientations: {
if (startingUp) {
// Ensure we don't rotate during start up
return Qt.PrimaryOrientation;
} else if (notifications.topmostIsFullscreen) {
return Qt.PrimaryOrientation;
} else {
return shell.orientations ? shell.orientations.map(stage.supportedOrientations) : Qt.PrimaryOrientation;
}
}
readonly property var mainApp: stage.mainApp
readonly property var topLevelSurfaceList: {
if (!WMScreen.currentWorkspace) return null;
return stage.temporarySelectedWorkspace ? stage.temporarySelectedWorkspace.windowModel : WMScreen.currentWorkspace.windowModel
}
onMainAppChanged: {
_onMainAppChanged((mainApp ? mainApp.appId : ""));
}
Connections {
target: ApplicationManager
function onFocusRequested(appId) {
if (shell.mainApp && shell.mainApp.appId === appId) {
_onMainAppChanged(appId);
}
}
}
// Calls attention back to the most important thing that's been focused
// (ex: phone calls go over Wizard, app focuses go over indicators, greeter
// goes over everything if it is locked)
// Must be called whenever app focus changes occur, even if the focus change
// is "nothing is focused". In that case, call with appId = ""
function _onMainAppChanged(appId) {
if (appId !== "") {
if (wizard.active) {
// If this happens on first boot, we may be in the
// wizard while receiving a call. A call is more
// important than the wizard so just bail out of it.
wizard.hide();
}
if (appId === "lomiri-dialer-app" && callManager.hasCalls && greeter.locked) {
// If we are in the middle of a call, make dialer lockedApp. The
// Greeter will show it when it's notified of the focus.
// This can happen if user backs out of dialer back to greeter, then
// launches dialer again.
greeter.lockedApp = appId;
}
panel.indicators.hide();
launcher.hide(launcher.ignoreHideIfMouseOverLauncher);
}
// *Always* make sure the greeter knows that the focused app changed
if (greeter) greeter.notifyAppFocusRequested(appId);
}
// For autopilot consumption
readonly property string focusedApplicationId: ApplicationManager.focusedApplicationId
// Note when greeter is waiting on PAM, so that we can disable edges until
// we know which user data to show and whether the session is locked.
readonly property bool waitingOnGreeter: greeter && greeter.waiting
// True when the user is logged in with no apps running
readonly property bool atDesktop: topLevelSurfaceList && greeter && topLevelSurfaceList.count === 0 && !greeter.active
onAtDesktopChanged: {
if (atDesktop && stage && !stage.workspaceEnabled) {
stage.closeSpread();
}
}
property real edgeSize: units.gu(settings.edgeDragWidth)
ImageResolver {
id: wallpaperResolver
objectName: "wallpaperResolver"
readonly property url defaultBackground: "file://" + Constants.defaultWallpaper
readonly property bool hasCustomBackground: resolvedImage != defaultBackground
readonly property string gsettingsBackgroundPictureUri: ((shell.showingGreeter == true)
|| (shell.mode === "full-greeter")
|| (shell.mode === "greeter"))
? backgroundGreeterSettings.backgroundPictureUri
: backgroundShellSettings.backgroundPictureUri
GSettings {
id: backgroundShellSettings
schema.id: "com.lomiri.Shell"
}
GSettings {
id: backgroundGreeterSettings
schema.id: "com.lomiri.Shell.Greeter"
}
candidates: [
AccountsService.backgroundFile,
gsettingsBackgroundPictureUri,
defaultBackground
]
}
readonly property alias greeter: greeterLoader.item
function activateApplication(appId) {
topLevelSurfaceList.pendingActivation();
// Either open the app in our own session, or -- if we're acting as a
// greeter -- ask the user's session to open it for us.
if (shell.mode === "greeter") {
activateURL("application:///" + appId + ".desktop");
} else {
startApp(appId);
}
stage.focus = true;
}
function activateURL(url) {
SessionBroadcast.requestUrlStart(AccountsService.user, url);
greeter.notifyUserRequestedApp();
panel.indicators.hide();
}
function startApp(appId) {
if (!ApplicationManager.findApplication(appId)) {
ApplicationManager.startApplication(appId);
}
ApplicationManager.requestFocusApplication(appId);
}
function startLockedApp(app) {
topLevelSurfaceList.pendingActivation();
if (greeter.locked) {
greeter.lockedApp = app;
}
startApp(app); // locked apps are always in our same session
}
Binding {
target: LauncherModel
restoreMode: Binding.RestoreBinding
property: "applicationManager"
value: ApplicationManager
}
Component.onCompleted: {
finishStartUpTimer.start();
}
VolumeControl {
id: volumeControl
}
PhysicalKeysMapper {
id: physicalKeysMapper
objectName: "physicalKeysMapper"
onPowerKeyLongPressed: dialogs.showPowerDialog();
onVolumeDownTriggered: volumeControl.volumeDown();
onVolumeUpTriggered: volumeControl.volumeUp();
onScreenshotTriggered: itemGrabber.capture(shell);
}
GlobalShortcut {
// dummy shortcut to force creation of GlobalShortcutRegistry before WindowInputFilter
}
WindowInputFilter {
id: inputFilter
Keys.onPressed: physicalKeysMapper.onKeyPressed(event, lastInputTimestamp);
Keys.onReleased: physicalKeysMapper.onKeyReleased(event, lastInputTimestamp);
}
WindowInputMonitor {
objectName: "windowInputMonitor"
onHomeKeyActivated: {
// Ignore when greeter is active, to avoid pocket presses
if (!greeter.active) {
launcher.toggleDrawer(/* focusInputField */ false,
/* onlyOpen */ false,
/* alsoToggleLauncher */ true);
}
}
onTouchBegun: { cursor.opacity = 0; }
onTouchEnded: {
// move the (hidden) cursor to the last known touch position
var mappedCoords = mapFromItem(null, pos.x, pos.y);
cursor.x = mappedCoords.x;
cursor.y = mappedCoords.y;
cursor.mouseNeverMoved = false;
}
}
AvailableDesktopArea {
id: availableDesktopAreaItem
anchors.fill: parent
anchors.topMargin: panel.fullscreenMode ? 0 : panel.minimizedPanelHeight
anchors.leftMargin: (launcher.lockedByUser && launcher.lockAllowed) ? launcher.panelWidth : 0
}
GSettings {
id: settings
schema.id: "com.lomiri.Shell"
}
PanelState {
id: panelState
objectName: "panelState"
}
Item {
id: stages
objectName: "stages"
width: parent.width
height: parent.height
Stage {
id: stage
objectName: "stage"
anchors.fill: parent
focus: true
lightMode: shell.lightMode
dragAreaWidth: shell.edgeSize
background: wallpaperResolver.resolvedImage
backgroundSourceSize: shell.largestScreenDimension
applicationManager: ApplicationManager
topLevelSurfaceList: shell.topLevelSurfaceList
inputMethodRect: inputMethod.visibleRect
rightEdgePushProgress: rightEdgeBarrier.progress
availableDesktopArea: availableDesktopAreaItem
launcherLeftMargin: launcher.visibleWidth
property string usageScenario: shell.usageScenario === "phone" || greeter.hasLockedApp
? "phone"
: shell.usageScenario
mode: usageScenario == "phone" ? "staged"
: usageScenario == "tablet" ? "stagedWithSideStage"
: "windowed"
shellOrientation: shell.orientation
shellOrientationAngle: shell.orientationAngle
orientations: shell.orientations
nativeWidth: shell.nativeWidth
nativeHeight: shell.nativeHeight
allowInteractivity: (!greeter || !greeter.shown)
&& panel.indicators.fullyClosed
&& !notifications.useModal
&& !launcher.takesFocus
suspended: greeter.shown
altTabPressed: physicalKeysMapper.altTabPressed
oskEnabled: shell.oskEnabled
spreadEnabled: tutorial.spreadEnabled && (!greeter || (!greeter.hasLockedApp && !greeter.shown))
panelState: panelState
onSpreadShownChanged: {
panel.indicators.hide();
panel.applicationMenus.hide();
}
}
TouchGestureArea {
anchors.fill: stage
minimumTouchPoints: 4
maximumTouchPoints: minimumTouchPoints
readonly property bool recognisedPress: status == TouchGestureArea.Recognized &&
touchPoints.length >= minimumTouchPoints &&
touchPoints.length <= maximumTouchPoints
property bool wasPressed: false
onRecognisedPressChanged: {
if (recognisedPress) {
wasPressed = true;
}
}
onStatusChanged: {
if (status !== TouchGestureArea.Recognized) {
if (status === TouchGestureArea.WaitingForTouch) {
if (wasPressed && !dragging) {
launcher.toggleDrawer(true);
}
}
wasPressed = false;
}
}
}
}
InputMethod {
id: inputMethod
objectName: "inputMethod"
anchors {
fill: parent
topMargin: panel.panelHeight
leftMargin: (launcher.lockedByUser && launcher.lockAllowed) ? launcher.panelWidth : 0
}
z: notifications.useModal || panel.indicators.shown || wizard.active || tutorial.running || launcher.drawerShown ? overlay.z + 1 : overlay.z - 1
}
Loader {
id: greeterLoader
objectName: "greeterLoader"
anchors.fill: parent
sourceComponent: {
if (shell.mode != "shell") {
if (screenWindow.primary) return integratedGreeter;
return secondaryGreeter;
}
return Qt.createComponent(Qt.resolvedUrl("Greeter/ShimGreeter.qml"));
}
onLoaded: {
item.objectName = "greeter"
}
property bool toggleDrawerAfterUnlock: false
Connections {
target: greeter
function onActiveChanged() {
if (greeter.active)
return
// Show drawer in case showHome() requests it
if (greeterLoader.toggleDrawerAfterUnlock) {
launcher.toggleDrawer(false);
greeterLoader.toggleDrawerAfterUnlock = false;
} else {
launcher.hide();
}
}
}
}
Component {
id: integratedGreeter
Greeter {
enabled: panel.indicators.fullyClosed // hides OSK when panel is open
hides: [launcher, panel.indicators, panel.applicationMenus]
tabletMode: shell.usageScenario != "phone"
usageMode: shell.usageScenario
orientation: shell.orientation
forcedUnlock: wizard.active || shell.mode === "full-shell"
background: wallpaperResolver.resolvedImage
backgroundSourceSize: shell.largestScreenDimension
hasCustomBackground: wallpaperResolver.hasCustomBackground
inputMethodRect: inputMethod.visibleRect
hasKeyboard: shell.hasKeyboard
allowFingerprint: !dialogs.hasActiveDialog &&
!notifications.topmostIsFullscreen &&
!panel.indicators.shown
panelHeight: panel.panelHeight
// avoid overlapping with Launcher's edge drag area
// FIXME: Fix TouchRegistry & friends and remove this workaround
// Issue involves launcher's DDA getting disabled on a long
// left-edge drag
dragHandleLeftMargin: launcher.available ? launcher.dragAreaWidth + 1 : 0
onTease: {
if (!tutorial.running) {
launcher.tease();
}
}
onEmergencyCall: startLockedApp("lomiri-dialer-app")
// Quit the greeter as soon as a session has been started
onSessionStarted: {
if (shell.mode == "greeter")
Qt.quit();
}
}
}
Component {
id: secondaryGreeter
SecondaryGreeter {
hides: [launcher, panel.indicators]
}
}
Timer {
// See powerConnection for why this is useful
id: showGreeterDelayed
interval: 1
onTriggered: {
// Go through the dbus service, because it has checks for whether
// we are even allowed to lock or not.
DBusLomiriSessionService.PromptLock();
}
}
Connections {
id: callConnection
target: callManager
function onHasCallsChanged() {
if (greeter.locked && callManager.hasCalls && greeter.lockedApp !== "lomiri-dialer-app") {
// We just received an incoming call while locked. The
// indicator will have already launched lomiri-dialer-app for
// us, but there is a race between "hasCalls" changing and the
// dialer starting up. So in case we lose that race, we'll
// start/focus the dialer ourselves here too. Even if the
// indicator didn't launch the dialer for some reason (or maybe
// a call started via some other means), if an active call is
// happening, we want to be in the dialer.
startLockedApp("lomiri-dialer-app")
}
}
}
Connections {
id: powerConnection
target: Powerd
function onStatusChanged(reason) {
if (Powerd.status === Powerd.Off && reason !== Powerd.Proximity &&
!callManager.hasCalls && !wizard.active) {
// We don't want to simply call greeter.showNow() here, because
// that will take too long. Qt will delay button event
// handling until the greeter is done loading and may think the
// user held down the power button the whole time, leading to a
// power dialog being shown. Instead, delay showing the
// greeter until we've finished handling the event. We could
// make the greeter load asynchronously instead, but that
// introduces a whole host of timing issues, especially with
// its animations. So this is simpler.
showGreeterDelayed.start();
}
}
}
function showHome() {
greeter.notifyUserRequestedApp();
if (shell.mode === "greeter") {
SessionBroadcast.requestHomeShown(AccountsService.user);
} else {
if (!greeter.active) {
launcher.toggleDrawer(false);
} else {
greeterLoader.toggleDrawerAfterUnlock = true;
}
}
}
Item {
id: overlay
z: 10
anchors.fill: parent
SwipeArea {
objectName: "fullscreenSwipeDown"
enabled: panel.state === "offscreen"
direction: SwipeArea.Downwards
immediateRecognition: false
height: units.gu(2)
anchors {
top: parent.top
left: parent.left
right: parent.right
}
onDraggingChanged: {
if (dragging) {
panel.temporarilyShow()
}
}
}
Panel {
id: panel
objectName: "panel"
anchors.fill: parent //because this draws indicator menus
blurSource: settings.enableBlur ? (greeter.shown ? greeter : stages) : null
lightMode: shell.lightMode
mode: shell.usageScenario == "desktop" ? "windowed" : "staged"
minimizedPanelHeight: units.gu(3)
expandedPanelHeight: units.gu(7)
applicationMenuContentX: launcher.lockedVisible ? launcher.panelWidth : 0
indicators {
hides: [launcher]
available: tutorial.panelEnabled
&& ((!greeter || !greeter.locked) || AccountsService.enableIndicatorsWhileLocked)
&& (!greeter || !greeter.hasLockedApp)
&& !shell.waitingOnGreeter
&& settings.enableIndicatorMenu
model: Indicators.IndicatorsModel {
id: indicatorsModel
// tablet and phone both use the same profile
// FIXME: use just "phone" for greeter too, but first fix
// greeter app launching to either load the app inside the
// greeter or tell the session to load the app. This will
// involve taking the url-dispatcher dbus name and using
// SessionBroadcast to tell the session.
profile: shell.mode === "greeter" ? "desktop_greeter" : "phone"
Component.onCompleted: {
load();
}
}
}
applicationMenus {
hides: [launcher]
available: (!greeter || !greeter.shown)
&& !shell.waitingOnGreeter
&& !stage.spreadShown
}
readonly property bool focusedSurfaceIsFullscreen: shell.topLevelSurfaceList.focusedWindow
? shell.topLevelSurfaceList.focusedWindow.state == Mir.FullscreenState
: false
fullscreenMode: (focusedSurfaceIsFullscreen && !LightDMService.greeter.active && launcher.progress == 0 && !stage.spreadShown)
|| greeter.hasLockedApp
greeterShown: greeter && greeter.shown
hasKeyboard: shell.hasKeyboard
panelState: panelState
supportsMultiColorLed: shell.supportsMultiColorLed
}
Launcher {
id: launcher
objectName: "launcher"
anchors.top: parent.top
anchors.topMargin: inverted ? 0 : panel.panelHeight
anchors.bottom: parent.bottom
width: parent.width
dragAreaWidth: shell.edgeSize
available: tutorial.launcherEnabled
&& (!greeter.locked || AccountsService.enableLauncherWhileLocked)
&& !greeter.hasLockedApp
&& !shell.waitingOnGreeter
&& shell.mode !== "greeter"
visible: shell.mode !== "greeter"
inverted: shell.usageScenario !== "desktop"
superPressed: physicalKeysMapper.superPressed
superTabPressed: physicalKeysMapper.superTabPressed
panelWidth: units.gu(settings.launcherWidth)
lockedVisible: (lockedByUser || shell.atDesktop) && lockAllowed
blurSource: settings.enableBlur ? (greeter.shown ? greeter : stages) : null
topPanelHeight: panel.panelHeight
lightMode: shell.lightMode
drawerEnabled: !greeter.active && tutorial.launcherLongSwipeEnabled
privateMode: greeter.active
background: wallpaperResolver.resolvedImage
// It can be assumed that the Launcher and Panel would overlap if
// the Panel is open and taking up the full width of the shell
readonly property bool collidingWithPanel: panel && (!panel.fullyClosed && !panel.partialWidth)
// The "autohideLauncher" setting is only valid in desktop mode
readonly property bool lockedByUser: (shell.usageScenario == "desktop" && !settings.autohideLauncher)
// The Launcher should absolutely not be locked visible under some
// conditions
readonly property bool lockAllowed: !collidingWithPanel && !panel.fullscreenMode && !wizard.active && !tutorial.demonstrateLauncher
onShowDashHome: showHome()
onLauncherApplicationSelected: {
greeter.notifyUserRequestedApp();
shell.activateApplication(appId);
}
onShownChanged: {
if (shown) {
panel.indicators.hide();
panel.applicationMenus.hide();
}
}
onDrawerShownChanged: {
if (drawerShown) {
panel.indicators.hide();
panel.applicationMenus.hide();
}
}
onFocusChanged: {
if (!focus) {
stage.focus = true;
}
}
GlobalShortcut {
shortcut: Qt.MetaModifier | Qt.Key_A
onTriggered: {
launcher.toggleDrawer(true);
}
}
GlobalShortcut {
shortcut: Qt.AltModifier | Qt.Key_F1
onTriggered: {
launcher.openForKeyboardNavigation();
}
}
GlobalShortcut {
shortcut: Qt.MetaModifier | Qt.Key_0
onTriggered: {
if (LauncherModel.get(9)) {
activateApplication(LauncherModel.get(9).appId);
}
}
}
Repeater {
model: 9
GlobalShortcut {
shortcut: Qt.MetaModifier | (Qt.Key_1 + index)
onTriggered: {
if (LauncherModel.get(index)) {
activateApplication(LauncherModel.get(index).appId);
}
}
}
}
}
KeyboardShortcutsOverlay {
objectName: "shortcutsOverlay"
enabled: launcher.shortcutHintsShown && width < parent.width - (launcher.lockedVisible ? launcher.panelWidth : 0) - padding
&& height < parent.height - padding - panel.panelHeight
anchors.centerIn: parent
anchors.horizontalCenterOffset: launcher.lockedVisible ? launcher.panelWidth/2 : 0
anchors.verticalCenterOffset: panel.panelHeight/2
visible: opacity > 0
opacity: enabled ? 0.95 : 0
Behavior on opacity {
LomiriNumberAnimation {}
}
}
Tutorial {
id: tutorial
objectName: "tutorial"
anchors.fill: parent
paused: callManager.hasCalls || !greeter || greeter.active || wizard.active
|| !hasTouchscreen // TODO #1661557 something better for no touchscreen
delayed: dialogs.hasActiveDialog || notifications.hasNotification ||
inputMethod.visible ||
(launcher.shown && !launcher.lockedVisible) ||
panel.indicators.shown || stage.rightEdgeDragProgress > 0
usageScenario: shell.usageScenario
lastInputTimestamp: inputFilter.lastInputTimestamp
launcher: launcher
panel: panel
stage: stage
}
Wizard {
id: wizard
objectName: "wizard"
anchors.fill: parent
deferred: shell.mode === "greeter"
function unlockWhenDoneWithWizard() {
if (!active && shell.mode !== "greeter") {
ModemConnectivity.unlockAllModems();
}
}
Component.onCompleted: unlockWhenDoneWithWizard()
onActiveChanged: unlockWhenDoneWithWizard()
}
MouseArea { // modal notifications prevent interacting with other contents
anchors.fill: parent
visible: notifications.useModal
enabled: visible
}
Notifications {
id: notifications
model: NotificationBackend.Model
margin: units.gu(1)
hasMouse: shell.hasMouse
background: wallpaperResolver.resolvedImage
privacyMode: greeter.locked && AccountsService.hideNotificationContentWhileLocked
y: topmostIsFullscreen ? 0 : panel.panelHeight
height: parent.height - (topmostIsFullscreen ? 0 : panel.panelHeight)
states: [
State {
name: "narrow"
when: overlay.width <= units.gu(60)
AnchorChanges {
target: notifications
anchors.left: parent.left
anchors.right: parent.right
}
},
State {
name: "wide"
when: overlay.width > units.gu(60)
AnchorChanges {
target: notifications
anchors.left: undefined
anchors.right: parent.right
}
PropertyChanges { target: notifications; width: units.gu(38) }
}
]
}
EdgeBarrier {
id: rightEdgeBarrier
enabled: !greeter.shown
// NB: it does its own positioning according to the specified edge
edge: Qt.RightEdge
onPassed: {
panel.indicators.hide()
}
material: Component {
Item {
Rectangle {
width: parent.height
height: parent.width
rotation: 90
anchors.centerIn: parent
gradient: Gradient {
GradientStop { position: 0.0; color: Qt.rgba(0.16,0.16,0.16,0.5)}
GradientStop { position: 1.0; color: Qt.rgba(0.16,0.16,0.16,0)}
}
}
}
}
}
}
Dialogs {
id: dialogs
objectName: "dialogs"
anchors.fill: parent
visible: hasActiveDialog
z: overlay.z + 10
usageScenario: shell.usageScenario
hasKeyboard: shell.hasKeyboard
onPowerOffClicked: {
shutdownFadeOutRectangle.enabled = true;
shutdownFadeOutRectangle.visible = true;
shutdownFadeOut.start();
}
}
Connections {
target: SessionBroadcast
function onShowHome() { if (shell.mode !== "greeter") showHome() }
}
URLDispatcher {
id: urlDispatcher
objectName: "urlDispatcher"
active: shell.mode === "greeter"
onUrlRequested: shell.activateURL(url)
}
ItemGrabber {
id: itemGrabber
anchors.fill: parent
z: dialogs.z + 10
GlobalShortcut { shortcut: Qt.Key_Print; onTriggered: itemGrabber.capture(shell) }
Connections {
target: stage
ignoreUnknownSignals: true
function onItemSnapshotRequested(item) { itemGrabber.capture(item) }
}
}
Timer {
id: cursorHidingTimer
interval: 3000
running: panel.focusedSurfaceIsFullscreen && cursor.opacity > 0
onTriggered: cursor.opacity = 0;
}
Cursor {
id: cursor
objectName: "cursor"
z: itemGrabber.z + 1
topBoundaryOffset: panel.panelHeight
enabled: shell.hasMouse && screenWindow.active
visible: enabled
property bool mouseNeverMoved: true
Binding {
target: cursor; property: "x"; value: shell.width / 2
restoreMode: Binding.RestoreBinding
when: cursor.mouseNeverMoved && cursor.visible
}
Binding {
target: cursor; property: "y"; value: shell.height / 2
restoreMode: Binding.RestoreBinding
when: cursor.mouseNeverMoved && cursor.visible
}
confiningItem: stage.itemConfiningMouseCursor
height: units.gu(3)
readonly property var previewRectangle: stage.previewRectangle.target &&
stage.previewRectangle.target.dragging ?
stage.previewRectangle : null
onPushedLeftBoundary: {
if (buttons === Qt.NoButton) {
launcher.pushEdge(amount);
} else if (buttons === Qt.LeftButton && previewRectangle && previewRectangle.target.canBeMaximizedLeftRight) {
previewRectangle.maximizeLeft(amount);
}
}
onPushedRightBoundary: {
if (buttons === Qt.NoButton) {
rightEdgeBarrier.push(amount);
} else if (buttons === Qt.LeftButton && previewRectangle && previewRectangle.target.canBeMaximizedLeftRight) {
previewRectangle.maximizeRight(amount);
}
}
onPushedTopBoundary: {
if (buttons === Qt.LeftButton && previewRectangle && previewRectangle.target.canBeMaximized) {
previewRectangle.maximize(amount);
}
}
onPushedTopLeftCorner: {
if (buttons === Qt.LeftButton && previewRectangle && previewRectangle.target.canBeCornerMaximized) {
previewRectangle.maximizeTopLeft(amount);
}
}
onPushedTopRightCorner: {
if (buttons === Qt.LeftButton && previewRectangle && previewRectangle.target.canBeCornerMaximized) {
previewRectangle.maximizeTopRight(amount);
}
}
onPushedBottomLeftCorner: {
if (buttons === Qt.LeftButton && previewRectangle && previewRectangle.target.canBeCornerMaximized) {
previewRectangle.maximizeBottomLeft(amount);
}
}
onPushedBottomRightCorner: {
if (buttons === Qt.LeftButton && previewRectangle && previewRectangle.target.canBeCornerMaximized) {
previewRectangle.maximizeBottomRight(amount);
}
}
onPushStopped: {
if (previewRectangle) {
previewRectangle.stop();
}
}
onMouseMoved: {
mouseNeverMoved = false;
cursor.opacity = 1;
}
Behavior on opacity { LomiriNumberAnimation {} }
}
// non-visual objects
KeymapSwitcher {
focusedSurface: shell.topLevelSurfaceList.focusedWindow ? shell.topLevelSurfaceList.focusedWindow.surface : null
}
BrightnessControl {}
Rectangle {
id: shutdownFadeOutRectangle
z: cursor.z + 1
enabled: false
visible: false
color: "black"
anchors.fill: parent
opacity: 0.0
NumberAnimation on opacity {
id: shutdownFadeOut
from: 0.0
to: 1.0
onStopped: {
if (shutdownFadeOutRectangle.enabled && shutdownFadeOutRectangle.visible) {
DBusLomiriSessionService.shutdown();
}
}
}
}
}
|