Make the app work a bit more like the Android version

This commit is contained in:
Aleix Pol 2016-06-08 18:37:57 +02:00
parent 1c315af108
commit 794e8c6904
4 changed files with 98 additions and 36 deletions

View file

@ -0,0 +1,67 @@
/*
* Copyright 2016 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
import QtQuick.Controls 1.1
import QtQuick.Layouts 1.1
import org.kde.kirigami 1.0 as Kirigami
import org.kde.kdeconnect 1.0
Kirigami.Page
{
title: i18n("Pair")
ScrollView {
anchors.fill: parent
ListView {
section {
property: "status"
delegate: Label {
text: switch (parseInt(section))
{
case DevicesModel.Paired:
return i18n("Paired")
case DevicesModel.Reachable:
return i18n("Reachable")
case (DevicesModel.Reachable | DevicesModel.Paired):
return i18n("Paired & Reachable")
}
}
}
model: DevicesSortProxyModel {
sourceModel: DevicesModel { displayFilter: DevicesModel.Reachable }
}
delegate: Kirigami.BasicListItem {
width: ListView.view.width
icon: iconName
label: display + "\n" + toolTip
enabled: !(status & DevicesModel.Paired)
onClicked: {
root.pageStack.clear()
root.pageStack.push(
"qrc:/qml/DevicePage.qml",
{currentDevice: device}
);
}
}
}
}
}

View file

@ -31,47 +31,41 @@ Kirigami.ApplicationWindow
width: 400
height: 500
pageStack.initialPage: Kirigami.Page {
globalDrawer: Kirigami.GlobalDrawer {
title: i18n("KDE Connect")
ScrollView {
titleIcon: "kdeconnect"
// bannerImageSource: "/home/apol/devel/kde5/share/wallpapers/Next/contents/images/1024x768.png"
content: ListView {
anchors.fill: parent
ListView {
id: devicesView
section {
property: "status"
delegate: Label {
text: switch (parseInt(section))
{
case DevicesModel.Paired:
return i18n("Paired")
case DevicesModel.Reachable:
return i18n("Reachable")
case (DevicesModel.Reachable | DevicesModel.Paired):
return i18n("Paired & Reachable")
}
}
}
model: DevicesSortProxyModel {
sourceModel: DevicesModel {
id: connectDeviceModel
displayFilter: DevicesModel.Reachable
sourceModel: DevicesModel { displayFilter: DevicesModel.Paired }
}
header: Kirigami.BasicListItem {
label: i18n ("Find devices...")
icon: "list-add"
onClicked: {
root.pageStack.clear()
root.pageStack.push("qrc:/qml/FindDevicesPage.qml");
}
}
delegate: Kirigami.BasicListItem {
width: ListView.view.width
icon: iconName
label: display + "\n" + toolTip
enabled: status & DevicesModel.Reachable
checked: root.pageStack.currentDevice == device
onClicked: {
root.pageStack.clear()
root.pageStack.push(
"qrc:/qml/Device.qml",
"qrc:/qml/DevicePage.qml",
{currentDevice: device}
);
}
}
}
}
}
pageStack.initialPage: FindDevicesPage {}
}

View file

@ -3,6 +3,7 @@
<file>qml/main.qml</file>
<file>qml/mpris.qml</file>
<file>qml/mousepad.qml</file>
<file>qml/Device.qml</file>
<file>qml/DevicePage.qml</file>
<file>qml/FindDevicesPage.qml</file>
</qresource>
</RCC>