mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
25 lines
625 B
QML
25 lines
625 B
QML
/*
|
|
* SPDX-FileCopyrightText: 2020 Marco Martin <mart@kde.org>
|
|
* SPDX-FileCopyrightText: 2021 Devin Lin <devin@kde.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick 2.12
|
|
import QtQuick.Window 2.2
|
|
|
|
pragma Singleton
|
|
|
|
QtObject {
|
|
id: delegate
|
|
|
|
signal resetHomeScreenPosition()
|
|
signal snapHomeScreenPosition()
|
|
signal requestRelativeScroll(point pos)
|
|
signal hideHomeScreen(bool animate)
|
|
signal showHomeScreen(bool animate)
|
|
property Item homeScreen
|
|
property QtObject homeScreenWindow
|
|
property bool homeScreenVisible: true
|
|
property bool taskSwitcherVisible: false
|
|
}
|