mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
add a very simple activity switcher
This commit is contained in:
parent
220f4f79e8
commit
cadbf60056
4 changed files with 69 additions and 0 deletions
|
|
@ -1,2 +1,3 @@
|
|||
plasma_install_package(activities org.kde.phone.activities)
|
||||
plasma_install_package(clock org.kde.phone.clock)
|
||||
plasma_install_package(notifications org.kde.phone.notifications)
|
||||
|
|
|
|||
4
applets/activities/Messages.sh
Executable file
4
applets/activities/Messages.sh
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
#! /usr/bin/env bash
|
||||
$EXTRACTRC `find . -name \*.rc -o -name \*.ui -o -name \*.kcfg` >> rc.cpp
|
||||
$XGETTEXT `find . -name \*.js -o -name \*.qml -o -name \*.cpp` -o $podir/plasma_applet_org.kde.phone.activities.pot
|
||||
rm -f rc.cpp
|
||||
43
applets/activities/contents/ui/main.qml
Normal file
43
applets/activities/contents/ui/main.qml
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
/*
|
||||
* Copyright 2016 Marco Martin <notmart@gmail.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Library General Public License as
|
||||
* published by the Free Software Foundation; either version 2, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* 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 Library General Public License for more details
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this program; if not, write to the
|
||||
* Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
import QtQuick 2.1
|
||||
import QtQuick.Layouts 1.1
|
||||
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||
import org.kde.plasma.components 2.0 as PlasmaComponents
|
||||
import org.kde.activities 0.1 as Activities
|
||||
|
||||
ListView {
|
||||
id: listView
|
||||
model: Activities.ActivityModel {
|
||||
id: activityModel
|
||||
}
|
||||
highlight: PlasmaComponents.Highlight {}
|
||||
delegate: PlasmaComponents.Label {
|
||||
text: model.name
|
||||
width: listView.width
|
||||
MouseArea {
|
||||
anchors.fill: parent
|
||||
onClicked: {
|
||||
listView.currentIndex = index;
|
||||
activityModel.setCurrentActivity(model.id, function() {});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
21
applets/activities/metadata.desktop
Normal file
21
applets/activities/metadata.desktop
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Phone Activities
|
||||
|
||||
Comment=Activity switcher for the phone
|
||||
Icon=start-here-symbolic
|
||||
Type=Service
|
||||
X-KDE-ParentApp=
|
||||
X-KDE-PluginInfo-Author=Marco Martin
|
||||
X-KDE-PluginInfo-Email=mart@kde.org
|
||||
X-KDE-PluginInfo-License=GPL
|
||||
X-KDE-PluginInfo-Name=org.kde.phone.activities
|
||||
X-KDE-PluginInfo-Version=1.0
|
||||
X-KDE-PluginInfo-Website=plasma.kde.org
|
||||
X-KDE-ServiceTypes=Plasma/Applet
|
||||
X-Plasma-API=declarativeappletscript
|
||||
X-KDE-PluginInfo-Category=Activities
|
||||
X-Plasma-Provides=org.kde.plasma.activities
|
||||
|
||||
X-Plasma-MainScript=ui/main.qml
|
||||
X-Plasma-RemoteLocation=
|
||||
Loading…
Reference in a new issue