2016-06-05 21:42:19 +01:00
|
|
|
/*
|
2020-08-17 10:48:10 +01:00
|
|
|
* SPDX-FileCopyrightText: 2015 Aleix Pol Gonzalez <aleixpol@kde.org>
|
2016-06-05 21:42:19 +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
|
2016-06-05 21:42:19 +01:00
|
|
|
*/
|
|
|
|
|
2022-12-13 21:49:55 +00:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Controls 2.15 as QQC2
|
|
|
|
import QtQuick.Layouts 1.15
|
2018-11-02 19:53:18 +00:00
|
|
|
import QtQuick.Dialogs 1.0
|
2022-12-13 21:49:55 +00:00
|
|
|
import org.kde.kirigami 2.20 as Kirigami
|
2016-06-05 21:42:19 +01:00
|
|
|
import org.kde.kdeconnect 1.0
|
|
|
|
|
2022-12-13 21:49:55 +00:00
|
|
|
Kirigami.ScrollablePage {
|
2020-07-05 21:48:17 +01:00
|
|
|
id: root
|
2016-06-05 21:42:19 +01:00
|
|
|
property QtObject currentDevice
|
|
|
|
title: currentDevice.name
|
|
|
|
|
2020-07-05 21:48:17 +01:00
|
|
|
actions.contextualActions: [
|
|
|
|
Kirigami.Action {
|
|
|
|
iconName:"network-disconnect"
|
|
|
|
onTriggered: root.currentDevice.unpair()
|
|
|
|
text: i18nd("kdeconnect-app", "Unpair")
|
|
|
|
visible: root.currentDevice.isTrusted
|
|
|
|
},
|
|
|
|
Kirigami.Action {
|
|
|
|
iconName:"hands-free"
|
|
|
|
text: i18nd("kdeconnect-app", "Send Ping")
|
|
|
|
visible: root.currentDevice.isTrusted && root.currentDevice.isReachable
|
|
|
|
onTriggered: {
|
|
|
|
root.currentDevice.pluginCall("ping", "sendPing");
|
2018-11-26 21:56:26 +00:00
|
|
|
}
|
2019-10-27 17:08:51 +00:00
|
|
|
},
|
|
|
|
Kirigami.Action {
|
|
|
|
iconName: "settings-configure"
|
|
|
|
text: i18n("Plugin Settings")
|
|
|
|
visible: root.currentDevice.isTrusted && root.currentDevice.isReachable
|
|
|
|
onTriggered: {
|
|
|
|
pageStack.push(
|
|
|
|
Qt.resolvedUrl("PluginSettings.qml"),
|
|
|
|
{device: currentDevice.id()}
|
|
|
|
);
|
|
|
|
}
|
2018-11-26 21:56:26 +00:00
|
|
|
}
|
2020-07-05 21:48:17 +01:00
|
|
|
]
|
2018-11-26 21:56:26 +00:00
|
|
|
|
2020-07-05 21:48:17 +01:00
|
|
|
ListView {
|
|
|
|
model: plugins
|
|
|
|
delegate: Kirigami.BasicListItem {
|
|
|
|
label: name
|
|
|
|
icon: iconName
|
|
|
|
highlighted: false
|
|
|
|
iconColor: "transparent"
|
|
|
|
visible: loaded
|
|
|
|
onClicked: onClick()
|
|
|
|
}
|
2016-06-05 21:42:19 +01:00
|
|
|
|
2022-12-13 21:49:55 +00:00
|
|
|
property list<QtObject> plugins: [
|
2020-07-05 21:48:17 +01:00
|
|
|
PluginItem {
|
|
|
|
name: i18nd("kdeconnect-app", "Multimedia control")
|
|
|
|
interfaceFactory: MprisDbusInterfaceFactory
|
|
|
|
component: "qrc:/qml/mpris.qml"
|
|
|
|
pluginName: "mprisremote"
|
|
|
|
device: root.currentDevice
|
|
|
|
},
|
|
|
|
PluginItem {
|
|
|
|
name: i18nd("kdeconnect-app", "Remote input")
|
|
|
|
interfaceFactory: RemoteControlDbusInterfaceFactory
|
|
|
|
component: "qrc:/qml/mousepad.qml"
|
|
|
|
pluginName: "remotecontrol"
|
|
|
|
device: root.currentDevice
|
|
|
|
},
|
|
|
|
PluginItem {
|
|
|
|
name: i18nd("kdeconnect-app", "Presentation Remote")
|
|
|
|
interfaceFactory: RemoteKeyboardDbusInterfaceFactory
|
|
|
|
component: "qrc:/qml/presentationRemote.qml"
|
|
|
|
pluginName: "remotecontrol"
|
|
|
|
device: root.currentDevice
|
|
|
|
},
|
|
|
|
PluginItem {
|
|
|
|
readonly property var lockIface: LockDeviceDbusInterfaceFactory.create(root.currentDevice.id())
|
|
|
|
pluginName: "lockdevice"
|
|
|
|
name: lockIface.isLocked ? i18nd("kdeconnect-app", "Unlock") : i18nd("kdeconnect-app", "Lock")
|
|
|
|
onClick: () => lockIface.isLocked = !lockIface.isLocked;
|
|
|
|
device: root.currentDevice
|
|
|
|
},
|
|
|
|
PluginItem {
|
|
|
|
readonly property var findmyphoneIface: FindMyPhoneDbusInterfaceFactory.create(root.currentDevice.id())
|
|
|
|
pluginName: "findmyphone"
|
|
|
|
name: i18nd("kdeconnect-app", "Find Device")
|
|
|
|
onClick: () => findmyphoneIface.ring()
|
|
|
|
device: root.currentDevice
|
|
|
|
},
|
|
|
|
PluginItem {
|
|
|
|
name: i18nd("kdeconnect-app", "Run command")
|
|
|
|
interfaceFactory: RemoteCommandsDbusInterfaceFactory
|
|
|
|
component: "qrc:/qml/runcommand.qml"
|
|
|
|
pluginName: "remotecommands"
|
|
|
|
device: root.currentDevice
|
|
|
|
},
|
|
|
|
PluginItem {
|
|
|
|
pluginName: "share"
|
|
|
|
name: i18nd("kdeconnect-app", "Share File")
|
2020-07-08 19:09:35 +01:00
|
|
|
onClick: () => fileDialog.open()
|
2020-07-05 21:48:17 +01:00
|
|
|
device: root.currentDevice
|
|
|
|
},
|
|
|
|
PluginItem {
|
|
|
|
name: i18nd("kdeconnect-app", "Volume control")
|
|
|
|
interfaceFactory: RemoteSystemVolumeDbusInterfaceFactory
|
|
|
|
component: "qrc:/qml/volume.qml"
|
|
|
|
pluginName: "remotesystemvolume"
|
|
|
|
device: root.currentDevice
|
|
|
|
}
|
|
|
|
]
|
2019-02-13 17:16:41 +00:00
|
|
|
|
2020-07-05 21:48:17 +01:00
|
|
|
Kirigami.PlaceholderMessage {
|
|
|
|
text: i18nd("kdeconnect-app", "This device is not paired")
|
|
|
|
anchors.centerIn: parent
|
|
|
|
visible: root.currentDevice.isReachable && !root.currentDevice.isTrusted && !root.currentDevice.hasPairingRequests
|
|
|
|
helpfulAction: Kirigami.Action {
|
|
|
|
text: i18nd("kdeconnect-app", "Pair")
|
|
|
|
icon.name:"network-connect"
|
|
|
|
onTriggered: root.currentDevice.requestPair()
|
2016-06-05 21:42:19 +01:00
|
|
|
}
|
|
|
|
}
|
2020-07-05 19:00:29 +01:00
|
|
|
|
2022-12-13 21:49:55 +00:00
|
|
|
Kirigami.PlaceholderMessage {
|
|
|
|
text: i18n("Pair requested")
|
|
|
|
visible: root.currentDevice && root.currentDevice.hasPairingRequests
|
2020-07-05 21:48:17 +01:00
|
|
|
anchors.centerIn: parent
|
2020-07-17 00:31:16 +01:00
|
|
|
spacing: Kirigami.Units.largeSpacing
|
|
|
|
RowLayout {
|
2022-12-13 21:49:55 +00:00
|
|
|
QQC2.Button {
|
2020-07-17 00:31:16 +01:00
|
|
|
text: i18nd("kdeconnect-app", "Accept")
|
|
|
|
icon.name:"dialog-ok"
|
|
|
|
onClicked: root.currentDevice.acceptPairing()
|
|
|
|
}
|
|
|
|
|
2022-12-13 21:49:55 +00:00
|
|
|
QQC2.Button {
|
2020-07-17 00:31:16 +01:00
|
|
|
text: i18nd("kdeconnect-app", "Reject")
|
|
|
|
icon.name:"dialog-cancel"
|
|
|
|
onClicked: root.currentDevice.rejectPairing()
|
|
|
|
}
|
2018-06-09 23:36:02 +01:00
|
|
|
}
|
|
|
|
}
|
2018-11-26 21:56:26 +00:00
|
|
|
|
2020-07-05 21:48:17 +01:00
|
|
|
Kirigami.PlaceholderMessage {
|
|
|
|
visible: !root.currentDevice.isReachable
|
|
|
|
text: i18nd("kdeconnect-app", "This device is not reachable")
|
|
|
|
anchors.centerIn: parent
|
2018-11-26 21:56:26 +00:00
|
|
|
}
|
2016-06-05 21:42:19 +01:00
|
|
|
}
|
2018-11-02 19:53:18 +00:00
|
|
|
|
|
|
|
FileDialog {
|
|
|
|
id: fileDialog
|
2020-07-08 19:09:35 +01:00
|
|
|
readonly property var shareIface: ShareDbusInterfaceFactory.create(root.currentDevice.id())
|
2019-12-21 07:59:36 +00:00
|
|
|
title: i18nd("kdeconnect-app", "Please choose a file")
|
2018-11-02 19:53:18 +00:00
|
|
|
folder: shortcuts.home
|
2020-07-08 19:09:35 +01:00
|
|
|
onAccepted: shareIface.shareUrl(fileDialog.fileUrl)
|
2018-11-02 19:53:18 +00:00
|
|
|
}
|
2016-06-05 21:42:19 +01:00
|
|
|
}
|