fix(StatusSlider): improve handle draging area
Issues - The slider only handle mouse events in its own control space. - In oder to use the entire area it needs to be centered. Fixes - Center the content vertically (handle and slider bar) - Height and implicitHeight defaults to heigh of the handle - Add note to create awareness about the mouse handling requirements
This commit is contained in:
parent
0d8bbcde8f
commit
1acbeb1962
|
@ -257,7 +257,6 @@ Item {
|
||||||
}
|
}
|
||||||
StatusSlider {
|
StatusSlider {
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.preferredHeight: 5
|
|
||||||
Layout.topMargin: 20
|
Layout.topMargin: 20
|
||||||
Layout.bottomMargin: 25
|
Layout.bottomMargin: 25
|
||||||
Layout.alignment: Qt.AlignVCenter
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
|
|
@ -6,19 +6,28 @@ import StatusQ.Core 0.1
|
||||||
import StatusQ.Core.Theme 0.1
|
import StatusQ.Core.Theme 0.1
|
||||||
import StatusQ.Controls 0.1
|
import StatusQ.Controls 0.1
|
||||||
|
|
||||||
|
/*!
|
||||||
|
/note beware, the slider processes the mouse events only in its control space. So it must be at least as high
|
||||||
|
as the /c handle so user can grab it fully.
|
||||||
|
*/
|
||||||
Slider {
|
Slider {
|
||||||
id: statusSlider
|
id: statusSlider
|
||||||
|
|
||||||
implicitWidth: 360
|
implicitWidth: 360
|
||||||
implicitHeight: 4
|
implicitHeight: Math.max(handle.implicitHeight, background.implicitHeight)
|
||||||
|
|
||||||
leftPadding: 0
|
leftPadding: 0
|
||||||
|
|
||||||
background: Rectangle {
|
background: Rectangle {
|
||||||
id: bgRect
|
id: bgRect
|
||||||
|
|
||||||
|
x: statusSlider.leftPadding
|
||||||
|
y: statusSlider.topPadding + statusSlider.availableHeight / 2 - height / 2
|
||||||
implicitWidth: 100
|
implicitWidth: 100
|
||||||
implicitHeight: 4
|
implicitHeight: 4
|
||||||
|
width: statusSlider.availableWidth
|
||||||
height: implicitHeight
|
height: implicitHeight
|
||||||
|
|
||||||
color: {
|
color: {
|
||||||
if (statusSlider.value === statusSlider.to) {
|
if (statusSlider.value === statusSlider.to) {
|
||||||
return Theme.palette.primaryColor1
|
return Theme.palette.primaryColor1
|
||||||
|
|
Loading…
Reference in New Issue