Lines Matching defs:add

76             # add '\' before special characters and spaces
460 self._tk.call('trace', 'add', 'variable',
986 self.tk.call('option', 'add', pattern, value, priority)
1391 def _bind(self, what, sequence, func, add, needcleanup=1):
1400 (add and '+' or '',
1409 def bind(self, sequence=None, func=None, add=None):
1448 return self._bind(('bind', self._w), sequence, func, add)
1457 def bind_all(self, sequence=None, func=None, add=None):
1462 return self._bind(('bind', 'all'), sequence, func, add, 0)
1468 def bind_class(self, className, sequence=None, func=None, add=None):
1476 return self._bind(('bind', className), sequence, func, add, 0)
1899 args = ('event', 'add', virtual) + sequences
2446 ipadx=amount - add internal padding in x direction
2447 ipady=amount - add internal padding in y direction
2448 padx=amount - add padding in x direction
2449 pady=amount - add padding in y direction
2450 side=TOP or BOTTOM or LEFT or RIGHT - where to add this widget.
2540 ipadx=amount - add internal padding in x direction
2541 ipady=amount - add internal padding in y direction
2542 padx=amount - add padding in x direction
2543 pady=amount - add padding in y direction
2796 def tag_bind(self, tagOrId, sequence=None, func=None, add=None):
2803 sequence, func, add)
3353 def add(self, itemType, cnf={}, **kw):
3355 self.tk.call((self._w, 'add', itemType) +
3360 self.add('cascade', cnf or kw)
3364 self.add('checkbutton', cnf or kw)
3368 self.add('command', cnf or kw)
3372 self.add('radiobutton', cnf or kw)
3376 self.add('separator', cnf or kw)
3896 (self._w, 'tag', 'add', tagName, index1) + args)
3905 def tag_bind(self, tagName, sequence, func, add=None):
3912 sequence, func, add)
4446 def add(self, child, **kw):
4454 self.tk.call((self._w, 'add', child) + self._options(kw))