-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckbox.go
61 lines (47 loc) · 1.25 KB
/
checkbox.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
// 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 CheckBox struct {
Button
}
func NewCheckBox(parent Container) (*CheckBox, error) {
cb := new(CheckBox)
if err := InitWidget(
cb,
parent,
"BUTTON",
win.WS_TABSTOP|win.WS_VISIBLE|win.BS_AUTOCHECKBOX,
0); err != nil {
return nil, err
}
cb.Button.init()
return cb, nil
}
func (*CheckBox) LayoutFlags() LayoutFlags {
return 0
}
func (cb *CheckBox) MinSizeHint() Size {
defaultSize := cb.dialogBaseUnitsToPixels(Size{50, 10})
textSize := cb.calculateTextSizeImpl("n" + windowText(cb.hWnd))
// FIXME: Use GetThemePartSize instead of GetSystemMetrics?
w := textSize.Width + int(win.GetSystemMetrics(win.SM_CXMENUCHECK))
h := maxi(defaultSize.Height, textSize.Height)
return Size{w, h}
}
func (cb *CheckBox) SizeHint() Size {
return cb.MinSizeHint()
}
func (cb *CheckBox) WndProc(hwnd win.HWND, msg uint32, wParam, lParam uintptr) uintptr {
switch msg {
case win.WM_COMMAND:
switch win.HIWORD(uint32(wParam)) {
case win.BN_CLICKED:
cb.checkedChangedPublisher.Publish()
}
}
return cb.Button.WndProc(hwnd, msg, wParam, lParam)
}