Class: Tk::Iwidgets::Notebook (Ruby 2.3.4)

In Files

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

Class/Module Index [+]

Quicksearch

Tk::Iwidgets::Notebook

Public Instance Methods

add(keys={})
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 62
def add(keys={})
  window(tk_call(@path, 'add', *hash_kv(keys)))
end
            
child_site(idx)
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 70
def child_site(idx)
  if (new_idx = self.index(idx)) < 0
    new_idx = tagid(idx)
  end
  window(tk_call(@path, 'childsite', new_idx))
end
            
child_site_list()
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 66
def child_site_list
  list(tk_call(@path, 'childsite'))
end
            
delete(idx1, idx2=nil)
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 77
def delete(idx1, idx2=nil)
  if (new_idx1 = self.index(idx1)) < 0
    new_idx1 = tagid(idx1)
  end
  if idx2
    if (new_idx2 = self.index(idx2)) < 0
      new_idx2 = tagid(idx2)
    end
    tk_call(@path, 'delete', new_idx1, new_idx2)
  else
    tk_call(@path, 'delete', new_idx1)
  end
  self
end
            
index(idx)
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 92
def index(idx)
  number(tk_call(@path, 'index', tagid(idx)))
end
            
insert(idx, keys={})
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 96
def insert(idx, keys={})
  if (new_idx = self.index(idx)) < 0
    new_idx = tagid(idx)
  end
  window(tk_call(@path, 'insert', new_idx, *hash_kv(keys)))
end
            
next()
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 103
def next
  tk_call(@path, 'next')
  self
end
            
prev()
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 108
def prev
  tk_call(@path, 'prev')
  self
end
            
scrollbar(bar=nil)
Alias for: yscrollbar
scrollcommand(cmd=Proc.new)
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 121
def scrollcommand(cmd=Proc.new)
  configure_cmd 'scrollcommand', cmd
  self
end
            
Also aliased as: xscrollcommand, yscrollcommand
select(idx)
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 113
def select(idx)
  if (new_idx = self.index(idx)) < 0
    new_idx = tagid(idx)
  end
  tk_call(@path, 'select', new_idx)
  self
end
            
tagid(tagOrId)
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 36
def tagid(tagOrId)
  if tagOrId.kind_of?(Tk::Itk::Component)
    tagOrId.name
  else
    #_get_eval_string(tagOrId)
    tagOrId
  end
end
            
view(*idxs)
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 150
def view(*idxs)
  if idxs.size == 0
    idx = num_or_str(tk_send_without_enc('view'))
    if idx.kind_of?(Fixnum) && idx < 0
      nil
    else
      idx
    end
  else
    tk_send_without_enc('view', *idxs)
    self
  end
end
            
Also aliased as: xview, yview
view_moveto(*idxs)
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 166
def view_moveto(*idxs)
  view('moveto', *idxs)
end
            
Also aliased as: xview_moveto, yview_moveto
view_scroll(index, what='pages')
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 171
def view_scroll(index, what='pages')
  view('scroll', index, what)
end
            
Also aliased as: xview_scroll, yview_scroll
xscrollbar(bar=nil)
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 128
def xscrollbar(bar=nil)
  if bar
    @scrollbar = bar
    @scrollbar.orient 'horizontal'
    self.scrollcommand {|*arg| @scrollbar.set(*arg)}
    @scrollbar.command {|*arg| self.xview(*arg)}
    Tk.update  # avoid scrollbar trouble
  end
  @scrollbar
end
            
xscrollcommand(cmd=Proc.new)
Alias for: scrollcommand
xview(*idxs)
Alias for: view
xview_moveto(*idxs)
Alias for: view_moveto
xview_scroll(index, what='pages')
Alias for: view_scroll
yscrollbar(bar=nil)
 
               # File tk/lib/tkextlib/iwidgets/notebook.rb, line 138
def yscrollbar(bar=nil)
  if bar
    @scrollbar = bar
    @scrollbar.orient 'vertical'
    self.scrollcommand {|*arg| @scrollbar.set(*arg)}
    @scrollbar.command {|*arg| self.yview(*arg)}
    Tk.update  # avoid scrollbar trouble
  end
  @scrollbar
end
            
Also aliased as: scrollbar
yscrollcommand(cmd=Proc.new)
Alias for: scrollcommand
yview(*idxs)
Alias for: view
yview_moveto(*idxs)
Alias for: view_moveto
yview_scroll(index, what='pages')
Alias for: view_scroll