# File tk/lib/tkextlib/bwidget/statusbar.rb, line 27 def add(win, keys={}) tk_send('add', win, keys) self end
# File tk/lib/tkextlib/bwidget/statusbar.rb, line 42 def delete(*wins) # same to 'remove_with_destroy' tk_send('delete', *wins) self end
# File tk/lib/tkextlib/bwidget/statusbar.rb, line 47 def get_frame(&b) win = window(tk_send_without_enc('getframe')) if b if TkCore::WITH_RUBY_VM ### Ruby 1.9 !!!! win.instance_exec(self, &b) else win.instance_eval(&b) end end win end
# File tk/lib/tkextlib/bwidget/statusbar.rb, line 59 def items simplelist(tk_send('items')).map{|w| window(w)} end
Commenting is here to help enhance the documentation. For example, sample code, 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.