|
|
|
@ -35,7 +35,7 @@ import org.kde.latte.private.tasks 0.1 as LatteTasks
|
|
|
|
|
import "animations" as TaskAnimations
|
|
|
|
|
import "indicator" as Indicator
|
|
|
|
|
|
|
|
|
|
MouseArea{
|
|
|
|
|
Item {
|
|
|
|
|
id: taskItem
|
|
|
|
|
|
|
|
|
|
visible: false //true//(isStartup && animations.speedFactor.current !== 0) ? false : true
|
|
|
|
@ -97,9 +97,10 @@ MouseArea{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
acceptedButtons: Qt.LeftButton | Qt.MidButton | Qt.RightButton
|
|
|
|
|
hoverEnabled: visible && (!inAnimation) && (!IsStartup) && (!root.taskInAnimation)
|
|
|
|
|
&&(!inBouncingAnimation) && !isSeparator
|
|
|
|
|
property alias hoverEnabled: taskMouseArea.hoverEnabled
|
|
|
|
|
property alias containsMouse: taskMouseArea.containsMouse
|
|
|
|
|
property alias pressed: taskMouseArea.pressed
|
|
|
|
|
|
|
|
|
|
// hoverEnabled: false
|
|
|
|
|
//opacity : isSeparator && (hiddenSpacerLeft.neighbourSeparator || hiddenSpacerRight.neighbourSeparator) ? 0 : 1
|
|
|
|
|
|
|
|
|
@ -148,7 +149,6 @@ MouseArea{
|
|
|
|
|
|
|
|
|
|
property bool hoveredFromDragging: (mouseHandler.hoveredItem === taskItem) || (mouseHandler.ignoredItem === taskItem)
|
|
|
|
|
|
|
|
|
|
property bool pressed: false
|
|
|
|
|
property bool wheelIsBlocked: false
|
|
|
|
|
|
|
|
|
|
property int animationTime: (taskItem.animations.active ? taskItem.animations.speedFactor.current : 2) * (1.2 *taskItem.animations.duration.small)
|
|
|
|
@ -180,6 +180,7 @@ MouseArea{
|
|
|
|
|
property string launcherName: ""
|
|
|
|
|
|
|
|
|
|
readonly property alias hoveredTimer: _hoveredTimer
|
|
|
|
|
readonly property alias mouseArea: taskMouseArea
|
|
|
|
|
readonly property alias tooltipVisualParent: _wrapper.titleTooltipVisualParent
|
|
|
|
|
readonly property alias previewsVisualParent: _wrapper.previewsTooltipVisualParent
|
|
|
|
|
readonly property alias wrapper: _wrapper
|
|
|
|
@ -558,7 +559,7 @@ MouseArea{
|
|
|
|
|
active: taskItem.parabolic.isEnabled
|
|
|
|
|
width: root.isHorizontal ? taskItem.width : taskItem.metrics.mask.thickness.zoomedForItems
|
|
|
|
|
height: root.isHorizontal ? taskItem.metrics.mask.thickness.zoomedForItems : taskItem.height
|
|
|
|
|
|
|
|
|
|
z:10000
|
|
|
|
|
sourceComponent: ParabolicArea{}
|
|
|
|
|
|
|
|
|
|
states:[
|
|
|
|
@ -678,6 +679,15 @@ MouseArea{
|
|
|
|
|
|
|
|
|
|
///////////////// Mouse Area Events ///////////////////
|
|
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
|
id: taskMouseArea
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
acceptedButtons: Qt.LeftButton | Qt.MidButton | Qt.RightButton
|
|
|
|
|
hoverEnabled: visible && (!inAnimation) && (!isStartup) && (!root.taskInAnimation)
|
|
|
|
|
&&(!inBouncingAnimation) && !isSeparator
|
|
|
|
|
|
|
|
|
|
property bool pressed: false
|
|
|
|
|
|
|
|
|
|
onEntered: {
|
|
|
|
|
if (isLauncher && windowsPreviewDlg.visible) {
|
|
|
|
|
windowsPreviewDlg.hide(1);
|
|
|
|
@ -962,6 +972,8 @@ MouseArea{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//! A timer is needed in order to handle also touchpads that probably
|
|
|
|
|
//! send too many signals very fast. This way the signals per sec are limited.
|
|
|
|
|
//! The user needs to have a steady normal scroll in order to not
|
|
|
|
|