In Files

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

Class/Module Index [+]

Quicksearch

Tk::Iwidgets::Mainwindow

Public Instance Methods

child_site() click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/mainwindow.rb, line 36
def child_site
  window(tk_call(@path, 'childsite'))
end
            
mousebar(*args) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/mainwindow.rb, line 47
def mousebar(*args)
  unless args.empty?
    tk_call(@path, 'mousebar', *args)
  end
  window(tk_call(@path, 'mousebar'))
end
            
msgd(*args) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/mainwindow.rb, line 54
def msgd(*args)
  unless args.empty?
    tk_call(@path, 'msgd', *args)
  end
  window(tk_call(@path, 'msgd'))
end
            
toolbar(*args) click to toggle source
 
               # File tk/lib/tkextlib/iwidgets/mainwindow.rb, line 61
def toolbar(*args)
  unless args.empty?
    tk_call(@path, 'toolbar', *args)
  end
  window(tk_call(@path, 'toolbar'))
end