Namespace
Methods
C
F
H
I
N
R
S
W
Constants
TkCommandNames = ['::blt::busy'.freeze].freeze
 
Class Public methods
check(win)
# File ext/tk/lib/tkextlib/blt/busy.rb, line 77
def check(win)
  bool(tk_call('::blt::busy', 'check', win))
end
forget(*wins)
# File ext/tk/lib/tkextlib/blt/busy.rb, line 64
def forget(*wins)
  tk_call('::blt::busy', 'forget', *wins)
end
hold(win, keys={})
# File ext/tk/lib/tkextlib/blt/busy.rb, line 56
def hold(win, keys={})
  tk_call('::blt::busy', 'hold', win, *hash_kv(keys))
end
is_busy(pat=None)
# File ext/tk/lib/tkextlib/blt/busy.rb, line 68
def is_busy(pat=None)
  tk_split_list(tk_call('::blt::busy', 'isbusy', pat))
end
names(pat=None)
Also aliased as: windows
# File ext/tk/lib/tkextlib/blt/busy.rb, line 72
def names(pat=None)
  tk_split_list(tk_call('::blt::busy', 'names', pat))
end
release(*wins)
# File ext/tk/lib/tkextlib/blt/busy.rb, line 60
def release(*wins)
  tk_call('::blt::busy', 'release', *wins)
end
shield_path(win)
# File ext/tk/lib/tkextlib/blt/busy.rb, line 35
def self.shield_path(win)
  Tk::BLT::Busy::Shield.shield_path(win)
end
status(win)
# File ext/tk/lib/tkextlib/blt/busy.rb, line 81
def status(win)
  bool(tk_call('::blt::busy', 'status', win))
end
windows(pat=None)
Alias for: names