Class: XCB::QueryTextExtentsReply
- Inherits:
-
Object
- Object
- XCB::QueryTextExtentsReply
- Defined in:
- ext/xproto.c
Instance Method Summary collapse
- #draw_direction ⇒ Object
- #font_ascent ⇒ Object
- #font_descent ⇒ Object
- #overall_ascent ⇒ Object
- #overall_descent ⇒ Object
- #overall_left ⇒ Object
- #overall_right ⇒ Object
- #overall_width ⇒ Object
Instance Method Details
#draw_direction ⇒ Object
3671 3672 3673 3674 3675 3676 3677 |
# File 'ext/xproto.c', line 3671
static VALUE
r_XCB_QueryTextExtentsReply_get_draw_direction(VALUE r_self)
{
xcb_query_text_extents_reply_t *reply;
Data_Get_Struct(r_self, xcb_query_text_extents_reply_t, reply);
return INT2FIX(reply->draw_direction);
}
|
#font_ascent ⇒ Object
3678 3679 3680 3681 3682 3683 3684 |
# File 'ext/xproto.c', line 3678
static VALUE
r_XCB_QueryTextExtentsReply_get_font_ascent(VALUE r_self)
{
xcb_query_text_extents_reply_t *reply;
Data_Get_Struct(r_self, xcb_query_text_extents_reply_t, reply);
return INT2FIX(reply->font_ascent);
}
|
#font_descent ⇒ Object
3685 3686 3687 3688 3689 3690 3691 |
# File 'ext/xproto.c', line 3685
static VALUE
r_XCB_QueryTextExtentsReply_get_font_descent(VALUE r_self)
{
xcb_query_text_extents_reply_t *reply;
Data_Get_Struct(r_self, xcb_query_text_extents_reply_t, reply);
return INT2FIX(reply->font_descent);
}
|
#overall_ascent ⇒ Object
3692 3693 3694 3695 3696 3697 3698 |
# File 'ext/xproto.c', line 3692
static VALUE
r_XCB_QueryTextExtentsReply_get_overall_ascent(VALUE r_self)
{
xcb_query_text_extents_reply_t *reply;
Data_Get_Struct(r_self, xcb_query_text_extents_reply_t, reply);
return INT2FIX(reply->overall_ascent);
}
|
#overall_descent ⇒ Object
3699 3700 3701 3702 3703 3704 3705 |
# File 'ext/xproto.c', line 3699
static VALUE
r_XCB_QueryTextExtentsReply_get_overall_descent(VALUE r_self)
{
xcb_query_text_extents_reply_t *reply;
Data_Get_Struct(r_self, xcb_query_text_extents_reply_t, reply);
return INT2FIX(reply->overall_descent);
}
|
#overall_left ⇒ Object
3713 3714 3715 3716 3717 3718 3719 |
# File 'ext/xproto.c', line 3713
static VALUE
r_XCB_QueryTextExtentsReply_get_overall_left(VALUE r_self)
{
xcb_query_text_extents_reply_t *reply;
Data_Get_Struct(r_self, xcb_query_text_extents_reply_t, reply);
return INT2FIX(reply->overall_left);
}
|
#overall_right ⇒ Object
3720 3721 3722 3723 3724 3725 3726 |
# File 'ext/xproto.c', line 3720
static VALUE
r_XCB_QueryTextExtentsReply_get_overall_right(VALUE r_self)
{
xcb_query_text_extents_reply_t *reply;
Data_Get_Struct(r_self, xcb_query_text_extents_reply_t, reply);
return INT2FIX(reply->overall_right);
}
|
#overall_width ⇒ Object
3706 3707 3708 3709 3710 3711 3712 |
# File 'ext/xproto.c', line 3706
static VALUE
r_XCB_QueryTextExtentsReply_get_overall_width(VALUE r_self)
{
xcb_query_text_extents_reply_t *reply;
Data_Get_Struct(r_self, xcb_query_text_extents_reply_t, reply);
return INT2FIX(reply->overall_width);
}
|