Class: GObjectIntrospection::IEnumInfo

Inherits:
IRegisteredTypeInfo show all
Defined in:
lib/ffi-gobject_introspection/i_enum_info.rb

Overview

Wraps a GIEnumInfo struct if it represents an enum. If it represents a flag, an IFlagsInfo object is used instead.

Direct Known Subclasses

IFlagsInfo

Instance Method Summary collapse

Methods inherited from IRegisteredTypeInfo

#g_type, #type_init, #type_name

Methods inherited from IBaseInfo

#==, #attribute, build_array_method, build_finder_method, #container, #deprecated?, #info_type, #initialize, make_finalizer, #name, #namespace, #safe_namespace, #to_ptr, wrap

Constructor Details

This class inherits a constructor from GObjectIntrospection::IBaseInfo

Instance Method Details

#get_method(index) ⇒ Object



20
21
22
# File 'lib/ffi-gobject_introspection/i_enum_info.rb', line 20

def get_method(index)
  IFunctionInfo.wrap Lib.g_enum_info_get_method(@gobj, index)
end

#get_n_methodsObject



16
17
18
# File 'lib/ffi-gobject_introspection/i_enum_info.rb', line 16

def get_n_methods
  Lib.g_enum_info_get_n_methods @gobj
end

#n_valuesObject



6
7
8
# File 'lib/ffi-gobject_introspection/i_enum_info.rb', line 6

def n_values
  Lib.g_enum_info_get_n_values @gobj
end

#storage_typeObject



28
29
30
# File 'lib/ffi-gobject_introspection/i_enum_info.rb', line 28

def storage_type
  Lib.g_enum_info_get_storage_type @gobj
end

#value(index) ⇒ Object



10
11
12
# File 'lib/ffi-gobject_introspection/i_enum_info.rb', line 10

def value(index)
  IValueInfo.wrap Lib.g_enum_info_get_value(@gobj, index)
end