Class: XCB::GetInputFocusReply
- Inherits:
-
Object
- Object
- XCB::GetInputFocusReply
- Defined in:
- ext/xproto.c
Instance Method Summary collapse
Instance Method Details
#focus ⇒ Object
3514 3515 3516 3517 3518 3519 3520 |
# File 'ext/xproto.c', line 3514
static VALUE
r_XCB_GetInputFocusReply_get_focus(VALUE r_self)
{
xcb_get_input_focus_reply_t *reply;
Data_Get_Struct(r_self, xcb_get_input_focus_reply_t, reply);
return INT2FIX(reply->focus);
}
|
#revert_to ⇒ Object
3507 3508 3509 3510 3511 3512 3513 |
# File 'ext/xproto.c', line 3507
static VALUE
r_XCB_GetInputFocusReply_get_revert_to(VALUE r_self)
{
xcb_get_input_focus_reply_t *reply;
Data_Get_Struct(r_self, xcb_get_input_focus_reply_t, reply);
return INT2FIX(reply->revert_to);
}
|