diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-13 12:26:43 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-13 12:26:43 -0500 |
| commit | f3c77bda6e720fe7750fc3db2aa38f8b74faf585 (patch) | |
| tree | 39179c1299e4a28717645776c208ccf1c28c4005 /sysdata_windows.go | |
| parent | c36c863fe11d08b915aa51de96313d5d5049fd97 (diff) | |
Added checkboxes. You can't really do anything with them yet, though...
Diffstat (limited to 'sysdata_windows.go')
| -rw-r--r-- | sysdata_windows.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdata_windows.go b/sysdata_windows.go index fd0d180..6856bc1 100644 --- a/sysdata_windows.go +++ b/sysdata_windows.go @@ -38,6 +38,11 @@ var classTypes = [nctypes]*classData{ style: _BS_PUSHBUTTON | controlstyle, xstyle: 0 | controlxstyle, }, + c_checkbox: &classData{ + name: "BUTTON", + style: _BS_AUTOCHECKBOX | controlstyle, + xstyle: 0 | controlxstyle, + }, } func (s *sysData) addChild(child *sysData) _HMENU { |
