-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpaint.go
111 lines (85 loc) · 1.98 KB
/
paint.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
101
102
103
104
105
106
107
108
109
110
111
package shadow
import "github.com/chrsan/shadow/internal"
type Paint struct {
c *internal.Context
ptr int32
}
func (p *Paint) Dispose() {
if p != nil {
p.c.SkiaPaintDestroy(p.ptr)
p = nil
}
}
type PaintStyle uint8
const (
PaintStyleFill PaintStyle = iota
PaintStyleStroke
PaintStyleStrokeAndFill
)
func (p *Paint) Style() PaintStyle {
return PaintStyle(p.c.SkiaPaintGetStyle(p.ptr))
}
func (p *Paint) SetStyle(s PaintStyle) {
p.c.SkiaPaintSetStyle(p.ptr, int32(s))
}
func (p *Paint) Color() uint32 {
return uint32(p.c.SkiaPaintGetColor(p.ptr))
}
func (p *Paint) SetColor(r, g, b, a uint8) {
p.c.SkiaPaintSetColor(p.ptr, int32(r), int32(g), int32(b), int32(a))
}
func (p *Paint) Alpha() uint8 {
return uint8(p.c.SkiaPaintGetAlpha(p.ptr))
}
func (p *Paint) SetAlpha(a uint8) {
p.c.SkiaPaintSetAlpha(p.ptr, int32(a))
}
func (p *Paint) IsAntiAlias() bool {
return p.c.SkiaPaintIsAntiAlias(p.ptr) != 0
}
func (p *Paint) SetAntiAlias(aa bool) {
var b int32
if aa {
b = 1
}
p.c.SkiaPaintSetAntiAlias(p.ptr, b)
}
func (p *Paint) StrokeWidth() float32 {
return p.c.SkiaPaintGetStrokeWidth(p.ptr)
}
func (p *Paint) SetStrokeWidth(w float32) {
p.c.SkiaPaintSetStrokeWidth(p.ptr, w)
}
type StrokeCap uint8
const (
StrokeCapButt StrokeCap = iota
StrokeCapRound
StrokeCapSquare
)
func (p *Paint) StrokeCap() StrokeCap {
return StrokeCap(p.c.SkiaPaintGetStrokeCap(p.ptr))
}
func (p *Paint) SetStrokeCap(c StrokeCap) {
p.c.SkiaPaintSetStrokeCap(p.ptr, int32(c))
}
type StrokeJoin uint8
const (
StrokeJoinMiter StrokeJoin = iota
StrokeJoinRound
StrokeJoinBevel
)
func (p *Paint) StrokeJoin() StrokeJoin {
return StrokeJoin(p.c.SkiaPaintGetStrokeJoin(p.ptr))
}
func (p *Paint) SetStrokeJoin(j StrokeJoin) {
p.c.SkiaPaintSetStrokeJoin(p.ptr, int32(j))
}
func (p *Paint) StrokeMiter() float32 {
return p.c.SkiaPaintGetStrokeMiter(p.ptr)
}
func (p *Paint) SetStrokeMiter(m float32) {
p.c.SkiaPaintSetStrokeMiter(p.ptr, m)
}
func (p *Paint) Reset() {
p.c.SkiaPaintReset(p.ptr)
}