Method: Tk::Iwidgets::Tabnotebook#xscrollbar

Defined in:
lib/tkextlib/iwidgets/tabnotebook.rb

#xscrollbar(bar = nil) ⇒ Object



134
135
136
137
138
139
140
141
142
143
# File 'lib/tkextlib/iwidgets/tabnotebook.rb', line 134

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