Warning, /network/kdeconnect-kde/plasmoid/package/contents/ui/CompactRepresentation.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2014-2015 Frederic St-Pierre <me@fredericstpierre.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 import QtQuick
0008 import QtQuick.Layouts
0009 import org.kde.kirigami as Kirigami
0010 
0011 DropArea {
0012     onEntered: {
0013         if (drag.hasUrls) {
0014             root.expanded = true;
0015         }
0016     }
0017 
0018     MouseArea {
0019         id: kdeConnectMouseArea
0020         anchors.fill: parent
0021 
0022         onClicked: {
0023             root.expanded = !root.expanded;
0024         }
0025     }
0026 
0027     Kirigami.Icon {
0028         id: kdeConnectIcon
0029         anchors.fill: parent
0030         source: plasmoid.icon
0031     }
0032 }