mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
88 lines
2.4 KiB
QML
88 lines
2.4 KiB
QML
|
|
// SPDX-FileCopyrightText: 2022 Devin Lin <devin@kde.org>
|
||
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
|
||
|
|
import QtQuick 2.15
|
||
|
|
import QtQuick.Window 2.15
|
||
|
|
|
||
|
|
pragma Singleton
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Provides access to common functions within the shell. Only available within the plasmashell process.
|
||
|
|
*/
|
||
|
|
QtObject {
|
||
|
|
id: delegate
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Top margin from the screen edge where application windows would display.
|
||
|
|
*/
|
||
|
|
readonly property real topMargin: TopPanelControls.panelHeight
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Bottom margin from the screen edge where application windows would display.
|
||
|
|
*/
|
||
|
|
readonly property real bottomMargin: TaskPanelControls.isPortrait ? TaskPanelControls.panelHeight : 0
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Left margin from the screen edge where application windows would display.
|
||
|
|
*/
|
||
|
|
readonly property real leftMargin: 0
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Right margin from the screen edge where application windows would display.
|
||
|
|
*/
|
||
|
|
readonly property real rightMargin: !TaskPanelControls.isPortrait ? TaskPanelControls.panelWidth : 0
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Orientation of the mobile device.
|
||
|
|
*/
|
||
|
|
readonly property int orientation: TaskPanelControls.isPortrait ? Shell.Portrait : Shell.Landscape
|
||
|
|
|
||
|
|
enum Orientation {
|
||
|
|
Landscape,
|
||
|
|
Portrait
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Whether the task switcher is open.
|
||
|
|
*/
|
||
|
|
readonly property bool taskSwitcherVisible: HomeScreenControls.taskSwitcherVisible
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Whether the homescreen is currently visible.
|
||
|
|
*/
|
||
|
|
readonly property bool homeScreenVisible: HomeScreenControls.homeScreenVisible
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Whether the action drawer is currently open.
|
||
|
|
*/
|
||
|
|
readonly property bool actionDrawerVisible: TopPanelControls.actionDrawerVisible
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Open the app launch screen with animation parameters.
|
||
|
|
*/
|
||
|
|
function openAppLaunchAnimation(splashIcon: string, title: string, x: real, y: real, sourceIconSize: real) {
|
||
|
|
HomeScreenControls.openAppLaunchAnimation(splashIcon, title, x, y, sourceIconSize);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Close the app launch screen.
|
||
|
|
*/
|
||
|
|
function closeAppLaunchAnimation() {
|
||
|
|
HomeScreenControls.closeAppLaunchAnimation();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Open the action drawer.
|
||
|
|
*/
|
||
|
|
function openActionDrawer() {
|
||
|
|
TopPanelControls.openActionDrawer();
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Close the action drawer, if it is open.
|
||
|
|
*/
|
||
|
|
function closeActionDrawer() {
|
||
|
|
TopPanelControls.closeActionDrawer();
|
||
|
|
}
|
||
|
|
}
|