shift-shell/libmobileshell/declarative/qml/statusbar/TaskWidget.qml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.5 KiB
QML
Raw Normal View History

2015-05-12 16:59:55 +00:00
/*
2021-03-01 20:03:25 +00:00
* SPDX-FileCopyrightText: 2011 Marco Martin <mart@kde.org>
2015-05-12 16:59:55 +00:00
*
2021-03-01 20:03:25 +00:00
* SPDX-License-Identifier: LGPL-2.0-or-later
2015-05-12 16:59:55 +00:00
*/
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
2019-10-08 15:15:17 +00:00
opacity: (Category != "ApplicationStatus" && Status != "Passive") ? 1 : 0
2015-05-12 16:59:55 +00:00
onOpacityChanged: visible = opacity
Behavior on opacity {
NumberAnimation {
duration: 300
easing.type: Easing.InOutQuad
}
}
PlasmaCore.IconItem {
id: icon
2015-05-12 16:59:55 +00:00
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)
}
}
}