Customized themable scrollbars
This commit is contained in:
parent
f2f4643189
commit
783a711799
|
@ -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 {} }
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user