Warning, /plasma/latte-dock/declarativeimports/abilities/client/Debug.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2020 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.latte.abilities.definition 0.1 as AbilityDefinition
0009 
0010 AbilityDefinition.Debug {
0011     property Item bridge: null
0012 
0013     eventsSinkEnabled: ref.debug.eventsSinkEnabled
0014     graphicsEnabled: ref.debug.graphicsEnabled
0015     inputMaskEnabled: ref.debug.inputMaskEnabled
0016     layouterEnabled: ref.debug.layouterEnabled
0017     localGeometryEnabled: ref.debug.localGeometryEnabled
0018     maskEnabled: ref.debug.maskEnabled
0019     overloadedIconsEnabled: ref.debug.overloadedIconsEnabled
0020     spacersEnabled: ref.debug.spacersEnabled
0021     timersEnabled: ref.debug.timersEnabled
0022     windowEnabled: ref.debug.windowEnabled
0023 
0024     readonly property AbilityDefinition.Debug local: AbilityDefinition.Debug {}
0025 
0026     Item {
0027         id: ref
0028         readonly property Item debug: bridge ? bridge.debug : local
0029     }
0030 }