Changes to how scroll bars respond to the mouse
- Left clicking on the gutter jumps to that position - Right clicking on the gutter scrolls incrementally towards that position - Middle clicking on the gutter pages up or down to that position
This commit is contained in:
parent
2d9a941da8
commit
9e8e986977
@ -158,13 +158,27 @@ func (element *ScrollContainer) HandleMouseDown (x, y int, button input.Button)
|
|||||||
element.dragHorizontalBar(point)
|
element.dragHorizontalBar(point)
|
||||||
|
|
||||||
} else if point.In(element.horizontal.gutter) {
|
} else if point.In(element.horizontal.gutter) {
|
||||||
// FIXME: x backend and scroll container should pull these
|
switch button {
|
||||||
// values from the same place
|
case input.ButtonLeft:
|
||||||
|
element.horizontal.dragging = true
|
||||||
|
element.horizontal.dragOffset =
|
||||||
|
element.horizontal.bar.Dx() / 2 +
|
||||||
|
element.Bounds().Min.X
|
||||||
|
element.dragHorizontalBar(point)
|
||||||
|
case input.ButtonMiddle:
|
||||||
|
viewport := element.child.ScrollViewportBounds().Dx()
|
||||||
|
if x > element.horizontal.bar.Min.X {
|
||||||
|
element.scrollChildBy(viewport, 0)
|
||||||
|
} else {
|
||||||
|
element.scrollChildBy(-viewport, 0)
|
||||||
|
}
|
||||||
|
case input.ButtonRight:
|
||||||
if x > element.horizontal.bar.Min.X {
|
if x > element.horizontal.bar.Min.X {
|
||||||
element.scrollChildBy(velocity, 0)
|
element.scrollChildBy(velocity, 0)
|
||||||
} else {
|
} else {
|
||||||
element.scrollChildBy(-velocity, 0)
|
element.scrollChildBy(-velocity, 0)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
} else if point.In(element.vertical.bar) {
|
} else if point.In(element.vertical.bar) {
|
||||||
element.vertical.dragging = true
|
element.vertical.dragging = true
|
||||||
@ -174,11 +188,27 @@ func (element *ScrollContainer) HandleMouseDown (x, y int, button input.Button)
|
|||||||
element.dragVerticalBar(point)
|
element.dragVerticalBar(point)
|
||||||
|
|
||||||
} else if point.In(element.vertical.gutter) {
|
} else if point.In(element.vertical.gutter) {
|
||||||
|
switch button {
|
||||||
|
case input.ButtonLeft:
|
||||||
|
element.vertical.dragging = true
|
||||||
|
element.vertical.dragOffset =
|
||||||
|
element.vertical.bar.Dy() / 2 +
|
||||||
|
element.Bounds().Min.Y
|
||||||
|
element.dragVerticalBar(point)
|
||||||
|
case input.ButtonMiddle:
|
||||||
|
viewport := element.child.ScrollViewportBounds().Dy()
|
||||||
|
if y > element.vertical.bar.Min.Y {
|
||||||
|
element.scrollChildBy(0, viewport)
|
||||||
|
} else {
|
||||||
|
element.scrollChildBy(0, -viewport)
|
||||||
|
}
|
||||||
|
case input.ButtonRight:
|
||||||
if y > element.vertical.bar.Min.Y {
|
if y > element.vertical.bar.Min.Y {
|
||||||
element.scrollChildBy(0, velocity)
|
element.scrollChildBy(0, velocity)
|
||||||
} else {
|
} else {
|
||||||
element.scrollChildBy(0, -velocity)
|
element.scrollChildBy(0, -velocity)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
} else if child, ok := element.child.(elements.MouseTarget); ok {
|
} else if child, ok := element.child.(elements.MouseTarget); ok {
|
||||||
child.HandleMouseDown(x, y, button)
|
child.HandleMouseDown(x, y, button)
|
||||||
|
Reference in New Issue
Block a user