Plasma
8 import QtQuick.Templates @QQC2_VERSION@ as T
9 import org.kde.plasma.core 2.0 as PlasmaCore
14 implicitWidth: Math.max(background ? background.implicitWidth : 0,
15 contentWidth > 0 ? contentWidth + leftPadding + rightPadding : 0)
16 implicitHeight: Math.max(background ? background.implicitHeight : 0,
17 contentWidth > 0 ? contentHeight + topPadding + bottomPadding : 0)
19 contentWidth: contentItem.implicitWidth || (contentChildren.length === 1 ? contentChildren[0].implicitWidth : 0)
20 contentHeight: contentItem.implicitHeight || (contentChildren.length === 1 ? contentChildren[0].implicitHeight : 0)
22 leftPadding: background.margins.left
23 topPadding: background.margins.top
24 rightPadding: background.margins.right
25 bottomPadding: background.margins.bottom
32 easing.type: Easing.InOutQuad
33 duration: PlasmaCore.Units.longDuration
42 easing.type: Easing.InOutQuad
43 duration: PlasmaCore.Units.longDuration
49 background: PlasmaCore.FrameSvgItem {
50 implicitWidth: PlasmaCore.Units.gridUnit * 12
51 imagePath:
"widgets/background"
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Tue Sep 26 2023 04:05:57 by
doxygen 1.8.17 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.