2018-10-30 20:01:13 +00:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2018 Aleix Pol Gonzalez <aleixpol@kde.org>
|
2018-12-16 00:26:44 +00:00
|
|
|
* Copyright (C) 2018 Nicolas Fella <nicolas.fella@gmx.de>
|
|
|
|
* Copyright (C) 2018 Simon Redman <simon@ergotech.com>
|
2018-10-30 20:01:13 +00: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.
|
|
|
|
*
|
|
|
|
* 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
|
2019-03-23 16:29:26 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-10-30 20:01:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
import QtQuick 2.1
|
2019-12-19 22:18:11 +00:00
|
|
|
import org.kde.kirigami 2.6 as Kirigami
|
2018-10-30 20:01:13 +00:00
|
|
|
import org.kde.kdeconnect 1.0
|
|
|
|
|
|
|
|
Kirigami.ApplicationWindow
|
|
|
|
{
|
|
|
|
id: root
|
|
|
|
visible: true
|
|
|
|
width: 800
|
|
|
|
height: 600
|
|
|
|
|
|
|
|
pageStack.initialPage: ConversationList {
|
2019-12-21 07:59:36 +00:00
|
|
|
title: i18nd("kdeconnect-sms", "KDE Connect SMS")
|
[SMS App] Allow passing a message via args
Summary:
Add --message option to kdeconnect-sms to pass a message. The user only needs to choose a recepient and the message will be sent. Useful for integration with 3rd party
apps, e.g. via Purpose
Test Plan:
kdeconnect-sms --message "Hello World", choose chat, message is sent
Click another chat, no message sent
kdeconnect-sms without args, no message sent
Reviewers: #kde_connect, sredman
Reviewed By: #kde_connect, sredman
Subscribers: andyholmes, sredman, apol, kdeconnect
Tags: #kde_connect
Differential Revision: https://phabricator.kde.org/D17292
2019-03-09 21:32:36 +00:00
|
|
|
initialMessage: _initialMessage
|
2018-10-30 20:01:13 +00:00
|
|
|
}
|
2019-12-19 22:18:11 +00:00
|
|
|
|
|
|
|
Component {
|
|
|
|
id: aboutPageComponent
|
|
|
|
Kirigami.AboutPage {}
|
|
|
|
}
|
|
|
|
|
|
|
|
globalDrawer: Kirigami.GlobalDrawer {
|
|
|
|
|
|
|
|
isMenu: true
|
|
|
|
|
|
|
|
actions: [
|
|
|
|
Kirigami.Action {
|
2019-12-21 07:59:36 +00:00
|
|
|
text: i18nd("kdeconnect-sms", "About...")
|
2019-12-19 22:18:11 +00:00
|
|
|
icon.name: "help-about"
|
|
|
|
onTriggered: {
|
|
|
|
applicationWindow().pageStack.push(aboutPageComponent, { aboutData: aboutData });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-10-30 20:01:13 +00:00
|
|
|
}
|