2013-08-22 02:21:08 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2013 Albert Vaca <albertvaka@gmail.com>
|
2013-08-21 17:28:11 +01:00
|
|
|
*
|
2013-08-22 02:21:08 +01:00
|
|
|
* 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.
|
2013-08-21 17:28:11 +01:00
|
|
|
*
|
2013-08-22 02:21:08 +01:00
|
|
|
* 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.
|
2013-08-21 17:28:11 +01:00
|
|
|
*
|
2013-08-22 02:21:08 +01:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2013-08-21 17:28:11 +01:00
|
|
|
*/
|
|
|
|
|
2014-06-18 01:35:48 +01:00
|
|
|
import QtQuick 2.1
|
2015-09-25 10:04:24 +01:00
|
|
|
import QtQuick.Layouts 1.1
|
2014-06-18 01:35:48 +01:00
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
2018-11-09 18:06:35 +00:00
|
|
|
import org.kde.plasma.components 3.0 as PlasmaComponents3
|
2013-08-22 02:21:08 +01:00
|
|
|
import org.kde.kdeconnect 1.0
|
2018-10-31 19:58:52 +00:00
|
|
|
import QtQuick.Dialogs 1.0
|
2018-11-08 01:01:51 +00:00
|
|
|
import QtQuick.Controls 2.4
|
2013-08-21 17:28:11 +01:00
|
|
|
|
2013-08-22 02:21:08 +01:00
|
|
|
PlasmaComponents.ListItem
|
|
|
|
{
|
|
|
|
id: root
|
2016-08-21 17:57:27 +01:00
|
|
|
readonly property QtObject device: DeviceDbusInterfaceFactory.create(model.deviceId)
|
2014-01-29 05:16:23 +00:00
|
|
|
|
2019-01-02 17:26:21 +00:00
|
|
|
DropArea {
|
|
|
|
id: fileDropArea
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
onDropped: {
|
|
|
|
if (drop.hasUrls) {
|
|
|
|
|
|
|
|
var urls = [];
|
|
|
|
|
|
|
|
for (var v in drop.urls) {
|
|
|
|
if (drop.urls[v] != null) {
|
|
|
|
if (urls.indexOf(drop.urls[v].toString()) == -1) {
|
|
|
|
urls.push(drop.urls[v].toString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var i;
|
|
|
|
for (i = 0; i < urls.length; i++) {
|
|
|
|
share.plugin.shareUrl(urls[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
drop.accepted = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaCore.ToolTipArea {
|
|
|
|
id: dropAreaToolTip
|
|
|
|
anchors.fill: parent
|
|
|
|
location: plasmoid.location
|
|
|
|
active: true
|
|
|
|
mainText: i18n("File Transfer")
|
|
|
|
subText: i18n("Drop a file to transfer it onto your phone.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-22 02:21:08 +01:00
|
|
|
Column {
|
|
|
|
width: parent.width
|
2018-05-09 00:15:03 +01:00
|
|
|
|
2015-09-11 16:51:50 +01:00
|
|
|
RowLayout
|
2014-01-27 16:52:29 +00:00
|
|
|
{
|
2015-09-11 16:51:50 +01:00
|
|
|
Item {
|
|
|
|
//spacer to make the label centre aligned in a row yet still elide and everything
|
2018-11-02 14:47:52 +00:00
|
|
|
implicitWidth: (ring.visible? ring.width : 0) + (browse.visible? browse.width : 0) + (shareFile.visible? shareFile.width : 0) + parent.spacing
|
2015-09-11 16:51:50 +01:00
|
|
|
}
|
|
|
|
|
2017-07-26 23:40:47 +01:00
|
|
|
Battery {
|
|
|
|
id: battery
|
|
|
|
device: root.device
|
|
|
|
}
|
2018-05-09 00:15:03 +01:00
|
|
|
|
2014-01-27 16:52:29 +00:00
|
|
|
PlasmaComponents.Label {
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
2015-09-11 16:51:50 +01:00
|
|
|
elide: Text.ElideRight
|
2018-11-26 14:50:44 +00:00
|
|
|
text: (battery.available && battery.charge > -1) ? i18n("%1 (%2)", display, battery.displayString) : display
|
2015-09-11 16:51:50 +01:00
|
|
|
Layout.fillWidth: true
|
2017-07-12 09:51:09 +01:00
|
|
|
textFormat: Text.PlainText
|
2015-09-11 16:51:50 +01:00
|
|
|
}
|
|
|
|
|
2018-10-31 19:58:52 +00:00
|
|
|
//Share
|
|
|
|
PlasmaComponents.Button
|
|
|
|
{
|
|
|
|
FileDialog {
|
|
|
|
id: fileDialog
|
|
|
|
title: "Please choose a file"
|
|
|
|
folder: shortcuts.home
|
|
|
|
}
|
|
|
|
|
|
|
|
id: shareFile
|
|
|
|
iconSource: "document-share"
|
|
|
|
visible: share.available
|
|
|
|
tooltip: i18n("Share file")
|
|
|
|
onClicked: {
|
|
|
|
fileDialog.open()
|
|
|
|
share.plugin.shareUrl(fileDialog.fileUrl)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-25 18:51:48 +01:00
|
|
|
//Find my phone
|
|
|
|
PlasmaComponents.Button
|
2015-09-11 16:51:50 +01:00
|
|
|
{
|
|
|
|
FindMyPhone {
|
|
|
|
id: findmyphone
|
2016-08-21 17:57:27 +01:00
|
|
|
device: root.device
|
2015-09-11 16:51:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
id: ring
|
2016-09-06 08:50:03 +01:00
|
|
|
iconSource: "irc-voice"
|
2015-09-11 16:51:50 +01:00
|
|
|
visible: findmyphone.available
|
2016-05-25 18:51:48 +01:00
|
|
|
tooltip: i18n("Ring my phone")
|
2015-09-11 16:51:50 +01:00
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
findmyphone.ring()
|
|
|
|
}
|
2014-01-27 16:52:29 +00:00
|
|
|
}
|
2014-02-14 16:11:41 +00:00
|
|
|
|
2016-05-25 18:51:48 +01:00
|
|
|
//SFTP
|
2014-02-05 19:26:54 +00:00
|
|
|
PlasmaComponents.Button
|
|
|
|
{
|
|
|
|
Sftp {
|
|
|
|
id: sftp
|
2016-08-21 17:57:27 +01:00
|
|
|
device: root.device
|
2014-02-05 19:26:54 +00:00
|
|
|
}
|
2014-02-14 16:11:41 +00:00
|
|
|
|
2014-02-19 15:28:17 +00:00
|
|
|
id: browse
|
|
|
|
iconSource: "document-open-folder"
|
|
|
|
visible: sftp.available
|
2016-05-25 18:51:48 +01:00
|
|
|
tooltip: i18n("Browse this device")
|
2014-02-19 15:28:17 +00:00
|
|
|
|
2014-02-05 19:26:54 +00:00
|
|
|
onClicked: {
|
2014-02-16 06:55:15 +00:00
|
|
|
sftp.browse()
|
2014-02-05 19:26:54 +00:00
|
|
|
}
|
2014-01-27 16:52:29 +00:00
|
|
|
}
|
2014-02-14 16:11:41 +00:00
|
|
|
|
2014-01-27 16:52:29 +00:00
|
|
|
height: browse.height
|
2013-08-22 02:21:08 +01:00
|
|
|
width: parent.width
|
2013-08-21 17:28:11 +01:00
|
|
|
}
|
2014-02-14 16:11:41 +00:00
|
|
|
|
2017-01-23 08:08:27 +00:00
|
|
|
//RemoteKeyboard
|
|
|
|
PlasmaComponents.ListItem {
|
2018-05-09 00:15:03 +01:00
|
|
|
visible: remoteKeyboard.remoteState
|
2017-01-23 08:08:27 +00:00
|
|
|
width: parent.width
|
|
|
|
|
2018-11-08 01:01:51 +00:00
|
|
|
RowLayout {
|
2017-01-23 08:08:27 +00:00
|
|
|
width: parent.width
|
|
|
|
spacing: 5
|
|
|
|
|
|
|
|
PlasmaComponents.Label {
|
|
|
|
id: remoteKeyboardLabel
|
|
|
|
text: i18n("Remote Keyboard")
|
|
|
|
}
|
|
|
|
|
2018-11-08 01:01:51 +00:00
|
|
|
RemoteKeyboard {
|
|
|
|
id: remoteKeyboard
|
|
|
|
device: root.device
|
|
|
|
Layout.fillWidth: true
|
2017-01-23 08:08:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-22 02:21:08 +01:00
|
|
|
//Notifications
|
|
|
|
PlasmaComponents.ListItem {
|
|
|
|
visible: notificationsModel.count>0
|
2013-08-28 18:33:46 +01:00
|
|
|
enabled: true
|
2013-11-15 16:41:33 +00:00
|
|
|
PlasmaComponents.Label {
|
2017-07-26 23:40:47 +01:00
|
|
|
text: i18n("Notifications:")
|
2013-11-15 16:41:33 +00:00
|
|
|
}
|
2013-08-22 02:21:08 +01:00
|
|
|
PlasmaComponents.ToolButton {
|
2013-08-28 18:33:46 +01:00
|
|
|
enabled: true
|
|
|
|
visible: notificationsModel.isAnyDimissable;
|
2013-08-22 02:21:08 +01:00
|
|
|
anchors.right: parent.right
|
2018-10-04 18:20:46 +01:00
|
|
|
iconSource: "edit-clear-history"
|
2018-03-24 14:31:10 +00:00
|
|
|
tooltip: i18n("Dismiss all notifications")
|
2013-08-28 18:33:46 +01:00
|
|
|
onClicked: notificationsModel.dismissAll();
|
2013-08-22 02:21:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Repeater {
|
|
|
|
id: notificationsView
|
|
|
|
model: NotificationsModel {
|
|
|
|
id: notificationsModel
|
2016-08-21 17:57:27 +01:00
|
|
|
deviceId: root.device.id()
|
2013-08-22 02:21:08 +01:00
|
|
|
}
|
|
|
|
delegate: PlasmaComponents.ListItem {
|
2016-10-04 00:12:04 +01:00
|
|
|
id: listitem
|
|
|
|
enabled: true
|
|
|
|
onClicked: checked = !checked
|
|
|
|
|
2017-06-01 15:17:37 +01:00
|
|
|
PlasmaCore.IconItem {
|
|
|
|
id: notificationIcon
|
|
|
|
source: appIcon
|
|
|
|
width: (valid && appIcon.length) ? dismissButton.width : 0
|
|
|
|
height: width
|
|
|
|
anchors.left: parent.left
|
|
|
|
}
|
2013-08-22 02:21:08 +01:00
|
|
|
PlasmaComponents.Label {
|
2017-08-22 17:16:42 +01:00
|
|
|
text: appName + ": " + (title.length>0 ? (appName==title?notitext:title+": "+notitext) : display)
|
2017-06-01 15:17:37 +01:00
|
|
|
anchors.right: replyButton.left
|
|
|
|
anchors.left: notificationIcon.right
|
2016-10-04 00:12:04 +01:00
|
|
|
elide: listitem.checked ? Text.ElideNone : Text.ElideRight
|
|
|
|
maximumLineCount: listitem.checked ? 0 : 1
|
2013-09-06 20:12:14 +01:00
|
|
|
wrapMode: Text.WordWrap
|
2013-08-22 02:21:08 +01:00
|
|
|
}
|
2017-06-01 15:17:37 +01:00
|
|
|
PlasmaComponents.ToolButton {
|
|
|
|
id: replyButton
|
|
|
|
visible: repliable
|
|
|
|
enabled: repliable
|
|
|
|
anchors.right: dismissButton.left
|
|
|
|
iconSource: "mail-reply-sender"
|
2018-03-24 14:31:10 +00:00
|
|
|
tooltip: i18n("Reply")
|
2017-06-01 15:17:37 +01:00
|
|
|
onClicked: dbusInterface.reply();
|
|
|
|
}
|
2013-08-22 02:21:08 +01:00
|
|
|
PlasmaComponents.ToolButton {
|
2013-09-06 20:12:14 +01:00
|
|
|
id: dismissButton
|
2013-08-28 18:33:46 +01:00
|
|
|
visible: notificationsModel.isAnyDimissable;
|
|
|
|
enabled: dismissable
|
2013-08-22 02:21:08 +01:00
|
|
|
anchors.right: parent.right
|
|
|
|
iconSource: "window-close"
|
2018-03-24 14:31:10 +00:00
|
|
|
tooltip: i18n("Dismiss")
|
2013-08-22 02:21:08 +01:00
|
|
|
onClicked: dbusInterface.dismiss();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-27 07:04:05 +01:00
|
|
|
RemoteCommands {
|
|
|
|
id: rc
|
|
|
|
device: root.device
|
|
|
|
}
|
|
|
|
|
|
|
|
// Commands
|
2018-11-02 14:38:52 +00:00
|
|
|
RowLayout {
|
2018-10-30 22:37:27 +00:00
|
|
|
visible: rc.available
|
2018-11-02 14:38:52 +00:00
|
|
|
width: parent.width
|
|
|
|
|
2018-10-30 22:37:27 +00:00
|
|
|
PlasmaComponents.Label {
|
2018-11-02 14:44:14 +00:00
|
|
|
text: i18n("Run command")
|
2018-11-02 14:38:52 +00:00
|
|
|
Layout.fillWidth: true
|
2018-10-30 22:37:27 +00:00
|
|
|
}
|
2018-11-02 14:38:52 +00:00
|
|
|
|
2018-10-30 22:37:27 +00:00
|
|
|
PlasmaComponents.Button
|
|
|
|
{
|
|
|
|
id: addCommandButton
|
|
|
|
iconSource: "list-add"
|
|
|
|
tooltip: i18n("Add command")
|
|
|
|
onClicked: rc.plugin.editCommands()
|
2019-01-31 15:38:03 +00:00
|
|
|
visible: rc.plugin && rc.plugin.canAddCommand
|
2018-10-30 22:37:27 +00:00
|
|
|
}
|
2018-07-27 07:04:05 +01:00
|
|
|
}
|
|
|
|
Repeater {
|
|
|
|
id: commandsView
|
|
|
|
visible: rc.available
|
|
|
|
model: RemoteCommandsModel {
|
|
|
|
id: commandsModel
|
|
|
|
deviceId: rc.device.id()
|
|
|
|
}
|
|
|
|
delegate: PlasmaComponents.ListItem {
|
|
|
|
enabled: true
|
|
|
|
onClicked: rc.plugin.triggerCommand(key)
|
2013-08-22 02:21:08 +01:00
|
|
|
|
2018-07-27 07:04:05 +01:00
|
|
|
PlasmaComponents.Label {
|
|
|
|
text: name + "\n" + command
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-05 19:34:17 +00:00
|
|
|
|
|
|
|
// Share
|
|
|
|
Share {
|
|
|
|
id: share
|
|
|
|
device: root.device
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaComponents.Label {
|
|
|
|
text: i18n("Share text")
|
|
|
|
}
|
2018-11-09 18:06:35 +00:00
|
|
|
PlasmaComponents3.TextArea {
|
2018-11-05 19:34:17 +00:00
|
|
|
id: shareText
|
2018-11-09 18:06:35 +00:00
|
|
|
width: parent.width
|
2018-11-05 19:34:17 +00:00
|
|
|
}
|
|
|
|
PlasmaComponents.Button
|
|
|
|
{
|
|
|
|
id: submitTextButton
|
|
|
|
anchors.right: shareText.right
|
|
|
|
iconSource: "document-send"
|
|
|
|
onClicked: {
|
2018-11-09 18:06:35 +00:00
|
|
|
share.plugin.shareText(shareText.getText(0, shareText.length))
|
|
|
|
shareText.clear()
|
2018-11-05 19:34:17 +00:00
|
|
|
}
|
|
|
|
}
|
2018-07-27 07:04:05 +01:00
|
|
|
//NOTE: More information could be displayed here
|
2013-08-22 02:21:08 +01:00
|
|
|
}
|
2013-08-21 17:28:11 +01:00
|
|
|
}
|