In Files

  • tk/lib/tkextlib/iwidgets/tabset.rb

Class/Module Index [+]

Quicksearch

Tk::Iwidgets::Tabset

Public Instance Methods

add(keys={}) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/tabset.rb, line 64
def add(keys={})
  window(tk_call(@path, 'add', *hash_kv(keys)))
end
            
delete(idx1, idx2=nil) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/tabset.rb, line 68
def delete(idx1, idx2=nil)
  if idx2
    tk_call(@path, 'delete', index(idx1), index(idx2))
  else
    tk_call(@path, 'delete', index(idx1))
  end
  self
end
            
index(idx) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/tabset.rb, line 77
def index(idx)
  number(tk_call(@path, 'index', tagid(idx)))
end
            
insert(idx, keys={}) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/tabset.rb, line 81
def insert(idx, keys={})
  window(tk_call(@path, 'insert', index(idx), *hash_kv(keys)))
end
            
next() click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/tabset.rb, line 85
def next
  tk_call(@path, 'next')
  self
end
            
prev() click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/tabset.rb, line 90
def prev
  tk_call(@path, 'prev')
  self
end
            
select(idx) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/tabset.rb, line 95
def select(idx)
  tk_call(@path, 'select', index(idx))
  self
end
            
tagid(tagOrId) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/tabset.rb, line 35
def tagid(tagOrId)
  if tagOrId.kind_of?(Tk::Itk::Component)
    tagOrId.name
  else
    #_get_eval_string(tagOrId)
    tagOrId
  end
end