Namespace
- CLASS Tk::BLT::Busy::Shield
Methods
Constants
| TkCommandNames | = | ['::blt::busy'.freeze].freeze |
Class Public methods
shield_path(win)
Link
Source: show
# File ext/tk/lib/tkextlib/blt/busy.rb, line 34 def self.shield_path(win) Tk::BLT::Busy::Shield.shield_path(win) end
Instance Public methods
check(win)
Link
Source: show
# File ext/tk/lib/tkextlib/blt/busy.rb, line 76 def check(win) bool(tk_call('::blt::busy', 'check', win)) end
forget(*wins)
Link
Source: show
# File ext/tk/lib/tkextlib/blt/busy.rb, line 63 def forget(*wins) tk_call('::blt::busy', 'forget', *wins) end
hold(win, keys={})
Link
Source: show
# File ext/tk/lib/tkextlib/blt/busy.rb, line 55 def hold(win, keys={}) tk_call('::blt::busy', 'hold', win, *hash_kv(keys)) end
is_busy(pat=None)
Link
Source: show
# File ext/tk/lib/tkextlib/blt/busy.rb, line 67 def is_busy(pat=None) tk_split_list(tk_call('::blt::busy', 'isbusy', pat)) end
names(pat=None)
Link
Source: show
# File ext/tk/lib/tkextlib/blt/busy.rb, line 71 def names(pat=None) tk_split_list(tk_call('::blt::busy', 'names', pat)) end