You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
latte-dock/containment/package/contents/ui/applet/AppletHiddenSpacer.qml

90 lines
3.0 KiB
QML

/*
* Copyright 2016 Smith AR <audoban@openmailbox.org>
* Michail Vourlakos <mvourlakos@gmail.com>
*
* This file is part of Latte-Dock
*
* Latte-Dock 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.
*
* Latte-Dock 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.1
Item{
id: hiddenSpacer
//we add one missing pixel from calculations
width: root.isHorizontal ? nHiddenSize : wrapper.width
height: root.isHorizontal ? wrapper.height : nHiddenSize
///check also if this is the first/last plasmoid in anylayout
visible: (rightSpacer ? container.endEdge : container.startEdge) || separatorSpace>0
property bool neighbourSeparator: false;
//in case there is a neighbour internal separator
property int separatorSpace: ((root.latteApplet && root.latteApplet.hasInternalSeparator && !root.latteApplet.internalSeparatorHidden
&& neighbourTaskInternalSeparator) || neighbourSeparator)
&& !container.isSeparator && !container.latteApplet ? (2+root.iconMargin/2) : 0
property bool neighbourTaskInternalSeparator: {
if (!root.latteApplet){
return false;
}
return rightSpacer ? root.latteApplet.internalSeparatorPos === 0 && index===root.latteAppletPos-1 :
root.latteApplet.internalSeparatorPos === root.tasksCount-1 && index===root.latteAppletPos+1;
}
property real nHiddenSize: (nScale > 0) ? (container.spacersMaxSize * nScale) + separatorSpace : separatorSpace
property bool rightSpacer: false
property real nScale: 0
Behavior on nScale {
enabled: !root.globalDirectRender
NumberAnimation { duration: 3*container.animationTime }
}
Behavior on nScale {
enabled: root.globalDirectRender
NumberAnimation { duration: root.directRenderAnimationTime }
}
Connections{
target: root
onSeparatorsUpdated: {
hiddenSpacer.neighbourSeparator = hiddenSpacer.rightSpacer ?
parabolicManager.isSeparator(index+1) : parabolicManager.isSeparator(index-1);
}
}
Loader{
width: !root.isVertical ? parent.width : 1
height: !root.isVertical ? 1 : parent.height
x: root.isVertical ? parent.width /2 : 0
y: !root.isVertical ? parent.height /2 : 0
active: root.debugMode
sourceComponent: Rectangle{
border.width: 1
border.color: "red"
color: "transparent"
}
}
}