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.
87 lines
2.8 KiB
QML
87 lines
2.8 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
|
|
|
|
import org.kde.latte.core 0.2 as LatteCore
|
|
|
|
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: (isRightSpacer ? appletItem.lastAppletInContainer : appletItem.firstAppletInContainer) || separatorSpace>0
|
|
|
|
property bool hasNeighbourSeparator: isRightSpacer ? appletItem.headAppletIsSeparator : appletItem.tailAppletIsSeparator
|
|
|
|
property int separatorSpace: hasNeighbourSeparator && appletItem.parabolic.isEnabled ? LatteCore.Environment.separatorLength / 2 : 0
|
|
|
|
property real nHiddenSize: {
|
|
if (isSeparator || !communicator.requires.lengthMarginsEnabled) {
|
|
return 0;
|
|
}
|
|
|
|
return (nScale > 0) ? (appletItem.spacersMaxSize * nScale) + separatorSpace : separatorSpace
|
|
}
|
|
|
|
property bool isRightSpacer: false
|
|
|
|
property real nScale: 0
|
|
|
|
Behavior on nHiddenSize {
|
|
id: animatedBehavior
|
|
enabled: !appletItem.parabolic.directRenderingEnabled || restoreAnimation.running
|
|
NumberAnimation { duration: 3 * appletItem.animationTime }
|
|
}
|
|
|
|
Behavior on nHiddenSize {
|
|
id: directBehavior
|
|
enabled: !animatedBehavior.enabled
|
|
NumberAnimation { duration: 0 }
|
|
}
|
|
|
|
Connections{
|
|
target: appletItem
|
|
onContainsMouseChanged: {
|
|
if (!appletItem.containsMouse) {
|
|
hiddenSpacer.nScale = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
Loader{
|
|
active: appletItem.debug.spacersEnabled
|
|
|
|
sourceComponent: Rectangle{
|
|
width: !root.isVertical ? hiddenSpacer.width : 1
|
|
height: !root.isVertical ? 1 : hiddenSpacer.height
|
|
x: root.isVertical ? hiddenSpacer.width/2 : 0
|
|
y: !root.isVertical ? hiddenSpacer.height/2 : 0
|
|
|
|
border.width: 1
|
|
border.color: "red"
|
|
color: "transparent"
|
|
}
|
|
}
|
|
}
|