support statusnotifieritems

This commit is contained in:
Marco Martin 2015-05-12 18:59:55 +02:00
parent 27742df3ab
commit 85345d2026
2 changed files with 156 additions and 63 deletions

View file

@ -0,0 +1,62 @@
/*
* Copyright 2011 Marco Martin <mart@kde.org>
*
* 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 org.kde.plasma.core 2.0 as PlasmaCore
Item {
id: taskIcon
width: parent.height
height: width
//hide application status icons
opacity: (Category != "ApplicationStatus" && (main.state == "active" || Status != "Passive")) ? 1 : 0
onOpacityChanged: visible = opacity
Behavior on opacity {
NumberAnimation {
duration: 300
easing.type: Easing.InOutQuad
}
}
PlasmaCore.IconItem {
source: IconName ? IconName : Icon
width: Math.min(parent.width, parent.height)
height: width
anchors.centerIn: parent
colorGroup: PlasmaCore.ColorScope.colorGroup
}
MouseArea {
anchors.fill: taskIcon
onClicked: {
//print(iconSvg.hasElement(IconName))
var service = statusNotifierSource.serviceForSource(DataEngineSource)
var operation = service.operationDescription("Activate")
operation.x = parent.x
// kmix shows main window instead of volume popup if (parent.x, parent.y) == (0, 0), which is the case here.
// I am passing a position right below the panel (assuming panel is at screen's top).
// Plasmoids' popups are already shown below the panel, so this make kmix's popup more consistent
// to them.
operation.y = parent.y + parent.height + 6
service.startOperationCall(operation)
}
}
}

View file

@ -99,6 +99,18 @@ PlasmaCore.ColorScope {
LayoutManager.restore();
}
PlasmaCore.DataSource {
id: statusNotifierSource
engine: "statusnotifieritem"
interval: 0
onSourceAdded: {
connectSource(source)
}
Component.onCompleted: {
connectedSources = sources
}
}
RowLayout {
id: appletsLayout
Layout.minimumHeight: Math.max(root.height, Math.round(Layout.preferredHeight / root.height) * root.height)
@ -226,6 +238,7 @@ PlasmaCore.ColorScope {
color: PlasmaCore.ColorScope.textColor
font.pixelSize: parent.height / 2
}
PlasmaComponents.Label {
id: clock
anchors.fill: parent
@ -236,6 +249,24 @@ PlasmaCore.ColorScope {
font.pixelSize: height / 2
}
Row {
anchors.right: batteryIcon.left
height: parent.height
Repeater {
id: statusNotifierRepeater
model: PlasmaCore.SortFilterModel {
id: filteredStatusNotifiers
filterRole: "Title"
filterRegExp: tasksRow.skipItems
sourceModel: PlasmaCore.DataModel {
dataSource: statusNotifierSource
}
}
delegate: TaskWidget {
}
}
}
PlasmaWorkspace.BatteryIcon {
id: batteryIcon