You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.2 KiB
QML
48 lines
1.2 KiB
QML
/*
|
|
SPDX-FileCopyrightText: 2021 Michail Vourlakos <mvourlakos@gmail.com>
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick 2.7
|
|
|
|
import "./indicators" as IndicatorTypes
|
|
|
|
Item{
|
|
property bool isEnabled: false
|
|
|
|
readonly property real padding: Math.max(info.minLengthPadding, info.lengthPadding)
|
|
|
|
property string type: "org.kde.latte.default"
|
|
|
|
property QtObject configuration: null
|
|
property QtObject resources: null
|
|
|
|
property Component indicatorComponent
|
|
|
|
property IndicatorTypes.IndicatorInfo info: IndicatorTypes.IndicatorInfo{
|
|
enabledForApplets: true
|
|
needsIconColors: false
|
|
needsMouseEventCoordinates: false
|
|
|
|
providesFrontLayer: false
|
|
providesHoveredAnimation: false
|
|
providesClickedAnimation: false
|
|
providesTaskLauncherAnimation: false
|
|
providesInAttentionAnimation: false
|
|
providesGroupedWindowAddedAnimation: false
|
|
providesGroupedWindowRemovedAnimation: false
|
|
|
|
extraMaskThickness: 0
|
|
|
|
minThicknessPadding: 0
|
|
minLengthPadding: 0
|
|
|
|
backgroundCornerMargin: 1.00
|
|
lengthPadding: 0.08
|
|
appletLengthPadding: -1
|
|
|
|
svgPaths: []
|
|
}
|
|
}
|
|
|