Class: Pango::AttrColor

Inherits:
Attribute show all
Defined in:
ext/pango/rbpangoattribute.c

Constant Summary

Constants inherited from Attribute

Pango::Attribute::TYPE_BACKGROUND, Pango::Attribute::TYPE_FALLBACK, Pango::Attribute::TYPE_FAMILY, Pango::Attribute::TYPE_FONT_DESC, Pango::Attribute::TYPE_FOREGROUND, Pango::Attribute::TYPE_INVALID, Pango::Attribute::TYPE_LANGUAGE, Pango::Attribute::TYPE_LETTER_SPACING, Pango::Attribute::TYPE_RISE, Pango::Attribute::TYPE_SCALE, Pango::Attribute::TYPE_SHAPE, Pango::Attribute::TYPE_SIZE, Pango::Attribute::TYPE_STRETCH, Pango::Attribute::TYPE_STRIKETHROUGH, Pango::Attribute::TYPE_STRIKETHROUGH_COLOR, Pango::Attribute::TYPE_STYLE, Pango::Attribute::TYPE_UNDERLINE, Pango::Attribute::TYPE_VARIANT, Pango::Attribute::TYPE_WEIGHT

Instance Method Summary collapse

Methods inherited from Attribute

#==, allocate, #end_index, new, #set_end_index, #set_start_index, #start_index, type_register

Instance Method Details

#valueObject

PangoAttrColor



164
165
166
167
168
169
# File 'ext/pango/rbpangoattribute.c', line 164

static VALUE
attr_color_value(VALUE self)
{
    PangoColor color = ((PangoAttrColor*)RVAL2ATTR(self))->color;
    return BOXED2RVAL(&color, PANGO_TYPE_COLOR);
}