Method: XCB::EnterNotifyEvent#same_screen_focus

Defined in:
ext/xproto.c

#same_screen_focusObject



1210
1211
1212
1213
1214
1215
1216
# File 'ext/xproto.c', line 1210

static VALUE
r_XCB_EnterNotifyEvent_get_same_screen_focus(VALUE r_self)
{
  xcb_enter_notify_event_t *event;
  Data_Get_Struct(r_self, xcb_enter_notify_event_t, event);
  return INT2FIX(event->same_screen_focus);
}