/* * Copyright 2013 Marco Martin * * 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) 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 2.010-1301, USA. */ import QtQuick 2.4 import QtQuick.Layouts 1.1 import QtQuick.Window 2.0 import org.kde.plasma.core 2.0 as PlasmaCore import org.kde.plasma.components 2.0 as PlasmaComponents import org.kde.kquickcontrolsaddons 2.0 Item { id: root objectName: "org.kde.desktop-CompactApplet" anchors.fill: parent property Item fullRepresentation property Item compactRepresentation property Item expandedFeedback: expandedItem onCompactRepresentationChanged: { if (compactRepresentation) { compactRepresentation.parent = root; compactRepresentation.anchors.fill = undefined; compactRepresentation.anchors.right = undefined; compactRepresentation.anchors.left = root.left; compactRepresentation.anchors.top = root.top; compactRepresentation.width = units.iconSizes.medium; compactRepresentation.height = compactRepresentation.width; compactRepresentation.visible = true; } root.visible = true; } onFullRepresentationChanged: { if (!fullRepresentation) { return; } fullRepresentation.parent = appletParent; fullRepresentation.anchors.fill = fullRepresentation.parent; } Row { id: label height: units.iconSizes.medium anchors.left: compactRepresentation ? compactRepresentation.right : parent.left PlasmaCore.SvgItem { svg: PlasmaCore.Svg { id: arrowSvg imagePath: "widgets/arrows" colorGroup: PlasmaCore.Theme.ComplementaryColorGroup } width: units.iconSizes.smallMedium height: width elementId: plasmoid.expanded ? "up-arrow" : "down-arrow" anchors.verticalCenter: parent.verticalCenter } PlasmaComponents.Label { text: plasmoid.title anchors.verticalCenter: parent.verticalCenter } } Rectangle { id: expandedItem anchors { left: parent.left right: parent.right } height: units.iconSizes.medium color: PlasmaCore.ColorScope.highlightColor opacity: plasmoid.expanded ? 0.3 : 0 Behavior on opacity { OpacityAnimator { duration: units.shortDuration easing.type: Easing.InOutQuad } } } Item { id: appletParent opacity: plasmoid.expanded ? 1 : 0 anchors.top: label.bottom width: parent.width height: units.gridUnit * 20 - units.iconSizes.medium Behavior on opacity { OpacityAnimator { duration: units.longDuration easing.type: Easing.InOutQuad } } } }