Warning, /maui/mauikit/src/controls.5/private/shapes/Triangle.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick 2.9
0002 import QtQuick.Controls 2.2
0003 import org.mauikit.controls 1.0 as Maui
0004 import QtQuick.Shapes 1.12
0005 
0006 Shape
0007 {
0008     id: control
0009 
0010     /**
0011       * color : color
0012       */
0013     property color color : Maui.Theme.backgroundColor
0014 
0015     ShapePath
0016     {
0017         capStyle: ShapePath.SquareCap
0018         fillColor: control.color
0019         strokeColor: "transparent"
0020         strokeStyle: ShapePath.SolidLine
0021         startX: 0; startY: 0
0022         PathLine { x: control.width; y: control.height }
0023         PathLine { x: 0; y: control.height }
0024         PathLine { x: 0; y: 0 }
0025     }
0026 }