check(win)
click to toggle source
def check(win)
bool(tk_call('::blt::busy', 'check', win))
end
forget(*wins)
click to toggle source
def forget(*wins)
tk_call('::blt::busy', 'forget', *wins)
end
hold(win, keys={})
click to toggle source
def hold(win, keys={})
tk_call('::blt::busy', 'hold', win, *hash_kv(keys))
end
is_busy(pat=None)
click to toggle source
def is_busy(pat=None)
tk_split_list(tk_call('::blt::busy', 'isbusy', pat))
end
names(pat=None)
click to toggle source
def names(pat=None)
tk_split_list(tk_call('::blt::busy', 'names', pat))
end
release(*wins)
click to toggle source
def release(*wins)
tk_call('::blt::busy', 'release', *wins)
end
shield_path(win)
click to toggle source
def self.shield_path(win)
Tk::BLT::Busy::Shield.shield_path(win)
end
status(win)
click to toggle source
def status(win)
bool(tk_call('::blt::busy', 'status', win))
end
windows(pat=None)
click to toggle source