Home | History | Annotate | Download | only in lib-tk

Lines Matching full:classname

645     def option_get(self, name, className):
647 with CLASSNAME.
650 return self.tk.call('option', 'get', self._w, name, className)
1052 def bind_class(self, className, sequence=None, func=None, add=None):
1054 """Bind to widgets with bindtag CLASSNAME at event
1061 return self._bind(('bind', className), sequence, func, add, 0)
1062 def unbind_class(self, className, sequence):
1063 """Unbind for a all widgets with bindtag CLASSNAME for event SEQUENCE
1065 self.tk.call('bind', className , sequence, '')
1725 def __init__(self, screenName=None, baseName=None, className='Tk',
1730 It is constructed from sys.argv[0] without extensions if None is given. CLASSNAME
1745 self.tk = _tkinter.create(screenName, baseName, className, interactive, wantobjects, useTk, sync, use)
1750 self.readprofile(baseName, className)
1795 def readprofile(self, baseName, className):
1796 """Internal function. It reads BASENAME.tcl and CLASSNAME.tcl into
1797 the Tcl Interpreter and calls execfile on BASENAME.py and CLASSNAME.py if
1802 class_tcl = os.path.join(home, '.%s.tcl' % className)
1803 class_py = os.path.join(home, '.%s.py' % className)
1843 def Tcl(screenName=None, baseName=None, className='Tk', useTk=0):
1844 return Tk(screenName, baseName, className, useTk)