2014-06-18 01:35:48 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2014 Aleix Pol Gonzalez <aleixpol@kde.org>
|
2014-06-18 01:35:48 +01:00
|
|
|
*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
2014-06-18 01:35:48 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
import QtQuick 2.1
|
2014-09-01 16:49:18 +01:00
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
2014-06-18 01:35:48 +01:00
|
|
|
import org.kde.plasma.plasmoid 2.0
|
2018-01-09 15:33:02 +00:00
|
|
|
import org.kde.kquickcontrolsaddons 2.0
|
2014-09-09 16:54:16 +01:00
|
|
|
import org.kde.kdeconnect 1.0
|
2014-06-18 01:35:48 +01:00
|
|
|
|
|
|
|
Item
|
|
|
|
{
|
2015-03-12 23:56:25 +00:00
|
|
|
DevicesModel {
|
|
|
|
id: connectDeviceModel
|
2015-06-24 19:54:05 +01:00
|
|
|
displayFilter: DevicesModel.Paired | DevicesModel.Reachable
|
2019-06-22 11:12:48 +01:00
|
|
|
}
|
2015-03-12 23:56:25 +00:00
|
|
|
|
2019-06-22 11:12:48 +01:00
|
|
|
DevicesModel {
|
|
|
|
id: pairedDeviceModel
|
|
|
|
displayFilter: DevicesModel.Paired
|
2015-03-12 23:56:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Binding {
|
|
|
|
target: plasmoid
|
|
|
|
property: "status"
|
2019-09-19 17:39:45 +01:00
|
|
|
value: (connectDeviceModel.count > 0) ? PlasmaCore.Types.ActiveStatus : PlasmaCore.Types.PassiveStatus
|
2015-03-12 23:56:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Plasmoid.fullRepresentation: FullRepresentation {
|
|
|
|
devicesModel: connectDeviceModel
|
|
|
|
}
|
2014-06-18 01:35:48 +01:00
|
|
|
|
2019-01-02 17:26:21 +00:00
|
|
|
Plasmoid.compactRepresentation: CompactRepresentation {
|
|
|
|
}
|
|
|
|
|
2016-11-23 17:44:26 +00:00
|
|
|
readonly property bool isConstrained: (plasmoid.formFactor == PlasmaCore.Types.Vertical || plasmoid.formFactor == PlasmaCore.Types.Horizontal)
|
|
|
|
|
|
|
|
Plasmoid.preferredRepresentation: isConstrained ? Plasmoid.compactRepresentation : Plasmoid.fullRepresentation
|
2014-09-09 16:54:16 +01:00
|
|
|
|
|
|
|
function action_launchkcm() {
|
2022-05-12 02:59:56 +01:00
|
|
|
OpenConfig.openConfiguration()
|
2014-09-09 16:54:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Component.onCompleted: {
|
|
|
|
plasmoid.removeAction("configure");
|
2018-01-09 15:33:02 +00:00
|
|
|
if (KCMShell.authorize("kcm_kdeconnect.desktop").length > 0) {
|
|
|
|
plasmoid.setAction("launchkcm", i18n("KDE Connect Settings..."), "configure");
|
|
|
|
}
|
2014-09-09 16:54:16 +01:00
|
|
|
}
|
2014-06-18 01:35:48 +01:00
|
|
|
}
|