-
Notifications
You must be signed in to change notification settings - Fork 0
/
checkbox.go
142 lines (107 loc) · 2.85 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// 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 (
"strconv"
"github.com/lxn/win"
)
type CheckState int
const (
CheckUnchecked CheckState = win.BST_UNCHECKED
CheckChecked CheckState = win.BST_CHECKED
CheckIndeterminate CheckState = win.BST_INDETERMINATE
)
var checkBoxCheckSize Size
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.SetBackground(nullBrushSingleton)
cb.GraphicsEffects().Add(InteractionEffect)
cb.GraphicsEffects().Add(FocusEffect)
cb.MustRegisterProperty("CheckState", NewProperty(
func() interface{} {
return cb.CheckState()
},
func(v interface{}) error {
cb.SetCheckState(CheckState(assertIntOr(v, 0)))
return nil
},
cb.CheckStateChanged()))
return cb, nil
}
func (cb *CheckBox) TextOnLeftSide() bool {
return cb.hasStyleBits(win.BS_LEFTTEXT)
}
func (cb *CheckBox) SetTextOnLeftSide(textLeft bool) error {
return cb.ensureStyleBits(win.BS_LEFTTEXT, textLeft)
}
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) SaveState() error {
return cb.WriteState(strconv.Itoa(int(cb.CheckState())))
}
func (cb *CheckBox) RestoreState() error {
s, err := cb.ReadState()
if err != nil {
return err
}
cs, err := strconv.Atoi(s)
if err != nil {
return err
}
cb.SetCheckState(CheckState(cs))
return nil
}
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)
}