2024-09-03 23:36:25 +01:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2014-2015 Frederic St-Pierre <me@fredericstpierre.com>
|
2023-11-30 23:41:36 +00:00
|
|
|
|
2024-09-03 23:36:25 +01:00
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
|
|
*/
|
2023-11-30 23:41:36 +00:00
|
|
|
|
|
|
|
import QtQuick
|
2024-09-03 23:36:25 +01:00
|
|
|
import QtQuick.Layouts
|
2023-11-30 23:41:36 +00:00
|
|
|
import org.kde.kirigami as Kirigami
|
|
|
|
|
|
|
|
DropArea {
|
2024-09-03 23:36:25 +01:00
|
|
|
onEntered: {
|
2023-11-30 23:41:36 +00:00
|
|
|
if (drag.hasUrls) {
|
2024-09-03 23:36:25 +01:00
|
|
|
root.expanded = true;
|
2023-11-30 23:41:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MouseArea {
|
2024-09-03 23:36:25 +01:00
|
|
|
id: kdeConnectMouseArea
|
2023-11-30 23:41:36 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
|
2024-09-03 23:36:25 +01:00
|
|
|
onClicked: {
|
|
|
|
root.expanded = !root.expanded;
|
2023-11-30 23:41:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Kirigami.Icon {
|
2024-09-03 23:36:25 +01:00
|
|
|
id: kdeConnectIcon
|
2023-11-30 23:41:36 +00:00
|
|
|
anchors.fill: parent
|
2024-09-03 23:36:25 +01:00
|
|
|
source: plasmoid.icon
|
2023-11-30 23:41:36 +00:00
|
|
|
}
|
|
|
|
}
|