In Files

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

Class/Module Index [+]

Quicksearch

Tk::BWidget::ButtonBox

Public Instance Methods

add(keys={}, &b) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/buttonbox.rb, line 42
def add(keys={}, &b)
  win = window(tk_send('add', *hash_kv(keys)))
  if b
    if TkCore::WITH_RUBY_VM  ### Ruby 1.9 !!!!
      win.instance_exec(self, &b)
    else
      win.instance_eval(&b)
    end
  end
  win
end
            
delete(idx) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/buttonbox.rb, line 54
def delete(idx)
  tk_send('delete', tagid(idx))
  self
end
            
index(idx) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/buttonbox.rb, line 59
def index(idx)
  if idx.kind_of?(Tk::BWidget::Button)
    name = idx[:name]
    idx = name unless name.empty?
  end
  if idx.kind_of?(Tk::Button)
    idx = idx[:text]
  end
  number(tk_send('index', idx.to_s))
end
            
insert(idx, keys={}, &b) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/buttonbox.rb, line 70
def insert(idx, keys={}, &b)
  win = window(tk_send('insert', tagid(idx), *hash_kv(keys)))
  if b
    if TkCore::WITH_RUBY_VM  ### Ruby 1.9 !!!!
      win.instance_exec(self, &b)
    else
      win.instance_eval(&b)
    end
  end
  win
end
            
invoke(idx) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/buttonbox.rb, line 82
def invoke(idx)
  tk_send('invoke', tagid(idx))
  self
end
            
set_focus(idx) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/buttonbox.rb, line 87
def set_focus(idx)
  tk_send('setfocus', tagid(idx))
  self
end
            
tagid(tagOrId) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/buttonbox.rb, line 30
def tagid(tagOrId)
  if tagOrId.kind_of?(Tk::BWidget::Button)
    name = tagOrId[:name]
    return index(name) unless name.empty?
  end
  if tagOrId.kind_of?(Tk::Button)
    return index(tagOrId[:text])
  end
  # index(tagOrId.to_s)
  index(_get_eval_string(tagOrId))
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.