Methods
- B
- C
- F
- H
- M
- S
Included Modules
Instance Public methods
busy_cget(option)
Link
busy_configinfo(option=nil)
Link
busy_configure(option, value=None)
Link
busy_current?()
Link
busy_current_configinfo(option=nil)
Link
busy_forget()
Link
busy_status()
Link
current(pat=None)
Link
forget(*wins)
Link
hold(win, keys={})
Link
method_missing(id, *args)
Link
# File ext/tk/lib/tk/busy.rb, line 41 def method_missing(id, *args) name = id.id2name case args.length when 1 if name[-1] == ?= configure name[0..-2], args[0] args[0] else configure name, args[0] self end when 0 begin cget(name) rescue super(id, *args) end else super(id, *args) end end