-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.go
100 lines (86 loc) · 1.54 KB
/
util.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
package main
import (
"image"
"github.com/as/ui/tag"
"github.com/as/ui/win"
"golang.org/x/mobile/event/mouse"
)
const (
scrollX = 10
sbWidth = 10
)
var (
tagHeight = tag.Height(*ftsize)
sizerR = image.Rect(0, 0, scrollX, tagHeight)
)
func rel(e mouse.Event, p Plane) mouse.Event {
pt := p.Loc().Min
e.X -= float32(pt.X)
e.Y -= float32(pt.Y)
return e
}
func absP(e mouse.Event, sp image.Point) image.Point {
return p(e).Add(sp)
}
func canopy(pt image.Point) bool {
r := g.Loc()
r.Max.Y = r.Min.Y + g.Tag.Loc().Dy()*2
return pt.In(r)
}
func p(e mouse.Event) image.Point {
return image.Pt(int(e.X), int(e.Y))
}
func inSizer(pt image.Point) bool {
return pt.In(sizerR)
}
func inScroll(pt image.Point) bool {
return pt.X >= 0 && pt.X < sbWidth
}
func yRegion(y, ymin, ymax int) int {
if y < ymin {
return 1
}
if y > ymax {
return -1
}
return 0
}
func clamp(v, l, h int64) int64 {
if v < l {
return l
}
if v > h {
return h
}
return v
}
func sweep(w *win.Win, e mouse.Event, s, q0, q1 int64) (int64, int64, int64) {
r := image.Rectangle{image.ZP, w.Size()}
y := int(e.Y)
padY := tagHeight
lo := r.Min.Y + padY
hi := r.Dy() - padY
units := w.Bounds().Dy()
if units == 0 {
units++
}
reg := yRegion(y, lo, hi)
if reg != 0 {
if reg == 1 {
w.Scroll(-((lo-y)%units + 1) * 3)
} else {
w.Scroll(+((y-hi)%units + 1) * 3)
}
}
q := w.IndexOf(image.Pt(int(e.X), int(e.Y))) + w.Origin()
if q0 == s {
if q < q0 {
return q0, q, q0
}
return q0, q0, q
}
if q > q1 {
return q1, q1, q
}
return q1, q, q1
}