Namespace
Methods
X
A
B
C
F
G
I
L
P
W
Constants
LIBRARY = tk_call('set', '::BWIDGET::LIBRARY')
 
PACKAGE_NAME = 'BWidget'.freeze
 
Class Public methods
XLFDfont(cmd, *args)
# File ext/tk/lib/tkextlib/bwidget.rb, line 41
def self.XLFDfont(cmd, *args)
  if args[-1].kind_of?(Hash)
    keys = args.pop
    args.concat(hash_kv(keys))
  end
  tk_call('BWidget::XLFDfont', cmd, *args)
end
assert(exp, msg=None)
# File ext/tk/lib/tkextlib/bwidget.rb, line 49
def self.assert(exp, msg=None)
  tk_call('BWidget::assert', exp, msg)
end
badOptionString(type, value, list)
# File ext/tk/lib/tkextlib/bwidget.rb, line 53
def self.badOptionString(type, value, list)
  tk_call('BWidget::badOptionString', type, value, list)
end
bindMouseWheel(widget)
# File ext/tk/lib/tkextlib/bwidget.rb, line 57
def self.bindMouseWheel(widget)
  tk_call('BWidget::bindMouseWheel', widget)
end
classes(klass)
# File ext/tk/lib/tkextlib/bwidget.rb, line 61
def self.classes(klass)
  list(tk_call('BWidget::classes', klass))
end
clonename(menu)
# File ext/tk/lib/tkextlib/bwidget.rb, line 65
def self.clonename(menu)
  tk_call('BWidget::clonename', menu)
end
focus(opt, path)
# File ext/tk/lib/tkextlib/bwidget.rb, line 69
def self.focus(opt, path)
  tk_call('BWidget::focus', opt, path)
end
get3dcolor(path, bgcolor)
# File ext/tk/lib/tkextlib/bwidget.rb, line 73
def self.get3dcolor(path, bgcolor)
  tk_call('BWidget::get3dcolor', path, bgcolor)
end
getname(name)
# File ext/tk/lib/tkextlib/bwidget.rb, line 77
def self.getname(name)
  tk_call('BWidget::getname', name)
end
grab(opt, path)
# File ext/tk/lib/tkextlib/bwidget.rb, line 81
def self.grab(opt, path)
  tk_call('BWidget::grab', opt, path)
end
inuse(klass)
# File ext/tk/lib/tkextlib/bwidget.rb, line 85
def self.inuse(klass)
  bool(tk_call('BWidget::inuse', klass))
end
library(klass, *klasses)
# File ext/tk/lib/tkextlib/bwidget.rb, line 89
def self.library(klass, *klasses)
  tk_call('BWidget::library', klass, *klasses)
end
lreorder(list, neworder)
# File ext/tk/lib/tkextlib/bwidget.rb, line 93
def self.lreorder(list, neworder)
  tk_call('BWidget::lreorder', list, neworder)
end
package_name()
# File ext/tk/lib/tkextlib/bwidget.rb, line 29
def self.package_name
  PACKAGE_NAME
end
package_version()
# File ext/tk/lib/tkextlib/bwidget.rb, line 33
def self.package_version
  begin
    TkPackage.require('BWidget')
  rescue
    ''
  end
end
parsetext(text)
# File ext/tk/lib/tkextlib/bwidget.rb, line 97
def self.parsetext(text)
  tk_call('BWidget::parsetext', text)
end
place(path, w, h, *args)
# File ext/tk/lib/tkextlib/bwidget.rb, line 101
def self.place(path, w, h, *args)
  if args[-1].kind_of?(Hash)
    keys = args.pop
    args.concat(hash_kv(keys))
  end
  tk_call('BWidget::place', path, w, h, *(args.flatten))
end
write(file, mode=None)
# File ext/tk/lib/tkextlib/bwidget.rb, line 109
def self.write(file, mode=None)
  tk_call('BWidget::write', file, mode)
end
wrongNumArgsString(str)
# File ext/tk/lib/tkextlib/bwidget.rb, line 113
def self.wrongNumArgsString(str)
  tk_call('BWidget::wrongNumArgsString', str)
end