kdeconnect-kde/plasmoid/package/contents/ui/FindMyPhone.qml

39 lines
839 B
QML
Raw Normal View History

2015-09-11 21:48:45 +01:00
/**
* SPDX-FileCopyrightText: 2014 Samoilenko Yuri <kinnalru@gmail.com>
2015-09-11 21:48:45 +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
*/
import QtQuick
import org.kde.plasma.core as PlasmaCore
import org.kde.kdeconnect
2015-09-11 21:48:45 +01:00
QtObject {
id: root
property alias device: checker.device
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) {
findMyPhone = FindMyPhoneDbusInterfaceFactory.create(device.id())
2015-09-11 21:48:45 +01:00
} else {
findMyPhone = null
}
}
}