Warning, /plasma/latte-dock/declarativeimports/abilities/definition/MyView.qml is written in an unsupported language. File is not indexed.
0001 /*
0002 SPDX-FileCopyrightText: 2021 Michail Vourlakos <mvourlakos@gmail.com>
0003 SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005
0006 import QtQuick 2.0
0007
0008 import org.kde.plasma.plasmoid 2.0
0009
0010 import org.kde.latte.core 0.2 as LatteCore
0011
0012 import "./myview" as MyViewTypes
0013
0014 Item {
0015 property int groupId: -1
0016
0017 property bool isReady: false
0018
0019 property bool inNormalState: true
0020
0021 property bool isHidden: false
0022 property bool isShownPartially: false
0023 property bool isShownFully: false
0024
0025 property bool isHidingBlocked: false
0026
0027 property bool inEditMode: false
0028 property bool inConfigureAppletsMode: false
0029
0030 property bool inSlidingIn: false
0031 property bool inSlidingOut: false
0032 property bool inRelocationAnimation: false
0033 property bool inRelocationHiding: false
0034
0035 property bool badgesIn3DStyle: true
0036
0037 property int alignment: LatteCore.Types.Center
0038 property int visibilityMode: LatteCore.Types.None
0039
0040 property real backgroundOpacity: 1.0
0041
0042 property string lastUsedActivity: ""
0043
0044 property rect appletsLayoutGeometry: Qt.rect(-1, -1, 0, 0)
0045 property rect screenGeometry: Qt.rect(0, 0, 1600, 1080)
0046
0047 property var containmentActions: []
0048
0049 property QtObject palette: theme
0050
0051 property MyViewTypes.ItemShadow itemShadow: MyViewTypes.ItemShadow {
0052 isEnabled: true
0053 size: 6
0054 shadowColor: "#ff080808"
0055 shadowSolidColor: "#ff080808"
0056 }
0057
0058 //function inCurrentLayout();
0059 }