Sha256: ffbfbfd2e2d37a3f22543844cdb87f15ed4cacfdc789f1984bc7d6abf2f2b580
Contents?: true
Size: 899 Bytes
Versions: 4
Compression:
Stored size: 899 Bytes
Contents
module GObjectIntrospection # Wraps a GIStructInfo struct. # Represents a struct. class IStructInfo < IRegisteredTypeInfo def n_fields Lib.g_struct_info_get_n_fields @gobj end def field(index) IFieldInfo.wrap(Lib.g_struct_info_get_field @gobj, index) end ## build_array_method :fields def get_n_methods Lib.g_struct_info_get_n_methods @gobj end def get_method(index) IFunctionInfo.wrap(Lib.g_struct_info_get_method @gobj, index) end ## build_array_method :get_methods def find_method(name) @methods_hash ||= get_methods.inject({}) {|h,m| h[m.name] = m; h} @methods_hash[name] end def size Lib.g_struct_info_get_size @gobj end def alignment Lib.g_struct_info_get_alignment @gobj end def gtype_struct? Lib.g_struct_info_is_gtype_struct @gobj end end end
Version data entries
4 entries across 4 versions & 1 rubygems