mirror of
https://github.com/KDE/latte-dock.git
synced 2025-01-06 21:18:11 +03:00
127 lines
4.8 KiB
QML
127 lines
4.8 KiB
QML
/*
|
|
SPDX-FileCopyrightText: 2019 Michail Vourlakos <mvourlakos@gmail.com>
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
import QtQuick 2.7
|
|
import QtQuick.Templates 2.0 as T
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
import "private" as Private
|
|
|
|
T.Slider {
|
|
id: control
|
|
|
|
implicitWidth: Math.max(background ? background.implicitWidth : 0,
|
|
Math.max(handle ? handle.implicitWidth : 0,
|
|
handle ? handle.implicitWidth : 0) + leftPadding + rightPadding)
|
|
implicitHeight: Math.max(background ? background.implicitHeight : 0,
|
|
Math.max(handle ? handle.implicitHeight : 0,
|
|
handle ? handle.implicitHeight : 0) + topPadding + bottomPadding)
|
|
|
|
//padding: 3*units.smallSpacing //5//units.gridUnit
|
|
topPadding: 3*units.smallSpacing
|
|
bottomPadding: 3*units.smallSpacing
|
|
leftPadding: units.smallSpacing
|
|
rightPadding: units.smallSpacing
|
|
|
|
snapMode: T.Slider.SnapOnRelease
|
|
|
|
readonly property bool minimumInternalValueIsSet: (minimumInternalValue!==from && minimumInternalValue !== -10000)
|
|
property int minimumInternalValue: -10000
|
|
|
|
PlasmaCore.Svg {
|
|
id: grooveSvg
|
|
imagePath: "widgets/slider"
|
|
colorGroup: PlasmaCore.ColorScope.colorGroup
|
|
}
|
|
|
|
PlasmaCore.FrameSvgItem {
|
|
id: minimumValueGroove
|
|
imagePath: "widgets/slider"
|
|
prefix: "groove-highlight"
|
|
x: limitedX - width/2
|
|
y: parent.height/2 - height/2
|
|
width: parent.height * 0.6
|
|
height: 2
|
|
rotation: 90
|
|
visible: minimumInternalValueIsSet
|
|
|
|
readonly property int limitedX: limitedPer * parent.width
|
|
readonly property real limitedPer: ((minimumInternalValue-from)/(to-from))
|
|
|
|
opacity: {
|
|
if (control.enabled && minimumInternalValueIsSet && value < minimumInternalValue) {
|
|
return 0.3
|
|
}
|
|
|
|
if (control.enabled) {
|
|
return 1;
|
|
}
|
|
|
|
return 0.4;
|
|
}
|
|
}
|
|
|
|
handle: Item {
|
|
property bool horizontal: control.orientation === Qt.Horizontal
|
|
x: leftFixedPadding + (horizontal ? control.visualPosition * (control.availableWidth - width / 2) : (control.availableWidth - width) / 2)
|
|
y: topFixedPadding + (horizontal ? (control.availableHeight - height) / 2 : control.visualPosition * (control.availableHeight - height / 2))
|
|
|
|
width: firstHandle.naturalSize.width
|
|
height: firstHandle.naturalSize.height
|
|
|
|
property int leftFixedPadding: horizontal && control.visualPosition === 0 ? 0 : control.leftPadding
|
|
property int topFixedPadding: !horizontal && control.visualPosition === 0 ? 0 : control.topPadding
|
|
|
|
Private.RoundShadow {
|
|
anchors.fill: parent
|
|
imagePath: "widgets/slider"
|
|
focusElement: parent.horizontal ? "horizontal-slider-focus" : "vertical-slider-focus"
|
|
hoverElement: parent.horizontal ? "horizontal-slider-hover" : "vertical-slider-hover"
|
|
shadowElement: parent.horizontal ? "horizontal-slider-shadow" : "vertical-slider-shadow"
|
|
state: control.activeFocus ? "focus" : (control.hovered ? "hover" : "shadow")
|
|
}
|
|
PlasmaCore.SvgItem {
|
|
id: firstHandle
|
|
anchors.fill: parent
|
|
svg: grooveSvg
|
|
elementId: parent.horizontal ? "horizontal-slider-handle" : "vertical-slider-handle"
|
|
}
|
|
}
|
|
|
|
background: PlasmaCore.FrameSvgItem {
|
|
imagePath: "widgets/slider"
|
|
prefix: "groove"
|
|
readonly property bool horizontal: control.orientation === Qt.Horizontal
|
|
implicitWidth: horizontal ? units.gridUnit * 8 : margins.left + margins.right
|
|
implicitHeight: horizontal ? margins.top + margins.bottom : units.gridUnit * 8
|
|
width: horizontal ? control.availableWidth : implicitWidth
|
|
height: horizontal ? implicitHeight : control.availableHeight
|
|
anchors.centerIn: parent
|
|
scale: horizontal && control.mirrored ? -1 : 1
|
|
|
|
PlasmaCore.FrameSvgItem {
|
|
id: grooveHighlight
|
|
imagePath: "widgets/slider"
|
|
prefix: "groove-highlight"
|
|
x: parent.horizontal ? 0 : (parent.width - width) / 2
|
|
y: parent.horizontal ? (parent.height - height) / 2 : control.visualPosition * parent.height
|
|
width: parent.horizontal ? control.position * parent.width + invisibleSpacer : parent.width
|
|
height: parent.horizontal ? parent.height : control.position * parent.height + invisibleSpacer
|
|
opacity: {
|
|
if (control.enabled && minimumInternalValueIsSet && value < minimumInternalValue) {
|
|
return 0.3
|
|
}
|
|
|
|
if (control.enabled) {
|
|
return 1;
|
|
}
|
|
|
|
return 0.4;
|
|
}
|
|
|
|
property int invisibleSpacer: control.position === 0 ? 4 : 0
|
|
}
|
|
}
|
|
}
|