2016-06-05 21:42:19 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2015 Aleix Pol Gonzalez <aleixpol@kde.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import QtQuick 2.2
|
2018-06-08 00:58:50 +01:00
|
|
|
import QtQuick.Controls 2.1
|
2016-06-05 21:42:19 +01:00
|
|
|
import QtQuick.Layouts 1.1
|
2018-11-02 19:53:18 +00:00
|
|
|
import QtQuick.Dialogs 1.0
|
2017-05-09 10:41:55 +01:00
|
|
|
import org.kde.kirigami 2.0 as Kirigami
|
2016-06-05 21:42:19 +01:00
|
|
|
import org.kde.kdeconnect 1.0
|
|
|
|
|
|
|
|
Kirigami.Page
|
|
|
|
{
|
|
|
|
id: deviceView
|
|
|
|
property QtObject currentDevice
|
|
|
|
title: currentDevice.name
|
|
|
|
|
2016-06-08 17:38:48 +01:00
|
|
|
actions.contextualActions: deviceLoader.item.actions
|
2018-06-08 19:22:54 +01:00
|
|
|
leftPadding: 0
|
|
|
|
rightPadding: 0
|
|
|
|
topPadding: 0
|
|
|
|
bottomPadding: 0
|
2016-06-08 17:38:48 +01:00
|
|
|
|
2016-06-05 21:42:19 +01:00
|
|
|
Loader {
|
2016-06-08 17:38:48 +01:00
|
|
|
id: deviceLoader
|
2016-06-05 21:42:19 +01:00
|
|
|
anchors.fill: parent
|
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
2018-06-09 23:36:02 +01:00
|
|
|
sourceComponent: deviceView.currentDevice.hasPairingRequests ? pairDevice : deviceView.currentDevice.isTrusted ? trustedDevice : untrustedDevice
|
2016-06-05 21:42:19 +01:00
|
|
|
Component {
|
|
|
|
id: trustedDevice
|
|
|
|
ColumnLayout {
|
2016-06-08 17:38:48 +01:00
|
|
|
property list<QtObject> actions: [
|
|
|
|
Kirigami.Action {
|
|
|
|
onTriggered: deviceView.currentDevice.unpair()
|
2016-08-21 16:54:15 +01:00
|
|
|
text: i18n("Unpair")
|
2016-06-08 17:38:48 +01:00
|
|
|
},
|
|
|
|
Kirigami.Action {
|
|
|
|
text: i18n("Send Ping")
|
|
|
|
onTriggered: {
|
|
|
|
deviceView.currentDevice.pluginCall("ping", "sendPing");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2016-06-05 21:42:19 +01:00
|
|
|
id: trustedView
|
2018-06-08 19:22:54 +01:00
|
|
|
spacing: 0
|
2016-06-05 21:42:19 +01:00
|
|
|
Layout.fillHeight: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
2016-08-21 12:05:43 +01:00
|
|
|
PluginItem {
|
2016-06-08 17:39:16 +01:00
|
|
|
label: i18n("Multimedia control")
|
2016-08-21 12:05:43 +01:00
|
|
|
interfaceFactory: MprisDbusInterfaceFactory
|
|
|
|
component: "qrc:/qml/mpris.qml"
|
|
|
|
pluginName: "mprisremote"
|
2016-06-05 21:42:19 +01:00
|
|
|
}
|
2016-08-21 12:05:43 +01:00
|
|
|
PluginItem {
|
2016-06-08 17:39:16 +01:00
|
|
|
label: i18n("Remote input")
|
2016-08-21 12:05:43 +01:00
|
|
|
interfaceFactory: RemoteControlDbusInterfaceFactory
|
|
|
|
component: "qrc:/qml/mousepad.qml"
|
|
|
|
pluginName: "remotecontrol"
|
2016-06-05 21:42:19 +01:00
|
|
|
}
|
2018-06-08 19:17:06 +01:00
|
|
|
PluginItem {
|
|
|
|
label: i18n("Presentation Remote")
|
|
|
|
interfaceFactory: RemoteKeyboardDbusInterfaceFactory
|
|
|
|
component: "qrc:/qml/presentationRemote.qml"
|
|
|
|
pluginName: "remotecontrol"
|
|
|
|
}
|
2016-08-21 12:05:43 +01:00
|
|
|
PluginItem {
|
|
|
|
readonly property var lockIface: LockDeviceDbusInterfaceFactory.create(deviceView.currentDevice.id())
|
|
|
|
pluginName: "lockdevice"
|
2016-06-05 21:42:19 +01:00
|
|
|
label: lockIface.isLocked ? i18n("Unlock") : i18n("Lock")
|
|
|
|
onClicked: {
|
|
|
|
lockIface.isLocked = !lockIface.isLocked;
|
|
|
|
}
|
|
|
|
}
|
2016-08-21 16:54:25 +01:00
|
|
|
PluginItem {
|
|
|
|
readonly property var findmyphoneIface: FindMyPhoneDbusInterfaceFactory.create(deviceView.currentDevice.id())
|
|
|
|
pluginName: "findmyphone"
|
|
|
|
label: i18n("Find Device")
|
|
|
|
onClicked: {
|
|
|
|
findmyphoneIface.ring()
|
|
|
|
}
|
|
|
|
}
|
2018-06-18 20:01:29 +01:00
|
|
|
PluginItem {
|
|
|
|
label: i18n("Run command")
|
|
|
|
interfaceFactory: RemoteCommandsDbusInterfaceFactory
|
|
|
|
component: "qrc:/qml/runcommand.qml"
|
|
|
|
pluginName: "remotecommands"
|
|
|
|
}
|
2018-11-02 19:53:18 +00:00
|
|
|
PluginItem {
|
|
|
|
readonly property var shareIface: ShareDbusInterfaceFactory.create(deviceView.currentDevice.id())
|
|
|
|
pluginName: "share"
|
|
|
|
label: i18n("Share File")
|
|
|
|
onClicked: {
|
|
|
|
fileDialog.open()
|
|
|
|
shareIface.shareUrl(fileDialog.fileUrl)
|
|
|
|
}
|
|
|
|
}
|
2018-11-07 19:54:00 +00:00
|
|
|
PluginItem {
|
|
|
|
label: i18n("Volume control")
|
|
|
|
interfaceFactory: RemoteSystemVolumeDbusInterfaceFactory
|
|
|
|
component: "qrc:/qml/volume.qml"
|
|
|
|
pluginName: "remotesystemvolume"
|
|
|
|
}
|
2016-06-05 21:42:19 +01:00
|
|
|
|
|
|
|
Item { Layout.fillHeight: true }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Component {
|
|
|
|
id: untrustedDevice
|
2016-06-08 17:38:48 +01:00
|
|
|
Item {
|
|
|
|
readonly property var actions: []
|
|
|
|
Button {
|
|
|
|
anchors.centerIn: parent
|
2016-06-05 21:42:19 +01:00
|
|
|
|
2016-06-08 17:38:48 +01:00
|
|
|
text: i18n("Pair")
|
2016-06-05 21:42:19 +01:00
|
|
|
onClicked: deviceView.currentDevice.requestPair()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-06-09 23:36:02 +01:00
|
|
|
Component {
|
|
|
|
id: pairDevice
|
|
|
|
Item {
|
|
|
|
readonly property var actions: []
|
|
|
|
RowLayout {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
Button {
|
|
|
|
text: i18n("Accept")
|
|
|
|
onClicked: deviceView.currentDevice.acceptPairing()
|
|
|
|
}
|
|
|
|
|
|
|
|
Button {
|
|
|
|
text: i18n("Reject")
|
|
|
|
onClicked: deviceView.currentDevice.rejectPairing()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-06-05 21:42:19 +01:00
|
|
|
}
|
2018-11-02 19:53:18 +00:00
|
|
|
|
|
|
|
FileDialog {
|
|
|
|
id: fileDialog
|
|
|
|
title: i18n("Please choose a file")
|
|
|
|
folder: shortcuts.home
|
|
|
|
}
|
2016-06-05 21:42:19 +01:00
|
|
|
}
|