41 lines
1.1 KiB
QML
41 lines
1.1 KiB
QML
/*
|
|
SPDX-FileCopyrightText: 2014-2015 Frederic St-Pierre <me@fredericstpierre.com>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
|
|
import QtQuick 2.1
|
|
import QtQuick.Layouts 1.1
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
import org.kde.plasma.components 3.0 as PlasmaComponents3
|
|
|
|
DropArea {
|
|
readonly property bool inPanel: (plasmoid.location == PlasmaCore.Types.TopEdge
|
|
|| plasmoid.location == PlasmaCore.Types.RightEdge
|
|
|| plasmoid.location == PlasmaCore.Types.BottomEdge
|
|
|| plasmoid.location == PlasmaCore.Types.LeftEdge)
|
|
|
|
Layout.maximumWidth: inPanel ? units.iconSizeHints.panel : -1
|
|
Layout.maximumHeight: inPanel ? units.iconSizeHints.panel : -1
|
|
|
|
onEntered: {
|
|
if (drag.hasUrls) {
|
|
plasmoid.expanded = true;
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
id: kdeConnectMouseArea
|
|
anchors.fill: parent
|
|
|
|
onClicked: {
|
|
plasmoid.expanded = !plasmoid.expanded;
|
|
}
|
|
}
|
|
|
|
PlasmaCore.IconItem {
|
|
id: kdeConnectIcon
|
|
anchors.fill: parent
|
|
source: plasmoid.icon
|
|
}
|
|
}
|