In Files

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

Class/Module Index [+]

Quicksearch

Tk::BWidget::MainFrame

Public Instance Methods

add_indicator(keys={}, &b) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/mainframe.rb, line 42
def add_indicator(keys={}, &b)
  win = window(tk_send('addindicator', *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
            
add_toolbar(&b) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/mainframe.rb, line 54
def add_toolbar(&b)
  win = window(tk_send('addtoolbar'))
  if b
    if TkCore::WITH_RUBY_VM  ### Ruby 1.9 !!!!
      win.instance_exec(self, &b)
    else
      win.instance_eval(&b)
    end
  end
  win
end
            
get_frame(&b) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/mainframe.rb, line 66
def get_frame(&b)
  win = window(tk_send('getframe'))
  if b
    if TkCore::WITH_RUBY_VM  ### Ruby 1.9 !!!!
      win.instance_exec(self, &b)
    else
      win.instance_eval(&b)
    end
  end
  win
end
            
get_indicator(idx, &b) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/mainframe.rb, line 78
def get_indicator(idx, &b)
  win = window(tk_send('getindicator', idx))
  if b
    if TkCore::WITH_RUBY_VM  ### Ruby 1.9 !!!!
      win.instance_exec(self, &b)
    else
      win.instance_eval(&b)
    end
  end
  win
end
            
get_menu(menu_id, &b) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/mainframe.rb, line 90
def get_menu(menu_id, &b)
  win = window(tk_send('getmenu', menu_id))
  if b
    if TkCore::WITH_RUBY_VM  ### Ruby 1.9 !!!!
      win.instance_exec(self, &b)
    else
      win.instance_eval(&b)
    end
  end
  win
end
            
get_toolbar(idx, &b) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/mainframe.rb, line 102
def get_toolbar(idx, &b)
  win = window(tk_send('gettoolbar', idx))
  if b
    if TkCore::WITH_RUBY_VM  ### Ruby 1.9 !!!!
      win.instance_exec(self, &b)
    else
      win.instance_eval(&b)
    end
  end
  win
end
            
set_menustate(tag, state) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/mainframe.rb, line 114
def set_menustate(tag, state)
  tk_send('setmenustate', tag, state)
  self
end
            
show_statusbar(name) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/mainframe.rb, line 119
def show_statusbar(name)
  tk_send('showstatusbar', name)
  self
end
            
show_toolbar(idx, mode) click to toggle source
 
               # File tk/lib/tkextlib/bwidget/mainframe.rb, line 124
def show_toolbar(idx, mode)
  tk_send('showtoolbar', idx, mode)
  self
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.

blog comments powered by Disqus