Customized themable scrollbars

This commit is contained in:
miruka 2020-06-22 13:48:55 -04:00
parent f2f4643189
commit 783a711799
3 changed files with 53 additions and 0 deletions

View File

@ -4,5 +4,34 @@ import QtQuick 2.12
import QtQuick.Controls 2.12
ScrollBar {
id: scrollBar
minimumSize: (Math.min(height / 1.5, 48) * theme.uiScale) / height
opacity: size < 1 && (active || hovered) ? 1 : 0
padding: 0
background: Rectangle {
color: theme.controls.scrollbar.track
}
contentItem: Item {
implicitWidth: theme.controls.scrollbar.width
Rectangle {
anchors.fill: parent
anchors.leftMargin: theme.controls.scrollbar.sliderPadding
anchors.rightMargin: anchors.leftMargin
radius: theme.controls.scrollbar.sliderRadius
color:
scrollBar.pressed ? theme.controls.scrollbar.pressedSlider :
sliderHover.hovered ? theme.controls.scrollbar.hoveredSlider :
theme.controls.scrollbar.slider
Behavior on color { HColorAnimation {} }
HoverHandler { id: sliderHover }
}
}
Behavior on opacity { HNumberAnimation {} }
}

View File

@ -95,6 +95,18 @@ icons:
// Generic UI controls
controls:
scrollbar:
int width: theme.spacing
color track: colors.strongBackground
color slider: colors.accentElement
color hoveredSlider: colors.accentElement
color pressedSlider: colors.strongAccentElement
int sliderPadding: 2
int sliderRadius: theme.radius
box:
int defaultWidth: minimumSupportedWidth
color background: colors.mediumBackground

View File

@ -98,6 +98,18 @@ icons:
// Generic UI controls
controls:
scrollbar:
int width: theme.spacing
color track: colors.strongBackground
color slider: colors.accentElement
color hoveredSlider: colors.accentElement
color pressedSlider: colors.strongAccentElement
int sliderPadding: 2
int sliderRadius: theme.radius
box:
int defaultWidth: minimumSupportedWidth
color background: colors.mediumBackground