class Tk::Tcllib::Widget::Statusbar

Constants

PACKAGE_NAME
TkCommandNames

Public Class Methods

package_name() click to toggle source
# File lib/tkextlib/tcllib/statusbar.rb, line 19
def self.package_name
  PACKAGE_NAME
end
package_version() click to toggle source
# File lib/tkextlib/tcllib/statusbar.rb, line 23
def self.package_version
  begin
    TkPackage.require('widget::statusbar')
  rescue
    ''
  end
end

Public Instance Methods

add(w, keys={}) click to toggle source
# File lib/tkextlib/tcllib/statusbar.rb, line 57
def add(w, keys={})
  window(tk_send_without_enc('setwidget', *(hash_kv(keys))))
end
delete(*wins) click to toggle source
# File lib/tkextlib/tcllib/statusbar.rb, line 71
def delete(*wins)
  tk_send_without_enc('delete', *wins)
  self
end
get_frame()
Alias for: getframe
getframe() click to toggle source
# File lib/tkextlib/tcllib/statusbar.rb, line 52
def getframe
  window(tk_send_without_enc('getframe'))
end
Also aliased as: get_frame
items(pat=None) click to toggle source
# File lib/tkextlib/tcllib/statusbar.rb, line 76
def items(pat=None)
  tk_split_list(tk_send('items', pat))
end
remove(*wins) click to toggle source
# File lib/tkextlib/tcllib/statusbar.rb, line 61
def remove(*wins)
  tk_send_without_enc('remove', *wins)
  self
end
remove_with_destroy(*wins) click to toggle source
# File lib/tkextlib/tcllib/statusbar.rb, line 66
def remove_with_destroy(*wins)
  tk_send_without_enc('remove', '-destroy', *wins)
  self
end