Maintenance of Ruby 2.0.0 ended on February 24, 2016. Read more

In Files

  • tk/lib/tk.rb

Class/Module Index [+]

Quicksearch

TkCore::Tk_OBJECT_TABLE

Public Class Methods

new(id) click to toggle source
 
               # File tk/lib/tk.rb, line 1418
def initialize(id)
  @id = id
  @mutex = Mutex.new
end
            

Public Instance Methods

method_missing(m, *args, &b) click to toggle source
 
               # File tk/lib/tk.rb, line 1425
def method_missing(m, *args, &b)
  TkCore::INTERP.tk_object_table(@id).__send__(m, *args, &b)
end
            
mutex() click to toggle source
 
               # File tk/lib/tk.rb, line 1422
def mutex
  @mutex
end