50 lines
2.1 KiB
QML
50 lines
2.1 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.RangeSlider {
|
|
id: control
|
|
|
|
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
|
Math.max(first.implicitHandleWidth,
|
|
second.implicitHandleWidth) + leftPadding + rightPadding)
|
|
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
|
Math.max(first.implicitHandleHeight,
|
|
second.implicitHandleHeight) + topPadding + bottomPadding)
|
|
|
|
first.handle: SliderHandle {
|
|
x: control.leftPadding + Math.round(control.horizontal ? control.first.visualPosition * (control.availableWidth - width) : (control.availableWidth - width) / 2)
|
|
y: control.topPadding + Math.round(control.horizontal ? (control.availableHeight - height) / 2 : control.first.visualPosition * (control.availableHeight - height))
|
|
|
|
palette: control.palette
|
|
pressed: control.first.pressed
|
|
hovered: control.first.hovered
|
|
vertical: control.vertical
|
|
visualFocus: activeFocus
|
|
}
|
|
|
|
second.handle: SliderHandle {
|
|
x: control.leftPadding + Math.round(control.horizontal ? control.second.visualPosition * (control.availableWidth - width) : (control.availableWidth - width) / 2)
|
|
y: control.topPadding + Math.round(control.horizontal ? (control.availableHeight - height) / 2 : control.second.visualPosition * (control.availableHeight - height))
|
|
|
|
palette: control.palette
|
|
pressed: control.second.pressed
|
|
hovered: control.second.hovered
|
|
vertical: control.vertical
|
|
visualFocus: activeFocus
|
|
}
|
|
|
|
background: SliderGroove {
|
|
control: control
|
|
offset: control.first.position
|
|
progress: control.second.position
|
|
visualProgress: control.second.visualPosition
|
|
}
|
|
}
|