Method: TkImage.names

Defined in:
lib/tk/image.rb

.namesObject



106
107
108
109
110
111
112
# File 'lib/tk/image.rb', line 106

def TkImage.names
  Tk_IMGTBL.mutex.synchronize{
    Tk.tk_call_without_enc('image', 'names').split.collect!{|id|
      (Tk_IMGTBL[id])? Tk_IMGTBL[id] : id
    }
  }
end