Class: XCB::LookupColorReply
- Inherits:
-
Object
- Object
- XCB::LookupColorReply
- Defined in:
- ext/xproto.c
Instance Method Summary collapse
- #exact_blue ⇒ Object
- #exact_green ⇒ Object
- #exact_red ⇒ Object
- #visual_blue ⇒ Object
- #visual_green ⇒ Object
- #visual_red ⇒ Object
Instance Method Details
#exact_blue ⇒ Object
4156 4157 4158 4159 4160 4161 4162 |
# File 'ext/xproto.c', line 4156
static VALUE
r_XCB_LookupColorReply_get_exact_blue(VALUE r_self)
{
xcb_lookup_color_reply_t *reply;
Data_Get_Struct(r_self, xcb_lookup_color_reply_t, reply);
return INT2FIX(reply->exact_blue);
}
|
#exact_green ⇒ Object
4149 4150 4151 4152 4153 4154 4155 |
# File 'ext/xproto.c', line 4149
static VALUE
r_XCB_LookupColorReply_get_exact_green(VALUE r_self)
{
xcb_lookup_color_reply_t *reply;
Data_Get_Struct(r_self, xcb_lookup_color_reply_t, reply);
return INT2FIX(reply->exact_green);
}
|
#exact_red ⇒ Object
4142 4143 4144 4145 4146 4147 4148 |
# File 'ext/xproto.c', line 4142
static VALUE
r_XCB_LookupColorReply_get_exact_red(VALUE r_self)
{
xcb_lookup_color_reply_t *reply;
Data_Get_Struct(r_self, xcb_lookup_color_reply_t, reply);
return INT2FIX(reply->exact_red);
}
|
#visual_blue ⇒ Object
4177 4178 4179 4180 4181 4182 4183 |
# File 'ext/xproto.c', line 4177
static VALUE
r_XCB_LookupColorReply_get_visual_blue(VALUE r_self)
{
xcb_lookup_color_reply_t *reply;
Data_Get_Struct(r_self, xcb_lookup_color_reply_t, reply);
return INT2FIX(reply->visual_blue);
}
|
#visual_green ⇒ Object
4170 4171 4172 4173 4174 4175 4176 |
# File 'ext/xproto.c', line 4170
static VALUE
r_XCB_LookupColorReply_get_visual_green(VALUE r_self)
{
xcb_lookup_color_reply_t *reply;
Data_Get_Struct(r_self, xcb_lookup_color_reply_t, reply);
return INT2FIX(reply->visual_green);
}
|
#visual_red ⇒ Object
4163 4164 4165 4166 4167 4168 4169 |
# File 'ext/xproto.c', line 4163
static VALUE
r_XCB_LookupColorReply_get_visual_red(VALUE r_self)
{
xcb_lookup_color_reply_t *reply;
Data_Get_Struct(r_self, xcb_lookup_color_reply_t, reply);
return INT2FIX(reply->visual_red);
}
|