Class: XCB::QueryBestSizeReply
- Inherits:
-
Object
- Object
- XCB::QueryBestSizeReply
- Defined in:
- ext/xproto.c
Instance Method Summary collapse
Instance Method Details
#height ⇒ Object
4191 4192 4193 4194 4195 4196 4197 |
# File 'ext/xproto.c', line 4191
static VALUE
r_XCB_QueryBestSizeReply_get_height(VALUE r_self)
{
xcb_query_best_size_reply_t *reply;
Data_Get_Struct(r_self, xcb_query_best_size_reply_t, reply);
return INT2FIX(reply->height);
}
|
#width ⇒ Object
4184 4185 4186 4187 4188 4189 4190 |
# File 'ext/xproto.c', line 4184
static VALUE
r_XCB_QueryBestSizeReply_get_width(VALUE r_self)
{
xcb_query_best_size_reply_t *reply;
Data_Get_Struct(r_self, xcb_query_best_size_reply_t, reply);
return INT2FIX(reply->width);
}
|