In Files

  • tk/lib/tkextlib/bwidget/widget.rb

Class/Module Index [+]

Quicksearch

Tk::BWidget::Widget

Public Class Methods

__cget_cmd() click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 24
def self.__cget_cmd
  ['Widget::cget']
end
            
__config_cmd() click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 28
def self.__config_cmd
  ['Widget::configure']
end
            
__pathname() click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 20
def self.__pathname
  'Widget::configure'
end
            
add_map(klass, subclass, subpath, opts) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 43
def self.add_map(klass, subclass, subpath, opts)
  tk_call('Widget::addmap', klass, subclass, subpath, opts)
end
            
bwinclude(klass, subclass, subpath, *args) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 47
def self.bwinclude(klass, subclass, subpath, *args)
  tk_call('Widget::bwinclude', klass, subclass, subpath, *args)
end
            
cget(slot) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 39
def self.cget(slot)
  self.current_configinfo(slot).values[0]
end
            
cget_strict(slot) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 32
def self.cget_strict(slot)
  slot = slot.to_s
  info = {}
  self.current_configinfo.each{|k,v| info[k.to_s] = v if k.to_s == slot}
  fail RuntimeError, "unknown option \"-#{slot}\""  if info.empty?
  info.values[0]
end
            
create(klass, path, rename=None, &b) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 51
def self.create(klass, path, rename=None, &b)
  win = window(tk_call('Widget::create', klass, path, rename))
  if b
    if TkCore::WITH_RUBY_VM  ### Ruby 1.9 !!!!
      win.instance_exec(self, &b)
    else
      win.instance_eval(&b)
    end
  end
  win
end
            
declare(klass, optlist) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 63
def self.declare(klass, optlist)
  tk_call('Widget::declare', klass, optlist)
end
            
define(klass, filename, *args) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 67
def self.define(klass, filename, *args)
  tk_call('Widget::define', klass, filename, *args)
end
            
destroy(win) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 71
def self.destroy(win)
  tk_call('Widget::destroy', _epath(win))
end
            
focus_next(win) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 75
def self.focus_next(win)
  tk_call('Widget::focusNext', win)
end
            
focus_ok(win) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 79
def self.focus_ok(win)
  tk_call('Widget::focusOk', win)
end
            
focus_prev(win) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 83
def self.focus_prev(win)
  tk_call('Widget::focusPrev', win)
end
            
generate_doc(dir, widgetlist) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 87
def self.generate_doc(dir, widgetlist)
  tk_call('Widget::generate-doc', dir, widgetlist)
end
            
generate_widget_doc(klass, iscmd, file) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 91
def self.generate_widget_doc(klass, iscmd, file)
  tk_call('Widget::generate-widget-doc', klass, iscmd, file)
end
            
get_option(win, option) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 95
def self.get_option(win, option)
  tk_call('Widget::getoption', win, option)
end
            
get_variable(win, varname, my_varname=None) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 99
def self.get_variable(win, varname, my_varname=None)
  tk_call('Widget::getVariable', win, varname, my_varname)
end
            
has_changed(win, option, pvalue) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 103
def self.has_changed(win, option, pvalue)
  tk_call('Widget::hasChanged', win, option, pvalue)
end
            
init(klass, win, options) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 107
def self.init(klass, win, options)
  tk_call('Widget::init', klass, win, options)
end
            
set_option(win, option, value) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 111
def self.set_option(win, option, value)
  tk_call('Widget::setoption', win, option, value)
end
            
sub_cget(win, subwidget) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 118
def self.sub_cget(win, subwidget)
  self.sub_cget_strict(win, subwidget)
end
            
sub_cget_strict(win, subwidget) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 115
def self.sub_cget_strict(win, subwidget)
  tk_call('Widget::subcget', win, subwidget)
end
            
sync_options(klass, subclass, subpath, options) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 122
def self.sync_options(klass, subclass, subpath, options)
  tk_call('Widget::syncoptions', klass, subclass, subpath, options)
end
            
tkinclude(klass, tkwidget, subpath, *args) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/widget.rb, line 126
def self.tkinclude(klass, tkwidget, subpath, *args)
  tk_call('Widget::tkinclude', klass, tkwidget, subpath, *args)
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