In Files

  • tk/lib/tk/mngfocus.rb

Class/Module Index [+]

Quicksearch

TkManageFocus

Constants

TkCommandNames

Public Class Methods

followsMouse() click to toggle source
 
               # File tk/lib/tk/mngfocus.rb, line 16
def TkManageFocus.followsMouse
  tk_call_without_enc('tk_focusFollowsMouse')
end
            
next(win) click to toggle source
 
               # File tk/lib/tk/mngfocus.rb, line 20
def TkManageFocus.next(win)
  tk_tcl2ruby(tk_call('tk_focusNext', win))
end
            
prev(win) click to toggle source
 
               # File tk/lib/tk/mngfocus.rb, line 27
def TkManageFocus.prev(win)
  tk_tcl2ruby(tk_call('tk_focusPrev', win))
end
            

Public Instance Methods

focusNext() click to toggle source
 
               # File tk/lib/tk/mngfocus.rb, line 23
def focusNext
  TkManageFocus.next(self)
end
            
focusPrev() click to toggle source
 
               # File tk/lib/tk/mngfocus.rb, line 30
def focusPrev
  TkManageFocus.prev(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