Warning, /plasma/latte-dock/declarativeimports/abilities/definition/Indicators.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.7
0007 
0008 import "./indicators" as IndicatorTypes
0009 
0010 Item{
0011     property bool isEnabled: false
0012 
0013     readonly property real padding: Math.max(info.minLengthPadding, info.lengthPadding)
0014 
0015     property string type: "org.kde.latte.default"
0016 
0017     property QtObject configuration: null
0018     property QtObject resources: null   
0019 
0020     property Component indicatorComponent
0021 
0022     property IndicatorTypes.IndicatorInfo info: IndicatorTypes.IndicatorInfo{
0023         enabledForApplets: true
0024         needsIconColors: false
0025         needsMouseEventCoordinates: false
0026 
0027         providesFrontLayer: false
0028         providesHoveredAnimation: false
0029         providesClickedAnimation: false
0030         providesTaskLauncherAnimation: false
0031         providesInAttentionAnimation: false
0032         providesGroupedWindowAddedAnimation: false
0033         providesGroupedWindowRemovedAnimation: false
0034 
0035         extraMaskThickness: 0
0036 
0037         minThicknessPadding: 0
0038         minLengthPadding: 0
0039 
0040         backgroundCornerMargin: 1.00
0041         lengthPadding: 0.08
0042         appletLengthPadding: -1
0043 
0044         svgPaths: []
0045     }
0046 }
0047