2020-07-22 14:13:20 +00:00
|
|
|
/*
|
2021-03-01 20:03:25 +00:00
|
|
|
* SPDX-FileCopyrightText: 2020 Marco Martin <mart@kde.org>
|
2020-07-22 14:13:20 +00:00
|
|
|
*
|
2021-03-01 20:03:25 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
2020-07-22 14:13:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import QtQuick 2.12
|
|
|
|
|
import QtQuick.Window 2.2
|
|
|
|
|
|
|
|
|
|
pragma Singleton
|
|
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
|
id: delegate
|
|
|
|
|
|
|
|
|
|
signal resetHomeScreenPosition()
|
2020-07-23 15:09:37 +00:00
|
|
|
signal snapHomeScreenPosition()
|
|
|
|
|
signal requestHomeScreenPosition(real y)
|
|
|
|
|
property real homeScreenPosition: 0
|
2020-07-22 14:13:20 +00:00
|
|
|
property Item homeScreen
|
2020-07-22 15:17:10 +00:00
|
|
|
property QtObject homeScreenWindow
|
|
|
|
|
property bool homeScreenVisible: true
|
2020-07-30 15:20:07 +00:00
|
|
|
property bool taskSwitcherVisible: false
|
2020-07-22 14:13:20 +00:00
|
|
|
}
|