3import org.mauikit.controls as Maui
13 property color color : Maui.Theme.backgroundColor
18 property color borderColor: Maui.Theme.backgroundColor
23 property int borderWidth: 1
28 property bool solidBorder : true
36 joinStyle: ShapePath.RoundJoin
37 capStyle: ShapePath.RoundCap
38 strokeWidth: _shape.borderWidth
39 strokeColor: _shape.borderColor
40 fillColor: _shape.color
41 strokeStyle: _shape.solidBorder ? ShapePath.SolidLine : ShapePath.DashLine
44 PathLine { x: _shape.width-_path.startX; y: _path.startY }
45 PathLine { x: _shape.width- _path.startX; y: _shape.height-_path.startY; }
46 PathLine { x: _path.startX; y: _shape.height - _path.startY}
47 PathLine { x: _path.startX; y: _path.startY }
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Nov 29 2024 11:46:39 by
doxygen 1.12.0 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.