In Files

  • tk/lib/tkextlib/blt/busy.rb

Class/Module Index [+]

Quicksearch

Tk::BLT::Busy

Constants

TkCommandNames

Public Class Methods

shield_path(win) click to toggle source
 
               # File tk/lib/tkextlib/blt/busy.rb, line 34
def self.shield_path(win)
  Tk::BLT::Busy::Shield.shield_path(win)
end
            

Public Instance Methods

check(win) click to toggle source
 
               # File tk/lib/tkextlib/blt/busy.rb, line 75
def check(win)
  bool(tk_call('::blt::busy', 'check', win))
end
            
forget(*wins) click to toggle source
 
               # File tk/lib/tkextlib/blt/busy.rb, line 62
def forget(*wins)
  tk_call('::blt::busy', 'forget', *wins)
end
            
hold(win, keys={}) click to toggle source
 
               # File tk/lib/tkextlib/blt/busy.rb, line 54
def hold(win, keys={})
  tk_call('::blt::busy', 'hold', win, *hash_kv(keys))
end
            
is_busy(pat=None) click to toggle source
 
               # File tk/lib/tkextlib/blt/busy.rb, line 66
def is_busy(pat=None)
  tk_split_list(tk_call('::blt::busy', 'isbusy', pat))
end
            
names(pat=None) click to toggle source
 
               # File tk/lib/tkextlib/blt/busy.rb, line 70
def names(pat=None)
  tk_split_list(tk_call('::blt::busy', 'names', pat))
end
            
release(*wins) click to toggle source
 
               # File tk/lib/tkextlib/blt/busy.rb, line 58
def release(*wins)
  tk_call('::blt::busy', 'release', *wins)
end
            
status(win) click to toggle source
 
               # File tk/lib/tkextlib/blt/busy.rb, line 79
def status(win)
  bool(tk_call('::blt::busy', 'status', win))
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.

blog comments powered by Disqus