Warning, /plasma/latte-dock/shell/package/contents/configuration/canvas/controls/RearrangeIcon.qml is written in an unsupported language. File is not indexed.
0001 /* 0002 SPDX-FileCopyrightText: 2019 Michail Vourlakos <mvourlakos@gmail.com> 0003 SPDX-License-Identifier: GPL-2.0-or-later 0004 */ 0005 0006 import QtQuick 2.7 0007 0008 GraphicIcon{ 0009 readonly property int itemLength: 0.22*width 0010 0011 Rectangle { 0012 anchors.fill: parent 0013 anchors.margins: 2 0014 color: "transparent" 0015 0016 Rectangle{ 0017 anchors.top: parent.top 0018 anchors.left: parent.left 0019 width: itemLength 0020 height: parent.height 0021 radius: width/2 0022 color: iconColor 0023 } 0024 0025 Rectangle{ 0026 anchors.top: parent.top 0027 anchors.horizontalCenter: parent.horizontalCenter 0028 width: itemLength 0029 height: parent.height 0030 radius: width/2 0031 color: iconColor 0032 } 0033 0034 Rectangle{ 0035 anchors.top: parent.top 0036 anchors.right: parent.right 0037 width: itemLength 0038 height: parent.height 0039 radius: width/2 0040 color: iconColor 0041 } 0042 } 0043 }