Class: XCB::FONTPROP
- Inherits:
-
Object
- Object
- XCB::FONTPROP
- Defined in:
- ext/xproto.c
Instance Method Summary collapse
Instance Method Details
#name ⇒ Object
681 682 683 684 685 686 687 |
# File 'ext/xproto.c', line 681
static VALUE
r_XCB_FONTPROP_get_name(VALUE r_self)
{
xcb_fontprop_t *fontprop;
Data_Get_Struct(r_self, xcb_fontprop_t, fontprop);
return INT2FIX(fontprop->name);
}
|
#value ⇒ Object
688 689 690 691 692 693 694 |
# File 'ext/xproto.c', line 688
static VALUE
r_XCB_FONTPROP_get_value(VALUE r_self)
{
xcb_fontprop_t *fontprop;
Data_Get_Struct(r_self, xcb_fontprop_t, fontprop);
return INT2FIX(fontprop->value);
}
|