Method: XCB::FocusInEvent#mode

Defined in:
ext/xproto.c

#modeObject



1231
1232
1233
1234
1235
1236
1237
# File 'ext/xproto.c', line 1231

static VALUE
r_XCB_FocusInEvent_get_mode(VALUE r_self)
{
  xcb_focus_in_event_t *event;
  Data_Get_Struct(r_self, xcb_focus_in_event_t, event);
  return INT2FIX(event->mode);
}