module TkManageFocus
Constants
- TkCommandNames
Public Class Methods
followsMouse()
click to toggle source
# File lib/tk/mngfocus.rb, line 16 def TkManageFocus.followsMouse tk_call_without_enc('tk_focusFollowsMouse') end
next(win)
click to toggle source
# File 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 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 lib/tk/mngfocus.rb, line 23 def focusNext TkManageFocus.next(self) end
focusPrev()
click to toggle source
# File lib/tk/mngfocus.rb, line 30 def focusPrev TkManageFocus.prev(self) end