Warning, /plasma/plasma-mobile/components/mobileshell/qml/actiondrawer/quicksettings/Handle.qml is written in an unsupported language. File is not indexed.
0001 /* 0002 * SPDX-FileCopyrightText: 2021 Devin Lin <devin@kde.org> 0003 * 0004 * SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 import QtQuick 2.15 0008 0009 import org.kde.kirigami 2.20 as Kirigami 0010 0011 Rectangle { 0012 id: handle 0013 0014 signal tapped() 0015 0016 implicitWidth: Kirigami.Units.gridUnit * 3 0017 implicitHeight: 3 0018 radius: height 0019 color: Kirigami.Theme.textColor 0020 opacity: 0.5 0021 0022 TapHandler { 0023 cursorShape: pressed ? Qt.ClosedHandCursor : Qt.PointingHandCursor 0024 onTapped: handle.tapped() 0025 } 0026 }