-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmenuownerdraw.go
675 lines (555 loc) · 21.5 KB
/
menuownerdraw.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
// Copyright (c) Tailscale Inc. and AUTHORS
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build windows
// +build windows
package walk
import (
"syscall"
"unsafe"
"github.com/tailscale/win"
)
// DefaultActionOwnerDrawHandler is the ActionOwnerDrawHandler used by owner-drawn
// menu items for emulating the way themed menu items are drawn by the system.
var DefaultActionOwnerDrawHandler defaultActionOwnerDrawHandler
// MenuItemMeasureContext is the data passed into an ActionOwnerDrawHandler's
// OnMeasure method to facilitate measurement of an owner-draw menu item.
type MenuItemMeasureContext struct {
Theme *Theme
Window Window
Canvas *Canvas
NormalFont *Font
BoldFont *Font
ThemeFont *Font // The Font that the theme expects to be used for this item in its current state.
Padding int // Theme-compliant spacing that may be used for positioning between sub-components of the menu content.
}
// MenuItemDrawContext is the data passed into an ActionOwnerDrawHandler's
// OnDraw method to facilitate drawing of an owner-draw menu item.
type MenuItemDrawContext struct {
Action uint32 // Drawing action requested by Windows. win.ODA_* constants.
State uint32 // Menu item state provided by Windows. win.ODS_* constants.
Theme *Theme
ThemeStateID int32 // State ID to use when calling any methods on Theme.
Window Window
Canvas *Canvas
NormalFont *Font
BoldFont *Font
ThemeFont *Font // The Font that the theme expects to be used for this item in its current state.
Rectangle Rectangle // Bounds of the content within Canvas.
Padding int // Theme-compliant spacing that may be used for positioning between sub-components of the menu content.
}
// menuItemLayout contains the computed bounds for each component of an
// owner-drawn menu.
type menuItemLayout struct {
contentSize win.SIZE
combinedContentSize win.SIZE
checkboxRect win.RECT
checkboxBgRect win.RECT
contentRect win.RECT
gutterRect win.RECT
selectionRect win.RECT
separatorRect win.RECT
chevronRect win.RECT
chevronClipRect win.RECT
}
// menuSpecificMetrics contains per-menu (as opposed to per-item) metrics.
type menuSpecificMetrics struct {
maxAccelTextExtent win.SIZE
}
func (mm *menuSpecificMetrics) reset() {
mm.maxAccelTextExtent = win.SIZE{}
}
// measureAccelTextExtent measures the size, in pixels, of the right-justified
// text that will be drawn in the menu item for the item's Shortcut.
func (mm *menuSpecificMetrics) measureAccelTextExtent(window Window, action *Action) {
if action.shortcut.Key == 0 {
// This action does not have a Shortcut, so don't bother measuring it.
return
}
wb := window.AsWindowBase()
sm := wb.menuSharedMetrics()
theme, err := window.ThemeForClass(win.VSCLASS_MENU)
if err != nil {
return
}
canvas, err := newCanvasFromWindow(wb)
if err != nil {
return
}
defer canvas.Dispose()
font := sm.fontNormal
if action.Default() {
font = sm.fontBold
}
extent, err := theme.textExtent(canvas, font, win.MENU_POPUPITEM, 0, action.shortcut.String(), win.DT_RIGHT|win.DT_SINGLELINE)
if err != nil {
return
}
// We don't need to track the extents of every single item, just the maximum
// size across all items.
mm.maxAccelTextExtent.CX = max(mm.maxAccelTextExtent.CX, extent.CX)
mm.maxAccelTextExtent.CY = max(mm.maxAccelTextExtent.CY, extent.CY)
}
// menuSharedMetrics contains the font, margin, and size metrics for all menus
// associated with a specific window and theme.
type menuSharedMetrics struct {
dpi int
checkMargins win.MARGINS // Margins surrounding a check mark for check background
checkBgMargins win.MARGINS // Margins surrounding checkMargins to provide space for gutter
itemMargins win.MARGINS // Margins surrounding an item (excluding checkbox)
contentMargins win.MARGINS // Margins surrounding the item's content
chevronMargins win.MARGINS // Margins surrounding a submenu chevron
checkSize ThemeSizeMetric // Size of a check mark
combinedCheckSize win.SIZE // Size of a check mark, plus margins
gutterSize win.SIZE // combinedCheckSize, plus check background margins
chevronSize ThemeSizeMetric // Size of a submenu chevron
combinedChevronSize win.SIZE // Size of a submenu chevron, plus margins
separatorSize ThemeSizeMetric // Size of a separator
combinedSeparatorSize win.SIZE // Size of a separator, plus margins
fontNormal *Font
fontBold *Font
}
// DPI returns the pixel density used for the metrics in sm.
func (sm *menuSharedMetrics) DPI() int {
return sm.dpi
}
// CopyForDPI creates a new menuSharedMetrics whose contents have been scaled
// for use at dpi.
func (sm *menuSharedMetrics) CopyForDPI(dpi int) *menuSharedMetrics {
result := &menuSharedMetrics{
dpi: dpi,
checkMargins: sm.checkMargins, // checkMargins is not scaled
checkBgMargins: sm.checkBgMargins, // checkBgMargins is not scaled
itemMargins: sm.itemMargins, // itemMargins is not scaled
contentMargins: scaleMARGINS(sm.contentMargins, float64(dpi)/float64(sm.dpi)),
chevronMargins: sm.chevronMargins, // chevronMargins is not scaled
checkSize: sm.checkSize.(ThemeSizeScaler).CopyForDPI(dpi),
chevronSize: sm.chevronSize.(ThemeSizeScaler).CopyForDPI(dpi),
separatorSize: sm.separatorSize.(ThemeSizeScaler).CopyForDPI(dpi),
fontNormal: sm.fontNormal, // DPI scaling handled within Font
fontBold: sm.fontBold, // DPI scaling handled within Font
}
result.buildDependentSizes()
return result
}
// newMenuSharedMetrics constructs a new menuSharedMetrics containing
// measurements as they apply to window at 96 (ie, 100%) DPI. Metrics for
// other pixel densities may be obtained by calling CopyForDPI on the metrics
// returned by this function.
func newMenuSharedMetrics(window Window) *menuSharedMetrics {
dpi := window.DPI()
sm := &menuSharedMetrics{dpi: dpi}
theme, err := window.ThemeForClass(win.VSCLASS_MENU)
if err != nil {
return nil
}
sm.separatorSize, err = theme.partSize(win.MENU_POPUPSEPARATOR, 0, nil, win.TS_TRUE)
if err != nil {
return nil
}
sm.checkSize, err = theme.partSize(win.MENU_POPUPCHECK, 0, nil, win.TS_TRUE)
if err != nil {
return nil
}
borderSize, err := theme.Integer(win.MENU_POPUPITEM, 0, win.TMT_BORDERSIZE)
if err != nil {
return nil
}
bgBorderSize, err := theme.Integer(win.MENU_POPUPBACKGROUND, 0, win.TMT_BORDERSIZE)
if err != nil {
return nil
}
sm.checkMargins, err = theme.margins(win.MENU_POPUPCHECK, 0, win.TMT_CONTENTMARGINS, nil)
if err != nil {
return nil
}
sm.checkBgMargins, err = theme.margins(win.MENU_POPUPCHECKBACKGROUND, 0, win.TMT_CONTENTMARGINS, nil)
if err != nil {
return nil
}
sm.itemMargins, err = theme.margins(win.MENU_POPUPITEM, 0, win.TMT_CONTENTMARGINS, nil)
if err != nil {
return nil
}
sm.chevronMargins, err = theme.margins(win.MENU_POPUPSUBMENU, 0, win.TMT_CONTENTMARGINS, nil)
if err != nil {
return nil
}
sm.chevronSize, err = theme.partSize(win.MENU_POPUPSUBMENU, 0, nil, win.TS_TRUE)
if err != nil {
return nil
}
sm.fontNormal, err = theme.SysFont(win.TMT_MENUFONT)
if err != nil {
return nil
}
// A menu's default item is expected to be drawn using bold text.
// Themes do not provide a specific bold font for menus, so we make one by
// adjusting fontNormal.
lf := sm.fontNormal.LOGFONTForDPI(dpi)
if lf == nil {
return nil
}
lf.LfWeight = win.FW_BOLD
sm.fontBold, err = newFontFromLOGFONT(lf, dpi)
if err != nil {
return nil
}
sm.contentMargins = sm.itemMargins
sm.contentMargins.LeftWidth = bgBorderSize
sm.contentMargins.RightWidth = borderSize
sm.buildDependentSizes()
return sm
}
func (sm *menuSharedMetrics) buildDependentSizes() {
if checkSize, err := sm.checkSize.partSize(); err == nil {
sm.combinedCheckSize = checkSize
addMargins(&sm.combinedCheckSize, sm.checkMargins)
sm.gutterSize = sm.combinedCheckSize
addMargins(&sm.gutterSize, sm.checkBgMargins)
}
if chevronSize, err := sm.chevronSize.partSize(); err == nil {
sm.combinedChevronSize = chevronSize
addMargins(&sm.combinedChevronSize, sm.chevronMargins)
}
if separatorSize, err := sm.separatorSize.partSize(); err == nil {
sm.combinedSeparatorSize = separatorSize
addMargins(&sm.combinedSeparatorSize, sm.itemMargins)
}
}
// measure measures an entire menu item, delegating measurement of the content
// area to odi.handler.OnMeasure. This allows walk to handle the measurement of
// all common menu features (backgrounds, checkboxes, margins, chevrons, etc.)
// while enabling the application to focus only on measuring its custom content.
func (ml *menuItemLayout) measure(w Window, odi *ownerDrawnMenuItemInfo) (uint32, uint32) {
sm := odi.sharedMetrics
if odi.action.IsSeparator() {
return uint32(sm.combinedSeparatorSize.CX), uint32(sm.combinedSeparatorSize.CY)
}
theme, err := w.ThemeForClass(win.VSCLASS_MENU)
if err != nil {
return 0, 0
}
wb := w.AsWindowBase()
canvas, err := newCanvasFromWindow(wb)
if err != nil {
return 0, 0
}
defer canvas.Dispose()
canvas.dpi = sm.DPI()
// Ask the ActionOwnerDrawHandler for its custom content's measurements.
mctx := MenuItemMeasureContext{
Theme: theme,
Window: w,
Canvas: canvas,
NormalFont: sm.fontNormal,
BoldFont: sm.fontBold,
Padding: int(sm.contentMargins.LeftWidth),
}
if odi.action.Default() {
mctx.ThemeFont = sm.fontBold
} else {
mctx.ThemeFont = sm.fontNormal
}
contentCX, contentCY := odi.handler.OnMeasure(odi.action, &mctx)
// Add accelerator text into the content size.
mm := odi.perMenuMetrics
if mm.maxAccelTextExtent.CX > 0 {
// The metrics for spacing between the end of menu text and the beginning
// of accelerator text are undocumented. A decent heuristic seems to be to
// make that space equal to the width of the widest accelerator text in
// the menu (hence multiplying mm.maxAccelTextExtent.CX by 2: one copy for
// the spacer, one copy for the text itself).
contentCX += 2 * uint32(mm.maxAccelTextExtent.CX)
contentCY = max(contentCY, uint32(mm.maxAccelTextExtent.CY))
}
ml.contentSize.CX = int32(contentCX)
ml.contentSize.CY = int32(contentCY)
// Add margins to the content size.
ml.combinedContentSize = ml.contentSize
addMargins(&ml.combinedContentSize, sm.contentMargins)
// Add the width of a submenu chevron (even when not a submenu).
ml.combinedContentSize.CX += sm.combinedChevronSize.CX
// combinedContentItemSize is the accumulated size of everything to the right
// of the gutter.
combinedContentItemSize := ml.combinedContentSize
addMargins(&combinedContentItemSize, sm.itemMargins)
// Start with the width of the entire gutter, and then add in the width of the
// rest of the menu item.
cx := uint32(sm.gutterSize.CX + combinedContentItemSize.CX)
// On the Y-axis, we want the maximum height across checkbox, content, and chevron.
cy := uint32(max(sm.gutterSize.CY, combinedContentItemSize.CY, sm.combinedChevronSize.CY))
return cx, cy
}
// layout takes the bounds of the menu item, as specified by rect, and positions
// common menu item features within that rect.
func (ml *menuItemLayout) layout(sm *menuSharedMetrics, rect *win.RECT) {
// The selection rect is simply the entire menu item.
ml.selectionRect = *rect
x := rect.Left
y := rect.Top
h := rect.Height()
// Gutter: Background extending from the left of the item, across the checkbox
// background (including margins). Full height.
ml.gutterRect = win.RECT{x, y, x + sm.gutterSize.CX, y + h}
// Checkbox background: Leftmost item, centered vertically.
offsetVCenter := (h - sm.combinedCheckSize.CY) / 2
ml.checkboxBgRect = win.RECT{x, y + offsetVCenter, x + sm.combinedCheckSize.CX, y + sm.combinedCheckSize.CY + offsetVCenter}
// Checkbox: Rendered overtop of checkbox background. Just strip margins
// from checkboxBgRect to obtain the checkboxRect.
ml.checkboxRect = ml.checkboxBgRect
stripMargins(&ml.checkboxRect, sm.checkMargins)
x += ml.gutterRect.Width()
// Separator: Starts to the right of gutter, extends all the way to the right.
// Centered vertically.
offsetVCenter = (h - sm.combinedSeparatorSize.CY) / 2
ml.separatorRect = win.RECT{x, y + offsetVCenter, rect.Right, y + sm.combinedSeparatorSize.CY + offsetVCenter}
stripMargins(&ml.separatorRect, sm.itemMargins)
// Content: Start to the right of gutter, extend all the way to the right.
// Center vertically, then strip margins.
offsetVCenter = (h - ml.combinedContentSize.CY) / 2
ml.contentRect = win.RECT{x, y + offsetVCenter, rect.Right, y + ml.combinedContentSize.CY + offsetVCenter}
stripMargins(&ml.contentRect, sm.contentMargins)
// Chevron: Rightmost item, centered vertically.
offsetVCenter = (h - sm.combinedChevronSize.CY) / 2
ml.chevronClipRect = win.RECT{rect.Right - sm.combinedChevronSize.CX, y + offsetVCenter, rect.Right, y + sm.combinedChevronSize.CY + offsetVCenter}
ml.chevronRect = ml.chevronClipRect
stripMargins(&ml.chevronRect, sm.chevronMargins)
}
// ownerDrawnMenuItemInfo is the per-item data that must be associated with any
// menu item.
type ownerDrawnMenuItemInfo struct {
win.MSAAMENUINFO // must embed MSAAMENUINFO for proper a11y support
text string
action *Action
handler ActionOwnerDrawHandler
sharedMetrics *menuSharedMetrics
perMenuMetrics *menuSpecificMetrics
layout menuItemLayout
mnemonic Key
}
// newOwnerDrawnMenuItemInfo instantiates an ownerDrawnMenuItemInfo and sets up
// the association between action and handler, the latter of which performs the
// actual measurement and drawing.
func newOwnerDrawnMenuItemInfo(action *Action, handler ActionOwnerDrawHandler) *ownerDrawnMenuItemInfo {
result := &ownerDrawnMenuItemInfo{
MSAAMENUINFO: win.MSAAMENUINFO{
MSAASignature: win.MSAA_MENU_SIG,
},
action: action,
handler: handler,
}
result.updateText()
action.addChangedHandler(result)
return result
}
// updateText synchronizes odi's a11y text and keyboard mnemonics with
// odi.action.text.
func (odi *ownerDrawnMenuItemInfo) updateText() {
if odi.action.text == odi.text {
return
}
odi.text = odi.action.text
textUTF16 := syscall.StringToUTF16(odi.action.text)
odi.updateMnemonic(textUTF16)
if len(textUTF16) == 0 {
odi.MSAAMENUINFO.TextLenExclNul = 0
odi.MSAAMENUINFO.Text = nil
return
}
odi.MSAAMENUINFO.TextLenExclNul = uint32(len(textUTF16) - 1)
odi.MSAAMENUINFO.Text = &textUTF16[0]
}
func (odi *ownerDrawnMenuItemInfo) updateMnemonic(textUTF16 []uint16) {
odi.mnemonic = findExplicitMnemonic(textUTF16)
}
// findExplicitMnemonic searches the menu text for the first '&'-prefixed
// character (if present) and then returns that character's virtual key code as
// the mnemonic.
func findExplicitMnemonic(textUTF16 []uint16) (newMnemonic Key) {
var maybeMnemonic bool
for _, p := range textUTF16 {
if maybeMnemonic {
maybeMnemonic = false
if p == '&' {
continue
}
// Convert the UTF-16 code unit into a virtual key code.
vkInfo := win.VkKeyScan(p)
if vkInfo != -1 {
// The virtual key code is in the lower byte of vkInfo.
newMnemonic = Key(vkInfo & 0xFF)
break
}
} else if p == '&' {
maybeMnemonic = true
}
}
return newMnemonic
}
func (odi *ownerDrawnMenuItemInfo) onActionChanged(action *Action) error {
odi.updateText()
return nil
}
func (odi *ownerDrawnMenuItemInfo) onActionVisibleChanged(action *Action) error {
return nil
}
func (odi *ownerDrawnMenuItemInfo) onMeasure(w Window, mis *win.MEASUREITEMSTRUCT) {
mis.ItemWidth, mis.ItemHeight = odi.layout.measure(w, odi)
}
// themeStates holds the uxtheme part states for the various components of the
// menu item.
type themeStates struct {
item int32
chevron int32
checked bool
checkBg int32 // checkBg is ignored unless checked == true
checkFg int32 // checkFg is ignored unless checked == true
}
// itemStateToThemeStates takes the menu item's state from a win.DRAWITEMSTRUCT
// and converts it to the theme states for each sub-component of a menu item.
// These values derived from the vsstyle constants defined in the win package.
func (odi *ownerDrawnMenuItemInfo) itemStateToThemeStates(state uint32) (result themeStates) {
result.checked = (state & win.ODS_CHECKED) != 0
disabled := (state & (win.ODS_DISABLED | win.ODS_GRAYED)) != 0
hot := (state & (win.ODS_HOTLIGHT | win.ODS_SELECTED)) != 0
result.item = win.MPI_NORMAL
result.chevron = win.MSM_NORMAL
if hot {
result.item++
}
if disabled {
result.chevron = win.MSM_DISABLED
// An item's disabled state is offset by 2 from its enabled state.
result.item += 2
}
if !result.checked {
return result
}
checkFg := int32(win.MC_CHECKMARKNORMAL)
if odi.action.Exclusive() {
checkFg = win.MC_BULLETNORMAL
}
if disabled {
result.checkBg = win.MCB_DISABLED
// Foreground disabled state is the normal state, plus one.
checkFg++
} else {
result.checkBg = win.MCB_NORMAL
}
result.checkFg = checkFg
return result
}
// onDraw draws an entire menu item, delegating rendering of the content area
// to odi.handler.OnDraw. This allows walk to handle the layout of all common
// menu features (backgrounds, checkboxes, margins etc) while enabling the
// application to focus only on rendering its custom content.
func (odi *ownerDrawnMenuItemInfo) onDraw(w Window, dis *win.DRAWITEMSTRUCT) {
sm := odi.sharedMetrics
odi.layout.layout(sm, &dis.RcItem)
isSubMenu := odi.action.menu != nil
if isSubMenu {
// Windows unconditionally tries to draw an unthemed submenu chevron atop
// submenu items when they're owner-drawn. We don't want that because
// we're trying to draw a themed submenu chevron ourselves.
// We can achieve this by drawing our chevron from within this method,
// and then excluding the chevron's rect from the DC's clip rect before
// returning.
// (Note that we need to do this on dis.HDC, but *after* the buffered paint
// blitting that occurs below, so we set up this defer here.)
cr := odi.layout.chevronClipRect
defer win.ExcludeClipRect(dis.HDC, cr.Left, cr.Top, cr.Right, cr.Bottom)
}
theme, err := w.ThemeForClass(win.VSCLASS_MENU)
if err != nil {
return
}
bpp := win.BP_PAINTPARAMS{
Flags: win.BPPF_ERASE,
}
bpp.Size = uint32(unsafe.Sizeof(bpp))
// We need to request a top-down DIB so that the system can utilize alpha
// blending. We draw into bp instead of dis.HDC. The former is blitted back
// into the latter when we return from this method.
// We render to bp using the same coordinates that we would have used with dis.HDC.
bp, err := beginBufferedPaint(dis.HDC, &dis.RcItem, win.BPBF_TOPDOWNDIB, &bpp)
if err != nil {
return
}
defer bp.End()
canvas, err := bp.Canvas()
if err != nil {
return
}
defer canvas.Dispose()
dpi := sm.DPI()
canvas.dpi = dpi
theme.drawBackground(canvas, win.MENU_POPUPBACKGROUND, 0, &dis.RcItem)
theme.drawBackground(canvas, win.MENU_POPUPGUTTER, 0, &odi.layout.gutterRect)
if odi.action.IsSeparator() {
theme.drawBackground(canvas, win.MENU_POPUPSEPARATOR, 0, &odi.layout.separatorRect)
return
}
themeStates := odi.itemStateToThemeStates(dis.ItemState)
theme.drawBackground(canvas, win.MENU_POPUPITEM, themeStates.item, &odi.layout.selectionRect)
if themeStates.checked {
theme.drawBackground(canvas, win.MENU_POPUPCHECKBACKGROUND, themeStates.checkBg, &odi.layout.checkboxBgRect)
theme.drawBackground(canvas, win.MENU_POPUPCHECK, themeStates.checkFg, &odi.layout.checkboxRect)
} else if odi.action.image != nil {
// Use the same bounds that we'd use for the checkbox.
if bmp, err := iconCache.Bitmap(odi.action.image, dpi); err == nil {
canvas.DrawBitmapWithOpacityPixels(bmp, rectangleFromRECT(odi.layout.checkboxRect), 0xff)
}
}
odCtx := MenuItemDrawContext{
Action: dis.ItemAction,
State: dis.ItemState,
Theme: theme,
ThemeStateID: themeStates.item,
Window: w,
Canvas: canvas,
NormalFont: sm.fontNormal,
BoldFont: sm.fontBold,
Rectangle: rectangleFromRECT(odi.layout.contentRect),
Padding: int(sm.contentMargins.LeftWidth),
}
if odi.action.Default() {
odCtx.ThemeFont = sm.fontBold
} else {
odCtx.ThemeFont = sm.fontNormal
}
odi.handler.OnDraw(odi.action, &odCtx)
if isSubMenu {
theme.drawBackground(canvas, win.MENU_POPUPSUBMENU, themeStates.chevron, &odi.layout.chevronRect)
}
}
func (odi *ownerDrawnMenuItemInfo) Dispose() {
odi.MSAAMENUINFO.TextLenExclNul = 0
odi.MSAAMENUINFO.Text = nil
odi.action.removeChangedHandler(odi)
odi.action = nil
odi.sharedMetrics = nil
odi.perMenuMetrics = nil
}
type defaultActionOwnerDrawHandler struct{}
// OnMeasure by default just measures the extents of the menu text.
func (defaultActionOwnerDrawHandler) OnMeasure(action *Action, mctx *MenuItemMeasureContext) (widthPixels, heightPixels uint32) {
extent, err := mctx.Theme.textExtent(mctx.Canvas, mctx.ThemeFont, win.MENU_POPUPITEM, 0, action.Text(), win.DT_LEFT|win.DT_SINGLELINE)
if err == nil {
widthPixels = uint32(extent.CX)
heightPixels = uint32(extent.CY)
}
return widthPixels, heightPixels
}
// OnDraw by default draws both the menu text and the accelerator text, if any.
func (defaultActionOwnerDrawHandler) OnDraw(action *Action, dctx *MenuItemDrawContext) {
flags := uint32(win.DT_LEFT | win.DT_SINGLELINE)
if (dctx.State & win.ODS_NOACCEL) != 0 {
flags |= win.DT_HIDEPREFIX
}
dctx.Theme.DrawText(dctx.Canvas, dctx.ThemeFont, win.MENU_POPUPITEM, dctx.ThemeStateID, action.Text(), flags, dctx.Rectangle, nil)
if action.shortcut.Key != 0 {
flags = win.DT_RIGHT | win.DT_SINGLELINE | win.DT_HIDEPREFIX
dctx.Theme.DrawText(dctx.Canvas, dctx.ThemeFont, win.MENU_POPUPITEM, dctx.ThemeStateID, action.shortcut.String(), flags, dctx.Rectangle, nil)
}
}