forked from lxn/walk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pen.go
180 lines (140 loc) · 3.27 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
// 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.
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 {
handle() win.HPEN
Dispose()
Style() PenStyle
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) handle() win.HPEN {
return p.hPen
}
func (p *nullPen) Style() PenStyle {
return PenNull
}
func (p *nullPen) Width() int {
return 0
}
var nullPenSingleton Pen = 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) handle() 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 {
hPen win.HPEN
style PenStyle
brush Brush
width int
}
func NewGeometricPen(style PenStyle, width int, brush Brush) (*GeometricPen, error) {
if brush == nil {
return nil, newError("brush cannot be nil")
}
style |= win.PS_GEOMETRIC
hPen := win.ExtCreatePen(uint32(style), uint32(width), brush.logbrush(), 0, nil)
if hPen == 0 {
return nil, newError("ExtCreatePen failed")
}
return &GeometricPen{
hPen: hPen,
style: style,
width: width,
brush: brush,
}, nil
}
func (p *GeometricPen) Dispose() {
if p.hPen != 0 {
win.DeleteObject(win.HGDIOBJ(p.hPen))
p.hPen = 0
}
}
func (p *GeometricPen) handle() win.HPEN {
return p.hPen
}
func (p *GeometricPen) Style() PenStyle {
return p.style
}
func (p *GeometricPen) Width() int {
return p.width
}
func (p *GeometricPen) Brush() Brush {
return p.brush
}