Class: TkCore::Tk_OBJECT_TABLE

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

Instance Method Summary collapse

Constructor Details

#initialize(id) ⇒ Tk_OBJECT_TABLE

Returns a new instance of Tk_OBJECT_TABLE.



1418
1419
1420
1421
# File 'lib/tk.rb', line 1418

def initialize(id)
  @id = id
  @mutex = Mutex.new
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(m, *args, &b) ⇒ Object



1425
1426
1427
# File 'lib/tk.rb', line 1425

def method_missing(m, *args, &b)
  TkCore::INTERP.tk_object_table(@id).__send__(m, *args, &b)
end

Instance Method Details

#mutexObject



1422
1423
1424
# File 'lib/tk.rb', line 1422

def mutex
  @mutex
end