Class: XCB::FONTPROP

Inherits:
Object
  • Object
show all
Defined in:
ext/xproto.c

Instance Method Summary collapse

Instance Method Details

#nameObject



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);
}

#valueObject



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);
}