forked from lxn/walk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckbox.go
125 lines (95 loc) · 2.64 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
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
// 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 CheckState int
const (
CheckUnchecked CheckState = win.BST_UNCHECKED
CheckChecked CheckState = win.BST_CHECKED
CheckIndeterminate CheckState = win.BST_INDETERMINATE
)
type CheckBox struct {
Button
checkStateChangedPublisher EventPublisher
}
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()
cb.MustRegisterProperty("CheckState", NewProperty(
func() interface{} {
return cb.CheckState()
},
func(v interface{}) error {
cb.SetCheckState(v.(CheckState))
return nil
},
cb.CheckStateChanged()))
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) setChecked(checked bool) {
cb.Button.setChecked(checked)
cb.checkStateChangedPublisher.Publish()
}
func (cb *CheckBox) Tristate() bool {
return cb.hasStyleBits(win.BS_AUTO3STATE)
}
func (cb *CheckBox) SetTristate(tristate bool) error {
var set, clear uint32
if tristate {
set, clear = win.BS_AUTO3STATE, win.BS_AUTOCHECKBOX
} else {
set, clear = win.BS_AUTOCHECKBOX, win.BS_AUTO3STATE
}
return cb.setAndClearStyleBits(set, clear)
}
func (cb *CheckBox) CheckState() CheckState {
return CheckState(cb.SendMessage(win.BM_GETCHECK, 0, 0))
}
func (cb *CheckBox) SetCheckState(state CheckState) {
if state == cb.CheckState() {
return
}
cb.SendMessage(win.BM_SETCHECK, uintptr(state), 0)
cb.checkedChangedPublisher.Publish()
cb.checkStateChangedPublisher.Publish()
}
func (cb *CheckBox) CheckStateChanged() *Event {
return cb.checkStateChangedPublisher.Event()
}
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()
cb.checkStateChangedPublisher.Publish()
}
}
return cb.Button.WndProc(hwnd, msg, wParam, lParam)
}