Method: XCB::KeyPressEvent#same_screen
- Defined in:
- ext/xproto.c
#same_screen ⇒ Object
972 973 974 975 976 977 978 |
# File 'ext/xproto.c', line 972
static VALUE
r_XCB_KeyPressEvent_get_same_screen(VALUE r_self)
{
xcb_key_press_event_t *event;
Data_Get_Struct(r_self, xcb_key_press_event_t, event);
return event->same_screen ? Qtrue : Qfalse;
}
|