Community
Participate
Working Groups
switch ((int)/*64*/wParam) {
case ' ':
if ((style & SWT.CHECK) != 0) {
int index = (int)/*64*/OS.SendMessage (handle, OS.LVM_GETNEXTITEM, -1, OS.LVNI_FOCUSED);
int index = (int)/*64*/OS.SendMessage (handle, OS.LVM_GETNEXTITEM, -1, OS.LVNI_SELECTED);
if (index != -1) {
while (index != -1) {
TableItem item = _getItem (index);
item.setChecked (!item.getChecked (), true);
if (!OS.IsWinCE) {
OS.NotifyWinEvent (OS.EVENT_OBJECT_FOCUS, handle, OS.OBJID_CLIENT, index + 1);
}
index = (int)/*64*/OS.SendMessage (handle, OS.LVM_GETNEXTITEM, index, OS.LVNI_SELECTED);
/*
* NOTE: Call the window proc with WM_KEYDOWN rather than WM_CHAR