Module: TkManageFocus (Ruby 2.3.4)

In Files

  • tk/lib/tk/mngfocus.rb

Class/Module Index [+]

Quicksearch

TkManageFocus

Constants

TkCommandNames

Public Class Methods

followsMouse()
 
               # File tk/lib/tk/mngfocus.rb, line 17
def TkManageFocus.followsMouse
  tk_call_without_enc('tk_focusFollowsMouse')
end
            
next(win)
 
               # File tk/lib/tk/mngfocus.rb, line 21
def TkManageFocus.next(win)
  tk_tcl2ruby(tk_call('tk_focusNext', win))
end
            
prev(win)
 
               # File tk/lib/tk/mngfocus.rb, line 28
def TkManageFocus.prev(win)
  tk_tcl2ruby(tk_call('tk_focusPrev', win))
end
            

Public Instance Methods

focusNext()
 
               # File tk/lib/tk/mngfocus.rb, line 24
def focusNext
  TkManageFocus.next(self)
end
            
focusPrev()
 
               # File tk/lib/tk/mngfocus.rb, line 31
def focusPrev
  TkManageFocus.prev(self)
end