Class: XCB::GetScreenSaverReply
- Inherits:
-
Object
- Object
- XCB::GetScreenSaverReply
- Defined in:
- ext/xproto.c
Instance Method Summary collapse
Instance Method Details
#allow_exposures ⇒ Object
4368 4369 4370 4371 4372 4373 4374 |
# File 'ext/xproto.c', line 4368
static VALUE
r_XCB_GetScreenSaverReply_get_allow_exposures(VALUE r_self)
{
xcb_get_screen_saver_reply_t *reply;
Data_Get_Struct(r_self, xcb_get_screen_saver_reply_t, reply);
return INT2FIX(reply->allow_exposures);
}
|
#interval ⇒ Object
4354 4355 4356 4357 4358 4359 4360 |
# File 'ext/xproto.c', line 4354
static VALUE
r_XCB_GetScreenSaverReply_get_interval(VALUE r_self)
{
xcb_get_screen_saver_reply_t *reply;
Data_Get_Struct(r_self, xcb_get_screen_saver_reply_t, reply);
return INT2FIX(reply->interval);
}
|
#prefer_blanking ⇒ Object
4361 4362 4363 4364 4365 4366 4367 |
# File 'ext/xproto.c', line 4361
static VALUE
r_XCB_GetScreenSaverReply_get_prefer_blanking(VALUE r_self)
{
xcb_get_screen_saver_reply_t *reply;
Data_Get_Struct(r_self, xcb_get_screen_saver_reply_t, reply);
return INT2FIX(reply->prefer_blanking);
}
|
#timeout ⇒ Object
4347 4348 4349 4350 4351 4352 4353 |
# File 'ext/xproto.c', line 4347
static VALUE
r_XCB_GetScreenSaverReply_get_timeout(VALUE r_self)
{
xcb_get_screen_saver_reply_t *reply;
Data_Get_Struct(r_self, xcb_get_screen_saver_reply_t, reply);
return INT2FIX(reply->timeout);
}
|