2015-09-11 21:48:45 +01:00
|
|
|
/**
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2014 Samoilenko Yuri <kinnalru@gmail.com>
|
2015-09-11 21:48:45 +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
|
2015-09-11 21:48:45 +01:00
|
|
|
*/
|
|
|
|
|
2023-11-30 23:41:36 +00:00
|
|
|
import QtQuick
|
|
|
|
import org.kde.plasma.core as PlasmaCore
|
|
|
|
import org.kde.kdeconnect
|
2015-09-11 21:48:45 +01:00
|
|
|
|
|
|
|
QtObject {
|
|
|
|
|
|
|
|
id: root
|
|
|
|
|
2016-08-21 17:57:27 +01:00
|
|
|
property alias device: checker.device
|
2016-04-06 01:55:50 +01:00
|
|
|
readonly property alias available: checker.available
|
|
|
|
|
|
|
|
readonly property PluginChecker pluginChecker: PluginChecker {
|
|
|
|
id: checker
|
|
|
|
pluginName: "findmyphone"
|
|
|
|
}
|
2015-09-11 21:48:45 +01:00
|
|
|
|
|
|
|
property variant findMyPhone: null
|
|
|
|
|
|
|
|
function ring() {
|
|
|
|
if (findMyPhone) {
|
|
|
|
findMyPhone.ring();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onAvailableChanged: {
|
|
|
|
if (available) {
|
2016-08-21 17:57:27 +01:00
|
|
|
findMyPhone = FindMyPhoneDbusInterfaceFactory.create(device.id())
|
2015-09-11 21:48:45 +01:00
|
|
|
} else {
|
|
|
|
findMyPhone = null
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|