36 lines
1.3 KiB
QML
36 lines
1.3 KiB
QML
// Copyright (C) 2017 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
// Qt-Security score:significant reason:default
|
|
|
|
import QtQuick
|
|
import QtQuick.Templates as T
|
|
import QtQuick.Controls.impl
|
|
import QtQuick.Controls.Fusion
|
|
import QtQuick.Controls.Fusion.impl
|
|
|
|
T.Slider {
|
|
id: control
|
|
|
|
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
|
implicitHandleWidth + leftPadding + rightPadding)
|
|
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
|
implicitHandleHeight + topPadding + bottomPadding)
|
|
|
|
handle: SliderHandle {
|
|
x: control.leftPadding + Math.round(control.horizontal ? control.visualPosition * (control.availableWidth - width) : (control.availableWidth - width) / 2)
|
|
y: control.topPadding + Math.round(control.horizontal ? (control.availableHeight - height) / 2 : control.visualPosition * (control.availableHeight - height))
|
|
|
|
palette: control.palette
|
|
pressed: control.pressed
|
|
hovered: control.hovered
|
|
vertical: control.vertical
|
|
visualFocus: control.visualFocus
|
|
}
|
|
|
|
background: SliderGroove {
|
|
control: control
|
|
progress: control.position
|
|
visualProgress: control.visualPosition
|
|
}
|
|
}
|