2022-09-28 14:03:48 +01:00
|
|
|
/**
|
|
|
|
* SPDX-FileCopyrightText: 2022 Kareem Abduljaleel <karemjaleel34@gmail.com>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
|
|
*/
|
|
|
|
|
|
|
|
import QtQuick 2.1
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
2023-06-08 14:24:00 +01:00
|
|
|
import org.kde.plasma.components 3.0 as PlasmaComponents
|
2022-09-28 14:03:48 +01:00
|
|
|
import org.kde.kdeconnect 1.0
|
|
|
|
|
|
|
|
QtObject {
|
|
|
|
|
|
|
|
id: root
|
|
|
|
|
|
|
|
property alias device: checker.device
|
|
|
|
readonly property alias available: checker.available
|
|
|
|
|
|
|
|
readonly property PluginChecker pluginChecker: PluginChecker {
|
|
|
|
id: checker
|
|
|
|
pluginName: "photo"
|
|
|
|
}
|
|
|
|
|
|
|
|
property variant plugin: available ? PhotoDbusInterfaceFactory.create(device.id()) : null
|
|
|
|
}
|
|
|
|
|