Lines Matching refs:bind
18 command) or with the method bind.
225 using bind, bind_all, bind_class, or tag_bind, the callback is
1384 processed (see bind)."""
1409 def bind(self, sequence=None, func=None, add=None):
1448 return self._bind(('bind', self._w), sequence, func, add)
1453 self.tk.call('bind', self._w, sequence, '')
1461 it will replace the previous function. See bind for the return value."""
1462 return self._bind(('bind', 'all'), sequence, func, add, 0)
1466 self.tk.call('bind', 'all' , sequence, '')
1473 whether it will replace the previous function. See bind for
1476 return self._bind(('bind', className), sequence, func, add, 0)
1481 self.tk.call('bind', className , sequence, '')
2792 self.tk.call(self._w, 'bind', tagOrId, sequence, '')
2801 replace the previous function. See bind for the return value."""
2802 return self._bind((self._w, 'bind', tagOrId),
3901 self.tk.call(self._w, 'tag', 'bind', tagName, sequence, '')
3910 replace the previous function. See bind for the return value."""
3911 return self._bind((self._w, 'tag', 'bind', tagName),