Class: GirFFI::UserDefinedTypeInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/gir_ffi/user_defined_type_info.rb

Overview

Represents a user defined type, conforming, as needed, to the interface of GObjectIntrospection::IObjectInfo. TODO: Rename to UserDefinedObjectInfo

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(klass) {|_self| ... } ⇒ UserDefinedTypeInfo

Returns a new instance of UserDefinedTypeInfo.

Yields:

  • (_self)

Yield Parameters:



11
12
13
14
15
16
# File 'lib/gir_ffi/user_defined_type_info.rb', line 11

def initialize klass
  @klass = klass
  @properties = []
  @vfunc_implementations = []
  yield self if block_given?
end

Instance Attribute Details

#g_nameObject



36
37
38
# File 'lib/gir_ffi/user_defined_type_info.rb', line 36

def g_name
  @g_name ||= @klass.name
end

#propertiesObject (readonly)

Returns the value of attribute properties.



9
10
11
# File 'lib/gir_ffi/user_defined_type_info.rb', line 9

def properties
  @properties
end

#vfunc_implementationsObject (readonly)

Returns the value of attribute vfunc_implementations.



9
10
11
# File 'lib/gir_ffi/user_defined_type_info.rb', line 9

def vfunc_implementations
  @vfunc_implementations
end

Instance Method Details

#described_classObject



18
19
20
# File 'lib/gir_ffi/user_defined_type_info.rb', line 18

def described_class
  @klass
end

#find_instance_method(_method) ⇒ Object



30
31
32
# File 'lib/gir_ffi/user_defined_type_info.rb', line 30

def find_instance_method _method
  nil
end

#install_property(property) ⇒ Object



22
23
24
# File 'lib/gir_ffi/user_defined_type_info.rb', line 22

def install_property property
  @properties << UserDefinedPropertyInfo.new(property)
end

#install_vfunc_implementation(name, implementation) ⇒ Object



26
27
28
# File 'lib/gir_ffi/user_defined_type_info.rb', line 26

def install_vfunc_implementation name, implementation
  @vfunc_implementations << VFuncImplementation.new(name, implementation)
end