Class: XCB::GetWindowAttributesReply
- Inherits:
-
Object
- Object
- XCB::GetWindowAttributesReply
- Defined in:
- ext/xproto.c
Instance Method Summary collapse
- #all_event_masks ⇒ Object
- #backing_pixel ⇒ Object
- #backing_planes ⇒ Object
- #backing_store ⇒ Object
- #bit_gravity ⇒ Object
- #class ⇒ Object
- #colormap ⇒ Object
- #do_not_propagate_mask ⇒ Object
- #map_is_installed ⇒ Object
- #map_state ⇒ Object
- #override_redirect ⇒ Object
- #save_under ⇒ Object
- #visual ⇒ Object
- #win_gravity ⇒ Object
- #your_event_mask ⇒ Object
Instance Method Details
#all_event_masks ⇒ Object
3160 3161 3162 3163 3164 3165 3166 |
# File 'ext/xproto.c', line 3160 static VALUE r_XCB_GetWindowAttributesReply_get_all_event_masks(VALUE r_self) { xcb_get_window_attributes_reply_t *reply; Data_Get_Struct(r_self, xcb_get_window_attributes_reply_t, reply); return INT2FIX(reply->all_event_masks); } |
#backing_pixel ⇒ Object
3118 3119 3120 3121 3122 3123 3124 |
# File 'ext/xproto.c', line 3118 static VALUE r_XCB_GetWindowAttributesReply_get_backing_pixel(VALUE r_self) { xcb_get_window_attributes_reply_t *reply; Data_Get_Struct(r_self, xcb_get_window_attributes_reply_t, reply); return INT2FIX(reply->backing_pixel); } |
#backing_planes ⇒ Object
3111 3112 3113 3114 3115 3116 3117 |
# File 'ext/xproto.c', line 3111 static VALUE r_XCB_GetWindowAttributesReply_get_backing_planes(VALUE r_self) { xcb_get_window_attributes_reply_t *reply; Data_Get_Struct(r_self, xcb_get_window_attributes_reply_t, reply); return INT2FIX(reply->backing_planes); } |
#backing_store ⇒ Object
3076 3077 3078 3079 3080 3081 3082 |
# File 'ext/xproto.c', line 3076 static VALUE r_XCB_GetWindowAttributesReply_get_backing_store(VALUE r_self) { xcb_get_window_attributes_reply_t *reply; Data_Get_Struct(r_self, xcb_get_window_attributes_reply_t, reply); return INT2FIX(reply->backing_store); } |
#bit_gravity ⇒ Object
3097 3098 3099 3100 3101 3102 3103 |
# File 'ext/xproto.c', line 3097 static VALUE r_XCB_GetWindowAttributesReply_get_bit_gravity(VALUE r_self) { xcb_get_window_attributes_reply_t *reply; Data_Get_Struct(r_self, xcb_get_window_attributes_reply_t, reply); return INT2FIX(reply->bit_gravity); } |
#class ⇒ Object
3090 3091 3092 3093 3094 3095 3096 |
# File 'ext/xproto.c', line 3090 static VALUE r_XCB_GetWindowAttributesReply_get_class(VALUE r_self) { xcb_get_window_attributes_reply_t *reply; Data_Get_Struct(r_self, xcb_get_window_attributes_reply_t, reply); return INT2FIX(reply->_class); } |
#colormap ⇒ Object
3153 3154 3155 3156 3157 3158 3159 |
# File 'ext/xproto.c', line 3153 static VALUE r_XCB_GetWindowAttributesReply_get_colormap(VALUE r_self) { xcb_get_window_attributes_reply_t *reply; Data_Get_Struct(r_self, xcb_get_window_attributes_reply_t, reply); return INT2FIX(reply->colormap); } |
#do_not_propagate_mask ⇒ Object
3174 3175 3176 3177 3178 3179 3180 |
# File 'ext/xproto.c', line 3174 static VALUE r_XCB_GetWindowAttributesReply_get_do_not_propagate_mask(VALUE r_self) { xcb_get_window_attributes_reply_t *reply; Data_Get_Struct(r_self, xcb_get_window_attributes_reply_t, reply); return INT2FIX(reply->do_not_propagate_mask); } |
#map_is_installed ⇒ Object
3132 3133 3134 3135 3136 3137 3138 |
# File 'ext/xproto.c', line 3132 static VALUE r_XCB_GetWindowAttributesReply_get_map_is_installed(VALUE r_self) { xcb_get_window_attributes_reply_t *reply; Data_Get_Struct(r_self, xcb_get_window_attributes_reply_t, reply); return reply->map_is_installed ? Qtrue : Qfalse; } |
#map_state ⇒ Object
3139 3140 3141 3142 3143 3144 3145 |
# File 'ext/xproto.c', line 3139 static VALUE r_XCB_GetWindowAttributesReply_get_map_state(VALUE r_self) { xcb_get_window_attributes_reply_t *reply; Data_Get_Struct(r_self, xcb_get_window_attributes_reply_t, reply); return INT2FIX(reply->map_state); } |
#override_redirect ⇒ Object
3146 3147 3148 3149 3150 3151 3152 |
# File 'ext/xproto.c', line 3146 static VALUE r_XCB_GetWindowAttributesReply_get_override_redirect(VALUE r_self) { xcb_get_window_attributes_reply_t *reply; Data_Get_Struct(r_self, xcb_get_window_attributes_reply_t, reply); return reply->override_redirect ? Qtrue : Qfalse; } |
#save_under ⇒ Object
3125 3126 3127 3128 3129 3130 3131 |
# File 'ext/xproto.c', line 3125 static VALUE r_XCB_GetWindowAttributesReply_get_save_under(VALUE r_self) { xcb_get_window_attributes_reply_t *reply; Data_Get_Struct(r_self, xcb_get_window_attributes_reply_t, reply); return reply->save_under ? Qtrue : Qfalse; } |
#visual ⇒ Object
3083 3084 3085 3086 3087 3088 3089 |
# File 'ext/xproto.c', line 3083 static VALUE r_XCB_GetWindowAttributesReply_get_visual(VALUE r_self) { xcb_get_window_attributes_reply_t *reply; Data_Get_Struct(r_self, xcb_get_window_attributes_reply_t, reply); return INT2FIX(reply->visual); } |
#win_gravity ⇒ Object
3104 3105 3106 3107 3108 3109 3110 |
# File 'ext/xproto.c', line 3104 static VALUE r_XCB_GetWindowAttributesReply_get_win_gravity(VALUE r_self) { xcb_get_window_attributes_reply_t *reply; Data_Get_Struct(r_self, xcb_get_window_attributes_reply_t, reply); return INT2FIX(reply->win_gravity); } |
#your_event_mask ⇒ Object
3167 3168 3169 3170 3171 3172 3173 |
# File 'ext/xproto.c', line 3167 static VALUE r_XCB_GetWindowAttributesReply_get_your_event_mask(VALUE r_self) { xcb_get_window_attributes_reply_t *reply; Data_Get_Struct(r_self, xcb_get_window_attributes_reply_t, reply); return INT2FIX(reply->your_event_mask); } |