-
Notifications
You must be signed in to change notification settings - Fork 887
/
pen.go
210 lines (164 loc) · 4 KB
/
pen.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
// Copyright 2010 The Walk Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build windows
package walk
import (
"github.com/lxn/win"
)
type PenStyle int
// Pen styles
const (
PenSolid PenStyle = win.PS_SOLID
PenDash PenStyle = win.PS_DASH
PenDot PenStyle = win.PS_DOT
PenDashDot PenStyle = win.PS_DASHDOT
PenDashDotDot PenStyle = win.PS_DASHDOTDOT
PenNull PenStyle = win.PS_NULL
PenInsideFrame PenStyle = win.PS_INSIDEFRAME
PenUserStyle PenStyle = win.PS_USERSTYLE
PenAlternate PenStyle = win.PS_ALTERNATE
)
// Pen cap styles (geometric pens only)
const (
PenCapRound PenStyle = win.PS_ENDCAP_ROUND
PenCapSquare PenStyle = win.PS_ENDCAP_SQUARE
PenCapFlat PenStyle = win.PS_ENDCAP_FLAT
)
// Pen join styles (geometric pens only)
const (
PenJoinBevel PenStyle = win.PS_JOIN_BEVEL
PenJoinMiter PenStyle = win.PS_JOIN_MITER
PenJoinRound PenStyle = win.PS_JOIN_ROUND
)
type Pen interface {
handleForDPI(dpi int) win.HPEN
Dispose()
Style() PenStyle
// Width returns pen width in 1/96" units.
Width() int
}
type nullPen struct {
hPen win.HPEN
}
func newNullPen() *nullPen {
lb := &win.LOGBRUSH{LbStyle: win.BS_NULL}
hPen := win.ExtCreatePen(win.PS_COSMETIC|win.PS_NULL, 1, lb, 0, nil)
if hPen == 0 {
panic("failed to create null brush")
}
return &nullPen{hPen: hPen}
}
func (p *nullPen) Dispose() {
if p.hPen != 0 {
win.DeleteObject(win.HGDIOBJ(p.hPen))
p.hPen = 0
}
}
func (p *nullPen) handleForDPI(dpi int) win.HPEN {
return p.hPen
}
func (p *nullPen) Style() PenStyle {
return PenNull
}
func (p *nullPen) Width() int {
return 0
}
var nullPenSingleton Pen
func init() {
AppendToWalkInit(func() {
nullPenSingleton = newNullPen()
})
}
func NullPen() Pen {
return nullPenSingleton
}
type CosmeticPen struct {
hPen win.HPEN
style PenStyle
color Color
}
func NewCosmeticPen(style PenStyle, color Color) (*CosmeticPen, error) {
lb := &win.LOGBRUSH{LbStyle: win.BS_SOLID, LbColor: win.COLORREF(color)}
style |= win.PS_COSMETIC
hPen := win.ExtCreatePen(uint32(style), 1, lb, 0, nil)
if hPen == 0 {
return nil, newError("ExtCreatePen failed")
}
return &CosmeticPen{hPen: hPen, style: style, color: color}, nil
}
func (p *CosmeticPen) Dispose() {
if p.hPen != 0 {
win.DeleteObject(win.HGDIOBJ(p.hPen))
p.hPen = 0
}
}
func (p *CosmeticPen) handleForDPI(dpi int) win.HPEN {
return p.hPen
}
func (p *CosmeticPen) Style() PenStyle {
return p.style
}
func (p *CosmeticPen) Color() Color {
return p.color
}
func (p *CosmeticPen) Width() int {
return 1
}
type GeometricPen struct {
dpi2hPen map[int]win.HPEN
style PenStyle
brush Brush
width96dpi int
}
// NewGeometricPen prepares new geometric pen. width parameter is specified in 1/96" units.
func NewGeometricPen(style PenStyle, width int, brush Brush) (*GeometricPen, error) {
if brush == nil {
return nil, newError("brush cannot be nil")
}
style |= win.PS_GEOMETRIC
return &GeometricPen{
style: style,
width96dpi: width,
brush: brush,
}, nil
}
func (p *GeometricPen) Dispose() {
if len(p.dpi2hPen) == 0 {
return
}
for dpi, hPen := range p.dpi2hPen {
win.DeleteObject(win.HGDIOBJ(hPen))
delete(p.dpi2hPen, dpi)
}
}
func (p *GeometricPen) handleForDPI(dpi int) win.HPEN {
hPen, _ := p.handleForDPIWithError(dpi)
return hPen
}
func (p *GeometricPen) handleForDPIWithError(dpi int) (win.HPEN, error) {
if p.dpi2hPen == nil {
p.dpi2hPen = make(map[int]win.HPEN)
} else if handle, ok := p.dpi2hPen[dpi]; ok {
return handle, nil
}
hPen := win.ExtCreatePen(
uint32(p.style),
uint32(IntFrom96DPI(p.width96dpi, dpi)),
p.brush.logbrush(), 0, nil)
if hPen == 0 {
return 0, newError("ExtCreatePen failed")
}
p.dpi2hPen[dpi] = hPen
return hPen, nil
}
func (p *GeometricPen) Style() PenStyle {
return p.style
}
// Width returns pen width in 1/96" units.
func (p *GeometricPen) Width() int {
return p.width96dpi
}
func (p *GeometricPen) Brush() Brush {
return p.brush
}