Sha256: 53636f3340de4d0e47ef716cf83334201ae2bcc63c27175b0f21223c9a18a52a

Contents?: true

Size: 951 Bytes

Versions: 6

Compression:

Stored size: 951 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
    build_finder_method :find_field

    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
    # There is a function g_struct_info_find_method but it causes a core dump.
    build_finder_method :find_method, :get_n_methods, :get_method

    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

6 entries across 6 versions & 1 rubygems

Version Path
gir_ffi-0.9.0 lib/ffi-gobject_introspection/i_struct_info.rb
gir_ffi-0.8.6 lib/ffi-gobject_introspection/i_struct_info.rb
gir_ffi-0.8.5 lib/ffi-gobject_introspection/i_struct_info.rb
gir_ffi-0.8.4 lib/ffi-gobject_introspection/i_struct_info.rb
gir_ffi-0.8.3 lib/ffi-gobject_introspection/i_struct_info.rb
gir_ffi-0.8.2 lib/ffi-gobject_introspection/i_struct_info.rb