1994-06-20 07:49:28 +00:00
|
|
|
# Tkinter.py -- Tk/Tcl widget wrappers
|
1994-07-06 09:23:20 +00:00
|
|
|
|
1994-06-20 07:49:28 +00:00
|
|
|
import tkinter
|
|
|
|
from tkinter import TclError
|
|
|
|
|
|
|
|
class _Dummy:
|
|
|
|
def meth(self): return
|
|
|
|
|
1994-07-06 09:23:20 +00:00
|
|
|
def _func():
|
|
|
|
pass
|
1994-06-20 07:49:28 +00:00
|
|
|
|
1994-07-06 09:23:20 +00:00
|
|
|
FunctionType = type(_func)
|
1994-06-20 07:49:28 +00:00
|
|
|
ClassType = type(_Dummy)
|
|
|
|
MethodType = type(_Dummy.meth)
|
1994-06-21 11:44:21 +00:00
|
|
|
StringType = type('')
|
1994-06-20 13:39:14 +00:00
|
|
|
TupleType = type(())
|
|
|
|
ListType = type([])
|
1994-07-06 09:23:20 +00:00
|
|
|
DictionaryType = type({})
|
|
|
|
NoneType = type(None)
|
1994-06-21 11:44:21 +00:00
|
|
|
CallableTypes = (FunctionType, MethodType)
|
1994-06-20 07:49:28 +00:00
|
|
|
|
1994-07-06 09:23:20 +00:00
|
|
|
def _flatten(tuple):
|
|
|
|
res = ()
|
|
|
|
for item in tuple:
|
|
|
|
if type(item) in (TupleType, ListType):
|
|
|
|
res = res + _flatten(item)
|
|
|
|
else:
|
|
|
|
res = res + (item,)
|
|
|
|
return res
|
1994-06-27 07:55:12 +00:00
|
|
|
|
1994-07-06 09:23:20 +00:00
|
|
|
def _cnfmerge(cnfs):
|
|
|
|
if type(cnfs) in (NoneType, DictionaryType, StringType):
|
|
|
|
return cnfs
|
|
|
|
else:
|
|
|
|
cnf = {}
|
|
|
|
for c in _flatten(cnfs):
|
|
|
|
for k, v in c.items():
|
|
|
|
cnf[k] = v
|
|
|
|
return cnf
|
1994-06-20 07:49:28 +00:00
|
|
|
|
|
|
|
class Event:
|
|
|
|
pass
|
|
|
|
|
1994-07-06 09:23:20 +00:00
|
|
|
_default_root = None
|
|
|
|
|
|
|
|
def _tkerror(err):
|
|
|
|
pass
|
|
|
|
|
1994-07-07 13:12:12 +00:00
|
|
|
def _exit(code='0'):
|
|
|
|
import sys
|
|
|
|
sys.exit(getint(code))
|
|
|
|
|
1994-06-27 07:55:12 +00:00
|
|
|
_varnum = 0
|
|
|
|
class Variable:
|
|
|
|
def __init__(self, master=None):
|
|
|
|
global _default_root
|
|
|
|
global _varnum
|
|
|
|
if master:
|
|
|
|
self._tk = master.tk
|
|
|
|
else:
|
|
|
|
self._tk = _default_root.tk
|
|
|
|
self._name = 'PY_VAR' + `_varnum`
|
|
|
|
_varnum = _varnum + 1
|
|
|
|
def __del__(self):
|
|
|
|
self._tk.unsetvar(self._name)
|
|
|
|
def __str__(self):
|
|
|
|
return self._name
|
|
|
|
def __call__(self, value=None):
|
|
|
|
if value == None:
|
|
|
|
return self.get()
|
|
|
|
else:
|
|
|
|
self.set(value)
|
|
|
|
def set(self, value):
|
|
|
|
return self._tk.setvar(self._name, value)
|
|
|
|
|
|
|
|
class StringVar(Variable):
|
|
|
|
def __init__(self, master=None):
|
|
|
|
Variable.__init__(self, master)
|
|
|
|
def get(self):
|
|
|
|
return self._tk.getvar(self._name)
|
|
|
|
|
|
|
|
class IntVar(Variable):
|
|
|
|
def __init__(self, master=None):
|
|
|
|
Variable.__init__(self, master)
|
|
|
|
def get(self):
|
|
|
|
return self._tk.getint(self._tk.getvar(self._name))
|
|
|
|
|
|
|
|
class DoubleVar(Variable):
|
|
|
|
def __init__(self, master=None):
|
|
|
|
Variable.__init__(self, master)
|
|
|
|
def get(self):
|
|
|
|
return self._tk.getdouble(self._tk.getvar(self._name))
|
|
|
|
|
|
|
|
class BooleanVar(Variable):
|
|
|
|
def __init__(self, master=None):
|
|
|
|
Variable.__init__(self, master)
|
|
|
|
def get(self):
|
|
|
|
return self._tk.getboolean(self._tk.getvar(self._name))
|
|
|
|
|
1994-07-06 09:23:20 +00:00
|
|
|
def mainloop():
|
|
|
|
_default_root.tk.mainloop()
|
|
|
|
|
|
|
|
def getint(s):
|
|
|
|
return _default_root.tk.getint(s)
|
|
|
|
|
|
|
|
def getdouble(s):
|
|
|
|
return _default_root.tk.getdouble(s)
|
|
|
|
|
|
|
|
def getboolean(s):
|
|
|
|
return _default_root.tk.getboolean(s)
|
|
|
|
|
1994-06-20 07:49:28 +00:00
|
|
|
class Misc:
|
|
|
|
def tk_strictMotif(self, boolean=None):
|
1994-07-06 09:23:20 +00:00
|
|
|
return self.tk.getboolean(self.tk.call(
|
1994-06-20 07:49:28 +00:00
|
|
|
'set', 'tk_strictMotif', boolean))
|
1994-06-27 07:55:12 +00:00
|
|
|
def tk_menuBar(self, *args):
|
|
|
|
apply(self.tk.call, ('tk_menuBar', self._w) + args)
|
1994-07-06 09:23:20 +00:00
|
|
|
def wait_variable(self, name='PY_VAR'):
|
1994-06-20 07:49:28 +00:00
|
|
|
self.tk.call('tkwait', 'variable', name)
|
1994-07-06 09:23:20 +00:00
|
|
|
waitvar = wait_variable # XXX b/w compat
|
1994-06-27 23:15:31 +00:00
|
|
|
def wait_window(self, window=None):
|
|
|
|
if window == None:
|
|
|
|
window = self
|
|
|
|
self.tk.call('tkwait', 'window', window._w)
|
|
|
|
def wait_visibility(self, window=None):
|
|
|
|
if window == None:
|
|
|
|
window = self
|
|
|
|
self.tk.call('tkwait', 'visibility', window._w)
|
1994-06-27 07:55:12 +00:00
|
|
|
def setvar(self, name='PY_VAR', value='1'):
|
1994-06-20 07:49:28 +00:00
|
|
|
self.tk.setvar(name, value)
|
1994-06-27 07:55:12 +00:00
|
|
|
def getvar(self, name='PY_VAR'):
|
1994-06-20 08:12:01 +00:00
|
|
|
return self.tk.getvar(name)
|
|
|
|
def getint(self, s):
|
|
|
|
return self.tk.getint(s)
|
1994-06-20 09:09:51 +00:00
|
|
|
def getdouble(self, s):
|
|
|
|
return self.tk.getdouble(s)
|
|
|
|
def getboolean(self, s):
|
|
|
|
return self.tk.getboolean(s)
|
1994-06-20 12:19:19 +00:00
|
|
|
def focus_set(self):
|
1994-06-20 07:49:28 +00:00
|
|
|
self.tk.call('focus', self._w)
|
1994-06-20 12:19:19 +00:00
|
|
|
focus = focus_set # XXX b/w compat?
|
|
|
|
def focus_default_set(self):
|
1994-06-20 07:49:28 +00:00
|
|
|
self.tk.call('focus', 'default', self._w)
|
1994-06-20 12:19:19 +00:00
|
|
|
def focus_default_none(self):
|
|
|
|
self.tk.call('focus', 'default', 'none')
|
|
|
|
focus_default = focus_default_set
|
1994-06-20 07:49:28 +00:00
|
|
|
def focus_none(self):
|
|
|
|
self.tk.call('focus', 'none')
|
1994-06-20 12:19:19 +00:00
|
|
|
def focus_get(self):
|
|
|
|
name = self.tk.call('focus')
|
|
|
|
if name == 'none': return None
|
|
|
|
return self._nametowidget(name)
|
1994-06-20 07:49:28 +00:00
|
|
|
def after(self, ms, func=None, *args):
|
|
|
|
if not func:
|
|
|
|
self.tk.call('after', ms)
|
|
|
|
else:
|
1994-06-21 11:44:21 +00:00
|
|
|
# XXX Disgusting hack to clean up after calling func
|
|
|
|
tmp = []
|
|
|
|
def callit(func=func, args=args, tk=self.tk, tmp=tmp):
|
|
|
|
try:
|
|
|
|
apply(func, args)
|
|
|
|
finally:
|
|
|
|
tk.deletecommand(tmp[0])
|
|
|
|
name = self._register(callit)
|
|
|
|
tmp.append(name)
|
|
|
|
self.tk.call('after', ms, name)
|
1994-06-20 12:19:19 +00:00
|
|
|
# XXX grab current w/o window argument
|
|
|
|
def grab_current(self):
|
|
|
|
name = self.tk.call('grab', 'current', self._w)
|
|
|
|
if not name: return None
|
|
|
|
return self._nametowidget(name)
|
1994-06-20 07:49:28 +00:00
|
|
|
def grab_release(self):
|
|
|
|
self.tk.call('grab', 'release', self._w)
|
|
|
|
def grab_set(self):
|
|
|
|
self.tk.call('grab', 'set', self._w)
|
|
|
|
def grab_set_global(self):
|
|
|
|
self.tk.call('grab', 'set', '-global', self._w)
|
|
|
|
def grab_status(self):
|
1994-06-20 12:19:19 +00:00
|
|
|
status = self.tk.call('grab', 'status', self._w)
|
|
|
|
if status == 'none': status = None
|
|
|
|
return status
|
1994-06-20 07:49:28 +00:00
|
|
|
def lower(self, belowThis=None):
|
|
|
|
self.tk.call('lower', self._w, belowThis)
|
1994-10-20 22:02:27 +00:00
|
|
|
def option_add(self, pattern, value, priority = None):
|
|
|
|
self.tk.call('option', 'add', pattern, priority)
|
|
|
|
def option_clear(self):
|
|
|
|
self.tk.call('option', 'clear')
|
|
|
|
def option_get(self, name, className):
|
|
|
|
return self.tk.call('option', 'get', self._w, name, className)
|
|
|
|
def option_readfile(self, fileName, priority = None):
|
|
|
|
self.tk.call('option', 'readfile', fileName, priority)
|
1994-06-20 07:49:28 +00:00
|
|
|
def selection_clear(self):
|
|
|
|
self.tk.call('selection', 'clear', self._w)
|
|
|
|
def selection_get(self, type=None):
|
1994-07-04 10:48:25 +00:00
|
|
|
return self.tk.call('selection', 'get', type)
|
1994-06-20 07:49:28 +00:00
|
|
|
def selection_handle(self, func, type=None, format=None):
|
|
|
|
name = self._register(func)
|
1994-06-27 07:55:12 +00:00
|
|
|
self.tk.call('selection', 'handle', self._w,
|
|
|
|
name, type, format)
|
|
|
|
def selection_own(self, func=None):
|
|
|
|
name = self._register(func)
|
|
|
|
self.tk.call('selection', 'own', self._w, name)
|
|
|
|
def selection_own_get(self):
|
|
|
|
return self._nametowidget(self.tk.call('selection', 'own'))
|
|
|
|
def send(self, interp, cmd, *args):
|
1994-06-20 07:49:28 +00:00
|
|
|
return apply(self.tk.call, ('send', interp, cmd) + args)
|
1994-06-20 08:12:01 +00:00
|
|
|
def lower(self, belowThis=None):
|
|
|
|
self.tk.call('lift', self._w, belowThis)
|
|
|
|
def tkraise(self, aboveThis=None):
|
|
|
|
self.tk.call('raise', self._w, aboveThis)
|
|
|
|
lift = tkraise
|
1994-06-20 07:49:28 +00:00
|
|
|
def colormodel(self, value=None):
|
|
|
|
return self.tk.call('tk', 'colormodel', self._w, value)
|
|
|
|
def winfo_atom(self, name):
|
|
|
|
return self.tk.getint(self.tk.call('winfo', 'atom', name))
|
|
|
|
def winfo_atomname(self, id):
|
|
|
|
return self.tk.call('winfo', 'atomname', id)
|
|
|
|
def winfo_cells(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'cells', self._w))
|
1994-06-20 12:19:19 +00:00
|
|
|
def winfo_children(self):
|
|
|
|
return map(self._nametowidget,
|
|
|
|
self.tk.splitlist(self.tk.call(
|
|
|
|
'winfo', 'children', self._w)))
|
1994-06-20 07:49:28 +00:00
|
|
|
def winfo_class(self):
|
|
|
|
return self.tk.call('winfo', 'class', self._w)
|
|
|
|
def winfo_containing(self, rootX, rootY):
|
|
|
|
return self.tk.call('winfo', 'containing', rootx, rootY)
|
|
|
|
def winfo_depth(self):
|
|
|
|
return self.tk.getint(self.tk.call('winfo', 'depth', self._w))
|
|
|
|
def winfo_exists(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'exists', self._w))
|
|
|
|
def winfo_fpixels(self, number):
|
|
|
|
return self.tk.getdouble(self.tk.call(
|
|
|
|
'winfo', 'fpixels', self._w, number))
|
|
|
|
def winfo_geometry(self):
|
|
|
|
return self.tk.call('winfo', 'geometry', self._w)
|
|
|
|
def winfo_height(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'height', self._w))
|
|
|
|
def winfo_id(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'id', self._w))
|
|
|
|
def winfo_interps(self):
|
|
|
|
return self.tk.splitlist(
|
|
|
|
self.tk.call('winfo', 'interps'))
|
|
|
|
def winfo_ismapped(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'ismapped', self._w))
|
|
|
|
def winfo_name(self):
|
|
|
|
return self.tk.call('winfo', 'name', self._w)
|
|
|
|
def winfo_parent(self):
|
|
|
|
return self.tk.call('winfo', 'parent', self._w)
|
|
|
|
def winfo_pathname(self, id):
|
|
|
|
return self.tk.call('winfo', 'pathname', id)
|
|
|
|
def winfo_pixels(self, number):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'pixels', self._w, number))
|
|
|
|
def winfo_reqheight(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'reqheight', self._w))
|
|
|
|
def winfo_reqwidth(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'reqwidth', self._w))
|
|
|
|
def winfo_rgb(self, color):
|
|
|
|
return self._getints(
|
|
|
|
self.tk.call('winfo', 'rgb', self._w, color))
|
|
|
|
def winfo_rootx(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'rootx', self._w))
|
|
|
|
def winfo_rooty(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'rooty', self._w))
|
|
|
|
def winfo_screen(self):
|
|
|
|
return self.tk.call('winfo', 'screen', self._w)
|
|
|
|
def winfo_screencells(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'screencells', self._w))
|
|
|
|
def winfo_screendepth(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'screendepth', self._w))
|
|
|
|
def winfo_screenheight(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'screenheight', self._w))
|
|
|
|
def winfo_screenmmheight(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'screenmmheight', self._w))
|
|
|
|
def winfo_screenmmwidth(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'screenmmwidth', self._w))
|
|
|
|
def winfo_screenvisual(self):
|
|
|
|
return self.tk.call('winfo', 'screenvisual', self._w)
|
|
|
|
def winfo_screenwidth(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'screenwidth', self._w))
|
|
|
|
def winfo_toplevel(self):
|
1994-06-27 07:55:12 +00:00
|
|
|
return self._nametowidget(self.tk.call(
|
|
|
|
'winfo', 'toplevel', self._w))
|
1994-06-20 07:49:28 +00:00
|
|
|
def winfo_visual(self):
|
|
|
|
return self.tk.call('winfo', 'visual', self._w)
|
|
|
|
def winfo_vrootheight(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'vrootheight', self._w))
|
|
|
|
def winfo_vrootwidth(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'vrootwidth', self._w))
|
|
|
|
def winfo_vrootx(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'vrootx', self._w))
|
|
|
|
def winfo_vrooty(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'vrooty', self._w))
|
|
|
|
def winfo_width(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'width', self._w))
|
|
|
|
def winfo_x(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'x', self._w))
|
|
|
|
def winfo_y(self):
|
|
|
|
return self.tk.getint(
|
|
|
|
self.tk.call('winfo', 'y', self._w))
|
|
|
|
def update(self):
|
|
|
|
self.tk.call('update')
|
|
|
|
def update_idletasks(self):
|
|
|
|
self.tk.call('update', 'idletasks')
|
1994-08-08 12:47:33 +00:00
|
|
|
def unbind(self, sequence):
|
|
|
|
self.tk.call('bind', self._w, sequence, '')
|
1994-06-20 07:49:28 +00:00
|
|
|
def bind(self, sequence, func, add=''):
|
|
|
|
if add: add = '+'
|
1994-06-20 12:19:19 +00:00
|
|
|
name = self._register(func, self._substitute)
|
1994-06-20 07:49:28 +00:00
|
|
|
self.tk.call('bind', self._w, sequence,
|
1994-06-27 07:55:12 +00:00
|
|
|
(add + name,) + self._subst_format)
|
1994-06-20 07:49:28 +00:00
|
|
|
def bind_all(self, sequence, func, add=''):
|
|
|
|
if add: add = '+'
|
1994-06-20 12:19:19 +00:00
|
|
|
name = self._register(func, self._substitute)
|
1994-06-20 07:49:28 +00:00
|
|
|
self.tk.call('bind', 'all' , sequence,
|
1994-07-04 10:48:25 +00:00
|
|
|
(add + name,) + self._subst_format)
|
1994-06-20 07:49:28 +00:00
|
|
|
def bind_class(self, className, sequence, func, add=''):
|
|
|
|
if add: add = '+'
|
1994-06-20 12:19:19 +00:00
|
|
|
name = self._register(func, self._substitute)
|
1994-06-20 07:49:28 +00:00
|
|
|
self.tk.call('bind', className , sequence,
|
1994-06-27 07:55:12 +00:00
|
|
|
(add + name,) + self._subst_format)
|
1994-06-20 07:49:28 +00:00
|
|
|
def mainloop(self):
|
|
|
|
self.tk.mainloop()
|
|
|
|
def quit(self):
|
|
|
|
self.tk.quit()
|
|
|
|
def _getints(self, string):
|
1994-06-20 12:19:19 +00:00
|
|
|
if not string: return None
|
|
|
|
res = ()
|
|
|
|
for v in self.tk.splitlist(string):
|
|
|
|
res = res + (self.tk.getint(v),)
|
|
|
|
return res
|
1994-06-20 07:49:28 +00:00
|
|
|
def _getboolean(self, string):
|
|
|
|
if string:
|
|
|
|
return self.tk.getboolean(string)
|
|
|
|
def _options(self, cnf):
|
1994-07-06 09:23:20 +00:00
|
|
|
cnf = _cnfmerge(cnf)
|
1994-06-20 07:49:28 +00:00
|
|
|
res = ()
|
|
|
|
for k, v in cnf.items():
|
1994-07-06 09:23:20 +00:00
|
|
|
if type(v) in CallableTypes:
|
1994-06-20 07:49:28 +00:00
|
|
|
v = self._register(v)
|
|
|
|
res = res + ('-'+k, v)
|
|
|
|
return res
|
1994-06-20 12:19:19 +00:00
|
|
|
def _nametowidget(self, name):
|
|
|
|
w = self
|
|
|
|
if name[0] == '.':
|
|
|
|
w = w._root()
|
|
|
|
name = name[1:]
|
|
|
|
from string import find
|
|
|
|
while name:
|
|
|
|
i = find(name, '.')
|
|
|
|
if i >= 0:
|
|
|
|
name, tail = name[:i], name[i+1:]
|
|
|
|
else:
|
|
|
|
tail = ''
|
|
|
|
w = w.children[name]
|
|
|
|
name = tail
|
|
|
|
return w
|
1994-06-20 07:49:28 +00:00
|
|
|
def _register(self, func, subst=None):
|
|
|
|
f = _CallSafely(func, subst).__call__
|
|
|
|
name = `id(f)`
|
|
|
|
if hasattr(func, 'im_func'):
|
|
|
|
func = func.im_func
|
|
|
|
if hasattr(func, 'func_name') and \
|
|
|
|
type(func.func_name) == type(''):
|
|
|
|
name = name + func.func_name
|
|
|
|
self.tk.createcommand(name, f)
|
|
|
|
return name
|
1994-06-27 23:15:31 +00:00
|
|
|
register = _register
|
1994-06-20 12:19:19 +00:00
|
|
|
def _root(self):
|
|
|
|
w = self
|
|
|
|
while w.master: w = w.master
|
|
|
|
return w
|
1994-06-27 07:55:12 +00:00
|
|
|
_subst_format = ('%#', '%b', '%f', '%h', '%k',
|
1994-06-20 12:19:19 +00:00
|
|
|
'%s', '%t', '%w', '%x', '%y',
|
|
|
|
'%A', '%E', '%K', '%N', '%W', '%T', '%X', '%Y')
|
|
|
|
def _substitute(self, *args):
|
|
|
|
tk = self.tk
|
1994-06-27 07:55:12 +00:00
|
|
|
if len(args) != len(self._subst_format): return args
|
1994-06-20 12:19:19 +00:00
|
|
|
nsign, b, f, h, k, s, t, w, x, y, A, E, K, N, W, T, X, Y = args
|
|
|
|
# Missing: (a, c, d, m, o, v, B, R)
|
|
|
|
e = Event()
|
|
|
|
e.serial = tk.getint(nsign)
|
|
|
|
e.num = tk.getint(b)
|
|
|
|
try: e.focus = tk.getboolean(f)
|
|
|
|
except TclError: pass
|
|
|
|
e.height = tk.getint(h)
|
|
|
|
e.keycode = tk.getint(k)
|
|
|
|
e.state = tk.getint(s)
|
|
|
|
e.time = tk.getint(t)
|
|
|
|
e.width = tk.getint(w)
|
|
|
|
e.x = tk.getint(x)
|
|
|
|
e.y = tk.getint(y)
|
|
|
|
e.char = A
|
|
|
|
try: e.send_event = tk.getboolean(E)
|
|
|
|
except TclError: pass
|
|
|
|
e.keysym = K
|
|
|
|
e.keysym_num = tk.getint(N)
|
|
|
|
e.type = T
|
|
|
|
e.widget = self._nametowidget(W)
|
|
|
|
e.x_root = tk.getint(X)
|
|
|
|
e.y_root = tk.getint(Y)
|
|
|
|
return (e,)
|
1994-06-20 07:49:28 +00:00
|
|
|
|
|
|
|
class _CallSafely:
|
|
|
|
def __init__(self, func, subst=None):
|
|
|
|
self.func = func
|
|
|
|
self.subst = subst
|
|
|
|
def __call__(self, *args):
|
|
|
|
if self.subst:
|
|
|
|
args = self.apply_func(self.subst, args)
|
|
|
|
args = self.apply_func(self.func, args)
|
|
|
|
def apply_func(self, func, args):
|
|
|
|
import sys
|
|
|
|
try:
|
|
|
|
return apply(func, args)
|
1994-06-20 12:19:19 +00:00
|
|
|
except SystemExit, msg:
|
|
|
|
raise SystemExit, msg
|
1994-06-20 07:49:28 +00:00
|
|
|
except:
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
t = sys.exc_traceback
|
|
|
|
while t:
|
|
|
|
sys.stderr.write(
|
|
|
|
' %s, line %s\n' %
|
|
|
|
(t.tb_frame.f_code,
|
|
|
|
t.tb_lineno))
|
|
|
|
t = t.tb_next
|
|
|
|
finally:
|
|
|
|
sys.stderr.write('%s: %s\n' %
|
|
|
|
(sys.exc_type,
|
|
|
|
sys.exc_value))
|
1994-06-20 12:19:19 +00:00
|
|
|
(sys.last_type,
|
|
|
|
sys.last_value,
|
|
|
|
sys.last_traceback) = (sys.exc_type,
|
|
|
|
sys.exc_value,
|
|
|
|
sys.exc_traceback)
|
|
|
|
import pdb
|
|
|
|
pdb.pm()
|
1994-06-20 07:49:28 +00:00
|
|
|
except:
|
|
|
|
print '*** Error in error handling ***'
|
|
|
|
print sys.exc_type, ':', sys.exc_value
|
|
|
|
|
|
|
|
class Wm:
|
|
|
|
def aspect(self,
|
|
|
|
minNumer=None, minDenom=None,
|
|
|
|
maxNumer=None, maxDenom=None):
|
|
|
|
return self._getints(
|
|
|
|
self.tk.call('wm', 'aspect', self._w,
|
|
|
|
minNumer, minDenom,
|
|
|
|
maxNumer, maxDenom))
|
|
|
|
def client(self, name=None):
|
|
|
|
return self.tk.call('wm', 'client', self._w, name)
|
|
|
|
def command(self, value=None):
|
|
|
|
return self.tk.call('wm', 'command', self._w, value)
|
|
|
|
def deiconify(self):
|
|
|
|
return self.tk.call('wm', 'deiconify', self._w)
|
|
|
|
def focusmodel(self, model=None):
|
|
|
|
return self.tk.call('wm', 'focusmodel', self._w, model)
|
|
|
|
def frame(self):
|
|
|
|
return self.tk.call('wm', 'frame', self._w)
|
|
|
|
def geometry(self, newGeometry=None):
|
|
|
|
return self.tk.call('wm', 'geometry', self._w, newGeometry)
|
|
|
|
def grid(self,
|
|
|
|
baseWidht=None, baseHeight=None,
|
|
|
|
widthInc=None, heightInc=None):
|
|
|
|
return self._getints(self.tk.call(
|
|
|
|
'wm', 'grid', self._w,
|
|
|
|
baseWidht, baseHeight, widthInc, heightInc))
|
|
|
|
def group(self, pathName=None):
|
|
|
|
return self.tk.call('wm', 'group', self._w, pathName)
|
|
|
|
def iconbitmap(self, bitmap=None):
|
|
|
|
return self.tk.call('wm', 'iconbitmap', self._w, bitmap)
|
|
|
|
def iconify(self):
|
|
|
|
return self.tk.call('wm', 'iconify', self._w)
|
|
|
|
def iconmask(self, bitmap=None):
|
|
|
|
return self.tk.call('wm', 'iconmask', self._w, bitmap)
|
|
|
|
def iconname(self, newName=None):
|
|
|
|
return self.tk.call('wm', 'iconname', self._w, newName)
|
|
|
|
def iconposition(self, x=None, y=None):
|
|
|
|
return self._getints(self.tk.call(
|
|
|
|
'wm', 'iconposition', self._w, x, y))
|
|
|
|
def iconwindow(self, pathName=None):
|
|
|
|
return self.tk.call('wm', 'iconwindow', self._w, pathName)
|
|
|
|
def maxsize(self, width=None, height=None):
|
|
|
|
return self._getints(self.tk.call(
|
|
|
|
'wm', 'maxsize', self._w, width, height))
|
|
|
|
def minsize(self, width=None, height=None):
|
|
|
|
return self._getints(self.tk.call(
|
|
|
|
'wm', 'minsize', self._w, width, height))
|
|
|
|
def overrideredirect(self, boolean=None):
|
|
|
|
return self._getboolean(self.tk.call(
|
|
|
|
'wm', 'overrideredirect', self._w, boolean))
|
|
|
|
def positionfrom(self, who=None):
|
|
|
|
return self.tk.call('wm', 'positionfrom', self._w, who)
|
|
|
|
def protocol(self, name=None, func=None):
|
1994-07-06 09:23:20 +00:00
|
|
|
if type(func) in CallableTypes:
|
1994-06-20 07:49:28 +00:00
|
|
|
command = self._register(func)
|
|
|
|
else:
|
|
|
|
command = func
|
|
|
|
return self.tk.call(
|
|
|
|
'wm', 'protocol', self._w, name, command)
|
|
|
|
def sizefrom(self, who=None):
|
|
|
|
return self.tk.call('wm', 'sizefrom', self._w, who)
|
|
|
|
def state(self):
|
|
|
|
return self.tk.call('wm', 'state', self._w)
|
|
|
|
def title(self, string=None):
|
|
|
|
return self.tk.call('wm', 'title', self._w, string)
|
|
|
|
def transient(self, master=None):
|
|
|
|
return self.tk.call('wm', 'transient', self._w, master)
|
|
|
|
def withdraw(self):
|
|
|
|
return self.tk.call('wm', 'withdraw', self._w)
|
|
|
|
|
|
|
|
class Tk(Misc, Wm):
|
|
|
|
_w = '.'
|
|
|
|
def __init__(self, screenName=None, baseName=None, className='Tk'):
|
1994-06-20 12:19:19 +00:00
|
|
|
self.master = None
|
|
|
|
self.children = {}
|
1994-06-20 07:49:28 +00:00
|
|
|
if baseName is None:
|
|
|
|
import sys, os
|
|
|
|
baseName = os.path.basename(sys.argv[0])
|
|
|
|
if baseName[-3:] == '.py': baseName = baseName[:-3]
|
|
|
|
self.tk = tkinter.create(screenName, baseName, className)
|
1994-06-20 12:19:19 +00:00
|
|
|
self.tk.createcommand('tkerror', _tkerror)
|
1994-07-07 13:12:12 +00:00
|
|
|
self.tk.createcommand('exit', _exit)
|
1994-07-12 15:52:32 +00:00
|
|
|
self.readprofile(baseName, className)
|
1994-06-20 12:19:19 +00:00
|
|
|
def destroy(self):
|
|
|
|
for c in self.children.values(): c.destroy()
|
|
|
|
self.tk.call('destroy', self._w)
|
1994-06-20 07:49:28 +00:00
|
|
|
def __str__(self):
|
1994-06-20 12:19:19 +00:00
|
|
|
return self._w
|
1994-07-12 15:52:32 +00:00
|
|
|
def readprofile(self, baseName, className):
|
|
|
|
import os
|
|
|
|
if os.environ.has_key('HOME'): home = os.environ['HOME']
|
|
|
|
else: home = os.curdir
|
|
|
|
class_tcl = os.path.join(home, '.%s.tcl' % className)
|
|
|
|
class_py = os.path.join(home, '.%s.py' % className)
|
|
|
|
base_tcl = os.path.join(home, '.%s.tcl' % baseName)
|
|
|
|
base_py = os.path.join(home, '.%s.py' % baseName)
|
|
|
|
dir = {'self': self}
|
|
|
|
exec 'from Tkinter import *' in dir
|
|
|
|
if os.path.isfile(class_tcl):
|
|
|
|
print 'source', `class_tcl`
|
|
|
|
self.tk.call('source', class_tcl)
|
|
|
|
if os.path.isfile(class_py):
|
|
|
|
print 'execfile', `class_py`
|
|
|
|
execfile(class_py, dir)
|
|
|
|
if os.path.isfile(base_tcl):
|
|
|
|
print 'source', `base_tcl`
|
|
|
|
self.tk.call('source', base_tcl)
|
|
|
|
if os.path.isfile(base_py):
|
|
|
|
print 'execfile', `base_py`
|
|
|
|
execfile(base_py, dir)
|
1994-06-20 07:49:28 +00:00
|
|
|
|
|
|
|
class Pack:
|
|
|
|
def config(self, cnf={}):
|
|
|
|
apply(self.tk.call,
|
|
|
|
('pack', 'configure', self._w)
|
|
|
|
+ self._options(cnf))
|
|
|
|
pack = config
|
|
|
|
def __setitem__(self, key, value):
|
|
|
|
Pack.config({key: value})
|
|
|
|
def forget(self):
|
|
|
|
self.tk.call('pack', 'forget', self._w)
|
|
|
|
def newinfo(self):
|
1994-07-11 15:21:31 +00:00
|
|
|
words = self.tk.splitlist(
|
|
|
|
self.tk.call('pack', 'newinfo', self._w))
|
|
|
|
dict = {}
|
|
|
|
for i in range(0, len(words), 2):
|
|
|
|
key = words[i][1:]
|
|
|
|
value = words[i+1]
|
|
|
|
if value[0] == '.':
|
|
|
|
value = self._nametowidget(value)
|
|
|
|
dict[key] = value
|
|
|
|
return dict
|
1994-06-20 07:49:28 +00:00
|
|
|
info = newinfo
|
|
|
|
def propagate(self, boolean=None):
|
|
|
|
if boolean:
|
|
|
|
self.tk.call('pack', 'propagate', self._w)
|
|
|
|
else:
|
|
|
|
return self._getboolean(self.tk.call(
|
|
|
|
'pack', 'propagate', self._w))
|
|
|
|
def slaves(self):
|
1994-06-20 12:19:19 +00:00
|
|
|
return map(self._nametowidget,
|
|
|
|
self.tk.splitlist(
|
|
|
|
self.tk.call('pack', 'slaves', self._w)))
|
1994-06-20 07:49:28 +00:00
|
|
|
|
|
|
|
class Place:
|
|
|
|
def config(self, cnf={}):
|
|
|
|
apply(self.tk.call,
|
|
|
|
('place', 'configure', self._w)
|
|
|
|
+ self._options(cnf))
|
|
|
|
place = config
|
|
|
|
def __setitem__(self, key, value):
|
|
|
|
Place.config({key: value})
|
|
|
|
def forget(self):
|
|
|
|
self.tk.call('place', 'forget', self._w)
|
|
|
|
def info(self):
|
|
|
|
return self.tk.call('place', 'info', self._w)
|
|
|
|
def slaves(self):
|
1994-06-20 12:19:19 +00:00
|
|
|
return map(self._nametowidget,
|
|
|
|
self.tk.splitlist(
|
|
|
|
self.tk.call(
|
|
|
|
'place', 'slaves', self._w)))
|
1994-06-20 07:49:28 +00:00
|
|
|
|
|
|
|
class Widget(Misc, Pack, Place):
|
1994-06-27 07:55:12 +00:00
|
|
|
def _setup(self, master, cnf):
|
1994-06-20 12:19:19 +00:00
|
|
|
global _default_root
|
1994-06-20 07:49:28 +00:00
|
|
|
if not master:
|
1994-06-20 12:19:19 +00:00
|
|
|
if not _default_root:
|
|
|
|
_default_root = Tk()
|
|
|
|
master = _default_root
|
|
|
|
if not _default_root:
|
|
|
|
_default_root = master
|
1994-06-20 07:49:28 +00:00
|
|
|
self.master = master
|
|
|
|
self.tk = master.tk
|
|
|
|
if cnf.has_key('name'):
|
|
|
|
name = cnf['name']
|
|
|
|
del cnf['name']
|
|
|
|
else:
|
|
|
|
name = `id(self)`
|
1994-06-20 12:19:19 +00:00
|
|
|
self._name = name
|
1994-06-20 07:49:28 +00:00
|
|
|
if master._w=='.':
|
|
|
|
self._w = '.' + name
|
|
|
|
else:
|
|
|
|
self._w = master._w + '.' + name
|
1994-06-27 07:55:12 +00:00
|
|
|
self.children = {}
|
|
|
|
if self.master.children.has_key(self._name):
|
1994-07-06 09:23:20 +00:00
|
|
|
self.master.children[self._name].destroy()
|
1994-06-27 07:55:12 +00:00
|
|
|
self.master.children[self._name] = self
|
|
|
|
def __init__(self, master, widgetName, cnf={}, extra=()):
|
1994-07-06 09:23:20 +00:00
|
|
|
cnf = _cnfmerge(cnf)
|
1994-06-27 07:55:12 +00:00
|
|
|
Widget._setup(self, master, cnf)
|
1994-06-20 07:49:28 +00:00
|
|
|
self.widgetName = widgetName
|
|
|
|
apply(self.tk.call, (widgetName, self._w) + extra)
|
1994-08-08 12:47:33 +00:00
|
|
|
if cnf:
|
|
|
|
Widget.config(self, cnf)
|
1994-06-23 07:40:14 +00:00
|
|
|
def config(self, cnf=None):
|
1994-07-06 10:20:11 +00:00
|
|
|
cnf = _cnfmerge(cnf)
|
1994-06-23 07:40:14 +00:00
|
|
|
if cnf is None:
|
|
|
|
cnf = {}
|
|
|
|
for x in self.tk.split(
|
|
|
|
self.tk.call(self._w, 'configure')):
|
|
|
|
cnf[x[0][1:]] = (x[0][1:],) + x[1:]
|
|
|
|
return cnf
|
|
|
|
if type(cnf) == StringType:
|
|
|
|
x = self.tk.split(self.tk.call(
|
|
|
|
self._w, 'configure', '-'+cnf))
|
|
|
|
return (x[0][1:],) + x[1:]
|
1994-06-20 07:49:28 +00:00
|
|
|
for k in cnf.keys():
|
|
|
|
if type(k) == ClassType:
|
|
|
|
k.config(self, cnf[k])
|
|
|
|
del cnf[k]
|
|
|
|
apply(self.tk.call, (self._w, 'configure')
|
|
|
|
+ self._options(cnf))
|
|
|
|
def __getitem__(self, key):
|
1994-06-27 07:55:59 +00:00
|
|
|
v = self.tk.splitlist(self.tk.call(
|
1994-06-20 07:49:28 +00:00
|
|
|
self._w, 'configure', '-' + key))
|
|
|
|
return v[4]
|
|
|
|
def __setitem__(self, key, value):
|
|
|
|
Widget.config(self, {key: value})
|
1994-06-23 07:40:14 +00:00
|
|
|
def keys(self):
|
|
|
|
return map(lambda x: x[0][1:],
|
|
|
|
self.tk.split(self.tk.call(self._w, 'configure')))
|
1994-06-20 07:49:28 +00:00
|
|
|
def __str__(self):
|
|
|
|
return self._w
|
1994-06-20 12:19:19 +00:00
|
|
|
def destroy(self):
|
|
|
|
for c in self.children.values(): c.destroy()
|
1994-08-30 12:13:44 +00:00
|
|
|
if self.master.children.has_key(self._name):
|
|
|
|
del self.master.children[self._name]
|
1994-06-20 07:49:28 +00:00
|
|
|
self.tk.call('destroy', self._w)
|
|
|
|
def _do(self, name, args=()):
|
1994-06-20 13:39:14 +00:00
|
|
|
return apply(self.tk.call, (self._w, name) + args)
|
1994-06-20 07:49:28 +00:00
|
|
|
|
|
|
|
class Toplevel(Widget, Wm):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
extra = ()
|
|
|
|
if cnf.has_key('screen'):
|
|
|
|
extra = ('-screen', cnf['screen'])
|
|
|
|
del cnf['screen']
|
|
|
|
if cnf.has_key('class'):
|
|
|
|
extra = extra + ('-class', cnf['class'])
|
|
|
|
del cnf['class']
|
|
|
|
Widget.__init__(self, master, 'toplevel', cnf, extra)
|
1994-06-20 12:19:19 +00:00
|
|
|
root = self._root()
|
|
|
|
self.iconname(root.iconname())
|
|
|
|
self.title(root.title())
|
1994-06-20 07:49:28 +00:00
|
|
|
|
|
|
|
class Button(Widget):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
Widget.__init__(self, master, 'button', cnf)
|
1994-06-27 07:55:12 +00:00
|
|
|
def tk_butEnter(self, *dummy):
|
1994-06-20 07:49:28 +00:00
|
|
|
self.tk.call('tk_butEnter', self._w)
|
1994-06-27 07:55:12 +00:00
|
|
|
def tk_butLeave(self, *dummy):
|
1994-06-20 07:49:28 +00:00
|
|
|
self.tk.call('tk_butLeave', self._w)
|
1994-06-27 07:55:12 +00:00
|
|
|
def tk_butDown(self, *dummy):
|
1994-06-20 07:49:28 +00:00
|
|
|
self.tk.call('tk_butDown', self._w)
|
1994-06-27 07:55:12 +00:00
|
|
|
def tk_butUp(self, *dummy):
|
1994-06-20 07:49:28 +00:00
|
|
|
self.tk.call('tk_butUp', self._w)
|
|
|
|
def flash(self):
|
|
|
|
self.tk.call(self._w, 'flash')
|
|
|
|
def invoke(self):
|
|
|
|
self.tk.call(self._w, 'invoke')
|
|
|
|
|
|
|
|
# Indices:
|
|
|
|
def AtEnd():
|
|
|
|
return 'end'
|
1994-06-20 09:09:51 +00:00
|
|
|
def AtInsert(*args):
|
|
|
|
s = 'insert'
|
|
|
|
for a in args:
|
|
|
|
if a: s = s + (' ' + a)
|
|
|
|
return s
|
1994-06-20 07:49:28 +00:00
|
|
|
def AtSelFirst():
|
|
|
|
return 'sel.first'
|
|
|
|
def AtSelLast():
|
|
|
|
return 'sel.last'
|
|
|
|
def At(x, y=None):
|
1994-07-12 09:04:41 +00:00
|
|
|
if y is None:
|
|
|
|
return '@' + `x`
|
1994-06-20 07:49:28 +00:00
|
|
|
else:
|
1994-07-12 09:04:41 +00:00
|
|
|
return '@' + `x` + ',' + `y`
|
1994-06-20 07:49:28 +00:00
|
|
|
|
|
|
|
class Canvas(Widget):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
Widget.__init__(self, master, 'canvas', cnf)
|
|
|
|
def addtag(self, *args):
|
|
|
|
self._do('addtag', args)
|
1994-06-23 07:40:14 +00:00
|
|
|
def addtag_above(self, tagOrId):
|
|
|
|
self.addtag('above', tagOrId)
|
|
|
|
def addtag_all(self):
|
|
|
|
self.addtag('all')
|
|
|
|
def addtag_below(self, tagOrId):
|
|
|
|
self.addtag('below', tagOrId)
|
|
|
|
def addtag_closest(self, x, y, halo=None, start=None):
|
|
|
|
self.addtag('closest', x, y, halo, start)
|
|
|
|
def addtag_enclosed(self, x1, y1, x2, y2):
|
|
|
|
self.addtag('enclosed', x1, y1, x2, y2)
|
|
|
|
def addtag_overlapping(self, x1, y1, x2, y2):
|
|
|
|
self.addtag('overlapping', x1, y1, x2, y2)
|
|
|
|
def addtag_withtag(self, tagOrId):
|
|
|
|
self.addtag('withtag', tagOrId)
|
1994-06-20 07:49:28 +00:00
|
|
|
def bbox(self, *args):
|
1994-06-23 07:40:14 +00:00
|
|
|
return self._getints(self._do('bbox', args)) or None
|
1994-08-08 12:47:33 +00:00
|
|
|
def tag_unbind(self, tagOrId, sequence):
|
|
|
|
self.tk.call(self._w, 'bind', tagOrId, sequence, '')
|
|
|
|
def tag_bind(self, tagOrId, sequence, func, add=''):
|
1994-06-20 07:49:28 +00:00
|
|
|
if add: add='+'
|
1994-06-20 12:19:19 +00:00
|
|
|
name = self._register(func, self._substitute)
|
1994-06-20 07:49:28 +00:00
|
|
|
self.tk.call(self._w, 'bind', tagOrId, sequence,
|
1994-06-27 07:55:12 +00:00
|
|
|
(add + name,) + self._subst_format)
|
1994-06-20 07:49:28 +00:00
|
|
|
def canvasx(self, screenx, gridspacing=None):
|
|
|
|
return self.tk.getint(self.tk.call(
|
|
|
|
self._w, 'canvasx', screenx, gridspacing))
|
|
|
|
def canvasy(self, screeny, gridspacing=None):
|
|
|
|
return self.tk.getint(self.tk.call(
|
|
|
|
self._w, 'canvasy', screeny, gridspacing))
|
|
|
|
def coords(self, *args):
|
|
|
|
return self._do('coords', args)
|
|
|
|
def _create(self, itemType, args): # Args: (value, value, ..., cnf={})
|
1994-06-21 11:44:21 +00:00
|
|
|
args = _flatten(args)
|
1994-06-20 07:49:28 +00:00
|
|
|
cnf = args[-1]
|
1994-07-06 09:23:20 +00:00
|
|
|
if type(cnf) in (DictionaryType, TupleType):
|
1994-06-20 07:49:28 +00:00
|
|
|
args = args[:-1]
|
|
|
|
else:
|
|
|
|
cnf = {}
|
1994-07-06 09:23:20 +00:00
|
|
|
return self.tk.getint(apply(
|
|
|
|
self.tk.call,
|
|
|
|
(self._w, 'create', itemType)
|
|
|
|
+ args + self._options(cnf)))
|
1994-06-20 07:49:28 +00:00
|
|
|
def create_arc(self, *args):
|
1994-06-20 13:39:14 +00:00
|
|
|
return Canvas._create(self, 'arc', args)
|
1994-06-20 07:49:28 +00:00
|
|
|
def create_bitmap(self, *args):
|
1994-06-20 13:39:14 +00:00
|
|
|
return Canvas._create(self, 'bitmap', args)
|
1994-06-20 07:49:28 +00:00
|
|
|
def create_line(self, *args):
|
1994-06-20 13:39:14 +00:00
|
|
|
return Canvas._create(self, 'line', args)
|
1994-06-20 07:49:28 +00:00
|
|
|
def create_oval(self, *args):
|
1994-06-20 13:39:14 +00:00
|
|
|
return Canvas._create(self, 'oval', args)
|
1994-06-20 07:49:28 +00:00
|
|
|
def create_polygon(self, *args):
|
1994-06-20 13:39:14 +00:00
|
|
|
return Canvas._create(self, 'polygon', args)
|
1994-06-20 07:49:28 +00:00
|
|
|
def create_rectangle(self, *args):
|
1994-06-20 13:39:14 +00:00
|
|
|
return Canvas._create(self, 'rectangle', args)
|
1994-06-20 07:49:28 +00:00
|
|
|
def create_text(self, *args):
|
1994-06-20 13:39:14 +00:00
|
|
|
return Canvas._create(self, 'text', args)
|
1994-06-20 07:49:28 +00:00
|
|
|
def create_window(self, *args):
|
1994-06-20 13:39:14 +00:00
|
|
|
return Canvas._create(self, 'window', args)
|
1994-06-20 07:49:28 +00:00
|
|
|
def dchars(self, *args):
|
|
|
|
self._do('dchars', args)
|
|
|
|
def delete(self, *args):
|
|
|
|
self._do('delete', args)
|
|
|
|
def dtag(self, *args):
|
|
|
|
self._do('dtag', args)
|
|
|
|
def find(self, *args):
|
1994-06-21 11:44:21 +00:00
|
|
|
return self._getints(self._do('find', args))
|
1994-06-23 07:40:14 +00:00
|
|
|
def find_above(self, tagOrId):
|
|
|
|
return self.find('above', tagOrId)
|
|
|
|
def find_all(self):
|
|
|
|
return self.find('all')
|
|
|
|
def find_below(self, tagOrId):
|
|
|
|
return self.find('below', tagOrId)
|
|
|
|
def find_closest(self, x, y, halo=None, start=None):
|
|
|
|
return self.find('closest', x, y, halo, start)
|
|
|
|
def find_enclosed(self, x1, y1, x2, y2):
|
|
|
|
return self.find('enclosed', x1, y1, x2, y2)
|
|
|
|
def find_overlapping(self, x1, y1, x2, y2):
|
|
|
|
return self.find('overlapping', x1, y1, x2, y2)
|
|
|
|
def find_withtag(self, tagOrId):
|
|
|
|
return self.find('withtag', tagOrId)
|
1994-06-20 07:49:28 +00:00
|
|
|
def focus(self, *args):
|
|
|
|
return self._do('focus', args)
|
|
|
|
def gettags(self, *args):
|
|
|
|
return self.tk.splitlist(self._do('gettags', args))
|
|
|
|
def icursor(self, *args):
|
|
|
|
self._do('icursor', args)
|
|
|
|
def index(self, *args):
|
|
|
|
return self.tk.getint(self._do('index', args))
|
|
|
|
def insert(self, *args):
|
|
|
|
self._do('insert', args)
|
1994-06-21 11:44:21 +00:00
|
|
|
def itemconfig(self, tagOrId, cnf=None):
|
|
|
|
if cnf is None:
|
1994-06-23 07:40:14 +00:00
|
|
|
cnf = {}
|
|
|
|
for x in self.tk.split(
|
|
|
|
self._do('itemconfigure', (tagOrId))):
|
|
|
|
cnf[x[0][1:]] = (x[0][1:],) + x[1:]
|
|
|
|
return cnf
|
1994-06-21 11:44:21 +00:00
|
|
|
if type(cnf) == StringType:
|
1994-06-23 07:40:14 +00:00
|
|
|
x = self.tk.split(self._do('itemconfigure',
|
|
|
|
(tagOrId, '-'+cnf,)))
|
|
|
|
return (x[0][1:],) + x[1:]
|
1994-06-20 07:49:28 +00:00
|
|
|
self._do('itemconfigure', (tagOrId,) + self._options(cnf))
|
|
|
|
def lower(self, *args):
|
|
|
|
self._do('lower', args)
|
|
|
|
def move(self, *args):
|
|
|
|
self._do('move', args)
|
|
|
|
def postscript(self, cnf={}):
|
|
|
|
return self._do('postscript', self._options(cnf))
|
|
|
|
def tkraise(self, *args):
|
|
|
|
self._do('raise', args)
|
1994-06-20 08:12:01 +00:00
|
|
|
lift = tkraise
|
1994-06-20 07:49:28 +00:00
|
|
|
def scale(self, *args):
|
|
|
|
self._do('scale', args)
|
|
|
|
def scan_mark(self, x, y):
|
|
|
|
self.tk.call(self._w, 'scan', 'mark', x, y)
|
|
|
|
def scan_dragto(self, x, y):
|
|
|
|
self.tk.call(self._w, 'scan', 'dragto', x, y)
|
|
|
|
def select_adjust(self, tagOrId, index):
|
1994-06-21 11:44:21 +00:00
|
|
|
self.tk.call(self._w, 'select', 'adjust', tagOrId, index)
|
1994-06-20 07:49:28 +00:00
|
|
|
def select_clear(self):
|
|
|
|
self.tk.call(self._w, 'select', 'clear')
|
|
|
|
def select_from(self, tagOrId, index):
|
1994-06-21 11:44:21 +00:00
|
|
|
self.tk.call(self._w, 'select', 'from', tagOrId, index)
|
1994-06-20 07:49:28 +00:00
|
|
|
def select_item(self):
|
|
|
|
self.tk.call(self._w, 'select', 'item')
|
|
|
|
def select_to(self, tagOrId, index):
|
1994-06-21 11:44:21 +00:00
|
|
|
self.tk.call(self._w, 'select', 'to', tagOrId, index)
|
1994-06-20 07:49:28 +00:00
|
|
|
def type(self, tagOrId):
|
1994-06-21 11:44:21 +00:00
|
|
|
return self.tk.call(self._w, 'type', tagOrId) or None
|
1994-06-20 07:49:28 +00:00
|
|
|
def xview(self, index):
|
|
|
|
self.tk.call(self._w, 'xview', index)
|
|
|
|
def yview(self, index):
|
|
|
|
self.tk.call(self._w, 'yview', index)
|
|
|
|
|
|
|
|
class Checkbutton(Widget):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
Widget.__init__(self, master, 'checkbutton', cnf)
|
|
|
|
def deselect(self):
|
|
|
|
self.tk.call(self._w, 'deselect')
|
|
|
|
def flash(self):
|
|
|
|
self.tk.call(self._w, 'flash')
|
|
|
|
def invoke(self):
|
|
|
|
self.tk.call(self._w, 'invoke')
|
|
|
|
def select(self):
|
|
|
|
self.tk.call(self._w, 'select')
|
|
|
|
def toggle(self):
|
|
|
|
self.tk.call(self._w, 'toggle')
|
|
|
|
|
|
|
|
class Entry(Widget):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
Widget.__init__(self, master, 'entry', cnf)
|
|
|
|
def tk_entryBackspace(self):
|
|
|
|
self.tk.call('tk_entryBackspace', self._w)
|
|
|
|
def tk_entryBackword(self):
|
|
|
|
self.tk.call('tk_entryBackword', self._w)
|
|
|
|
def tk_entrySeeCaret(self):
|
|
|
|
self.tk.call('tk_entrySeeCaret', self._w)
|
|
|
|
def delete(self, first, last=None):
|
|
|
|
self.tk.call(self._w, 'delete', first, last)
|
|
|
|
def get(self):
|
|
|
|
return self.tk.call(self._w, 'get')
|
|
|
|
def icursor(self, index):
|
|
|
|
self.tk.call(self._w, 'icursor', index)
|
|
|
|
def index(self, index):
|
|
|
|
return self.tk.getint(self.tk.call(
|
|
|
|
self._w, 'index', index))
|
|
|
|
def insert(self, index, string):
|
|
|
|
self.tk.call(self._w, 'insert', index, string)
|
|
|
|
def scan_mark(self, x):
|
|
|
|
self.tk.call(self._w, 'scan', 'mark', x)
|
|
|
|
def scan_dragto(self, x):
|
|
|
|
self.tk.call(self._w, 'scan', 'dragto', x)
|
|
|
|
def select_adjust(self, index):
|
|
|
|
self.tk.call(self._w, 'select', 'adjust', index)
|
|
|
|
def select_clear(self):
|
|
|
|
self.tk.call(self._w, 'select', 'clear')
|
|
|
|
def select_from(self, index):
|
|
|
|
self.tk.call(self._w, 'select', 'from', index)
|
|
|
|
def select_to(self, index):
|
|
|
|
self.tk.call(self._w, 'select', 'to', index)
|
|
|
|
def select_view(self, index):
|
|
|
|
self.tk.call(self._w, 'select', 'view', index)
|
|
|
|
|
|
|
|
class Frame(Widget):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
1994-07-06 09:23:20 +00:00
|
|
|
cnf = _cnfmerge(cnf)
|
1994-06-20 07:49:28 +00:00
|
|
|
extra = ()
|
|
|
|
if cnf.has_key('class'):
|
|
|
|
extra = ('-class', cnf['class'])
|
|
|
|
del cnf['class']
|
|
|
|
Widget.__init__(self, master, 'frame', cnf, extra)
|
|
|
|
def tk_menuBar(self, *args):
|
|
|
|
apply(self.tk.call, ('tk_menuBar', self._w) + args)
|
|
|
|
|
|
|
|
class Label(Widget):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
Widget.__init__(self, master, 'label', cnf)
|
|
|
|
|
|
|
|
class Listbox(Widget):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
Widget.__init__(self, master, 'listbox', cnf)
|
|
|
|
def tk_listboxSingleSelect(self):
|
|
|
|
self.tk.call('tk_listboxSingleSelect', self._w)
|
|
|
|
def curselection(self):
|
|
|
|
return self.tk.splitlist(self.tk.call(
|
|
|
|
self._w, 'curselection'))
|
|
|
|
def delete(self, first, last=None):
|
|
|
|
self.tk.call(self._w, 'delete', first, last)
|
|
|
|
def get(self, index):
|
|
|
|
return self.tk.call(self._w, 'get', index)
|
|
|
|
def insert(self, index, *elements):
|
|
|
|
apply(self.tk.call,
|
|
|
|
(self._w, 'insert', index) + elements)
|
|
|
|
def nearest(self, y):
|
|
|
|
return self.tk.getint(self.tk.call(
|
|
|
|
self._w, 'nearest', y))
|
|
|
|
def scan_mark(self, x, y):
|
|
|
|
self.tk.call(self._w, 'scan', 'mark', x, y)
|
|
|
|
def scan_dragto(self, x, y):
|
|
|
|
self.tk.call(self._w, 'scan', 'dragto', x, y)
|
|
|
|
def select_adjust(self, index):
|
|
|
|
self.tk.call(self._w, 'select', 'adjust', index)
|
|
|
|
def select_clear(self):
|
|
|
|
self.tk.call(self._w, 'select', 'clear')
|
|
|
|
def select_from(self, index):
|
|
|
|
self.tk.call(self._w, 'select', 'from', index)
|
|
|
|
def select_to(self, index):
|
|
|
|
self.tk.call(self._w, 'select', 'to', index)
|
|
|
|
def size(self):
|
|
|
|
return self.tk.getint(self.tk.call(self._w, 'size'))
|
|
|
|
def xview(self, index):
|
|
|
|
self.tk.call(self._w, 'xview', index)
|
|
|
|
def yview(self, index):
|
|
|
|
self.tk.call(self._w, 'yview', index)
|
|
|
|
|
|
|
|
class Menu(Widget):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
Widget.__init__(self, master, 'menu', cnf)
|
|
|
|
def tk_bindForTraversal(self):
|
|
|
|
self.tk.call('tk_bindForTraversal', self._w)
|
|
|
|
def tk_mbPost(self):
|
|
|
|
self.tk.call('tk_mbPost', self._w)
|
|
|
|
def tk_mbUnpost(self):
|
|
|
|
self.tk.call('tk_mbUnpost')
|
|
|
|
def tk_traverseToMenu(self, char):
|
|
|
|
self.tk.call('tk_traverseToMenu', self._w, char)
|
|
|
|
def tk_traverseWithinMenu(self, char):
|
|
|
|
self.tk.call('tk_traverseWithinMenu', self._w, char)
|
|
|
|
def tk_getMenuButtons(self):
|
|
|
|
return self.tk.call('tk_getMenuButtons', self._w)
|
|
|
|
def tk_nextMenu(self, count):
|
|
|
|
self.tk.call('tk_nextMenu', count)
|
|
|
|
def tk_nextMenuEntry(self, count):
|
|
|
|
self.tk.call('tk_nextMenuEntry', count)
|
|
|
|
def tk_invokeMenu(self):
|
|
|
|
self.tk.call('tk_invokeMenu', self._w)
|
|
|
|
def tk_firstMenu(self):
|
|
|
|
self.tk.call('tk_firstMenu', self._w)
|
|
|
|
def tk_mbButtonDown(self):
|
|
|
|
self.tk.call('tk_mbButtonDown', self._w)
|
|
|
|
def activate(self, index):
|
|
|
|
self.tk.call(self._w, 'activate', index)
|
|
|
|
def add(self, itemType, cnf={}):
|
|
|
|
apply(self.tk.call, (self._w, 'add', itemType)
|
|
|
|
+ self._options(cnf))
|
1994-06-27 07:55:12 +00:00
|
|
|
def add_cascade(self, cnf={}):
|
|
|
|
self.add('cascade', cnf)
|
|
|
|
def add_checkbutton(self, cnf={}):
|
|
|
|
self.add('checkbutton', cnf)
|
|
|
|
def add_command(self, cnf={}):
|
|
|
|
self.add('command', cnf)
|
|
|
|
def add_radiobutton(self, cnf={}):
|
|
|
|
self.add('radiobutton', cnf)
|
|
|
|
def add_separator(self, cnf={}):
|
|
|
|
self.add('separator', cnf)
|
1994-06-20 07:49:28 +00:00
|
|
|
def delete(self, index1, index2=None):
|
|
|
|
self.tk.call(self._w, 'delete', index1, index2)
|
|
|
|
def entryconfig(self, index, cnf={}):
|
|
|
|
apply(self.tk.call, (self._w, 'entryconfigure', index)
|
|
|
|
+ self._options(cnf))
|
|
|
|
def index(self, index):
|
1994-06-27 07:55:59 +00:00
|
|
|
i = self.tk.call(self._w, 'index', index)
|
|
|
|
if i == 'none': return None
|
|
|
|
return self.tk.getint(i)
|
1994-06-20 07:49:28 +00:00
|
|
|
def invoke(self, index):
|
|
|
|
return self.tk.call(self._w, 'invoke', index)
|
|
|
|
def post(self, x, y):
|
|
|
|
self.tk.call(self._w, 'post', x, y)
|
|
|
|
def unpost(self):
|
|
|
|
self.tk.call(self._w, 'unpost')
|
|
|
|
def yposition(self, index):
|
|
|
|
return self.tk.getint(self.tk.call(
|
|
|
|
self._w, 'yposition', index))
|
|
|
|
|
|
|
|
class Menubutton(Widget):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
Widget.__init__(self, master, 'menubutton', cnf)
|
|
|
|
|
|
|
|
class Message(Widget):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
Widget.__init__(self, master, 'message', cnf)
|
|
|
|
|
|
|
|
class Radiobutton(Widget):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
Widget.__init__(self, master, 'radiobutton', cnf)
|
|
|
|
def deselect(self):
|
|
|
|
self.tk.call(self._w, 'deselect')
|
|
|
|
def flash(self):
|
|
|
|
self.tk.call(self._w, 'flash')
|
|
|
|
def invoke(self):
|
|
|
|
self.tk.call(self._w, 'invoke')
|
|
|
|
def select(self):
|
|
|
|
self.tk.call(self._w, 'select')
|
|
|
|
|
|
|
|
class Scale(Widget):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
Widget.__init__(self, master, 'scale', cnf)
|
|
|
|
def get(self):
|
|
|
|
return self.tk.getint(self.tk.call(self._w, 'get'))
|
|
|
|
def set(self, value):
|
|
|
|
self.tk.call(self._w, 'set', value)
|
|
|
|
|
|
|
|
class Scrollbar(Widget):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
Widget.__init__(self, master, 'scrollbar', cnf)
|
|
|
|
def get(self):
|
1994-06-27 07:55:12 +00:00
|
|
|
return self._getints(self.tk.call(self._w, 'get'))
|
1994-06-20 07:49:28 +00:00
|
|
|
def set(self, totalUnits, windowUnits, firstUnit, lastUnit):
|
|
|
|
self.tk.call(self._w, 'set',
|
|
|
|
totalUnits, windowUnits, firstUnit, lastUnit)
|
|
|
|
|
|
|
|
class Text(Widget):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
Widget.__init__(self, master, 'text', cnf)
|
|
|
|
def tk_textSelectTo(self, index):
|
|
|
|
self.tk.call('tk_textSelectTo', self._w, index)
|
|
|
|
def tk_textBackspace(self):
|
|
|
|
self.tk.call('tk_textBackspace', self._w)
|
|
|
|
def tk_textIndexCloser(self, a, b, c):
|
|
|
|
self.tk.call('tk_textIndexCloser', self._w, a, b, c)
|
|
|
|
def tk_textResetAnchor(self, index):
|
|
|
|
self.tk.call('tk_textResetAnchor', self._w, index)
|
|
|
|
def compare(self, index1, op, index2):
|
|
|
|
return self.tk.getboolean(self.tk.call(
|
|
|
|
self._w, 'compare', index1, op, index2))
|
|
|
|
def debug(self, boolean=None):
|
|
|
|
return self.tk.getboolean(self.tk.call(
|
|
|
|
self._w, 'debug', boolean))
|
|
|
|
def delete(self, index1, index2=None):
|
|
|
|
self.tk.call(self._w, 'delete', index1, index2)
|
|
|
|
def get(self, index1, index2=None):
|
|
|
|
return self.tk.call(self._w, 'get', index1, index2)
|
|
|
|
def index(self, index):
|
|
|
|
return self.tk.call(self._w, 'index', index)
|
|
|
|
def insert(self, index, chars):
|
|
|
|
self.tk.call(self._w, 'insert', index, chars)
|
|
|
|
def mark_names(self):
|
|
|
|
return self.tk.splitlist(self.tk.call(
|
|
|
|
self._w, 'mark', 'names'))
|
|
|
|
def mark_set(self, markName, index):
|
|
|
|
self.tk.call(self._w, 'mark', 'set', markName, index)
|
|
|
|
def mark_unset(self, markNames):
|
|
|
|
apply(self.tk.call, (self._w, 'mark', 'unset') + markNames)
|
|
|
|
def scan_mark(self, y):
|
|
|
|
self.tk.call(self._w, 'scan', 'mark', y)
|
|
|
|
def scan_dragto(self, y):
|
|
|
|
self.tk.call(self._w, 'scan', 'dragto', y)
|
|
|
|
def tag_add(self, tagName, index1, index2=None):
|
|
|
|
self.tk.call(
|
|
|
|
self._w, 'tag', 'add', tagName, index1, index2)
|
1994-08-08 12:47:33 +00:00
|
|
|
def tag_unbind(self, tagName, sequence):
|
|
|
|
self.tk.call(self._w, 'tag', 'bind', tagName, sequence, '')
|
1994-06-20 07:49:28 +00:00
|
|
|
def tag_bind(self, tagName, sequence, func, add=''):
|
|
|
|
if add: add='+'
|
1994-06-20 12:19:19 +00:00
|
|
|
name = self._register(func, self._substitute)
|
1994-06-20 07:49:28 +00:00
|
|
|
self.tk.call(self._w, 'tag', 'bind',
|
|
|
|
tagName, sequence,
|
1994-06-27 07:55:12 +00:00
|
|
|
(add + name,) + self._subst_format)
|
1994-06-20 07:49:28 +00:00
|
|
|
def tag_config(self, tagName, cnf={}):
|
|
|
|
apply(self.tk.call,
|
|
|
|
(self._w, 'tag', 'configure', tagName)
|
|
|
|
+ self._options(cnf))
|
1994-07-06 09:23:20 +00:00
|
|
|
def tag_delete(self, *tagNames):
|
1994-07-06 10:20:11 +00:00
|
|
|
apply(self.tk.call, (self._w, 'tag', 'delete') + tagNames)
|
1994-06-20 07:49:28 +00:00
|
|
|
def tag_lower(self, tagName, belowThis=None):
|
1994-07-07 13:12:12 +00:00
|
|
|
self.tk.call(self._w, 'tag', 'lower', tagName, belowThis)
|
1994-06-20 07:49:28 +00:00
|
|
|
def tag_names(self, index=None):
|
|
|
|
return self.tk.splitlist(
|
|
|
|
self.tk.call(self._w, 'tag', 'names', index))
|
|
|
|
def tag_nextrange(self, tagName, index1, index2=None):
|
|
|
|
return self.tk.splitlist(self.tk.call(
|
|
|
|
self._w, 'tag', 'nextrange', index1, index2))
|
|
|
|
def tag_raise(self, tagName, aboveThis=None):
|
|
|
|
self.tk.call(
|
|
|
|
self._w, 'tag', 'raise', tagName, aboveThis)
|
|
|
|
def tag_ranges(self, tagName):
|
|
|
|
return self.tk.splitlist(self.tk.call(
|
|
|
|
self._w, 'tag', 'ranges', tagName))
|
|
|
|
def tag_remove(self, tagName, index1, index2=None):
|
|
|
|
self.tk.call(
|
1994-07-06 21:16:58 +00:00
|
|
|
self._w, 'tag', 'remove', tagName, index1, index2)
|
1994-06-20 07:49:28 +00:00
|
|
|
def yview(self, what):
|
|
|
|
self.tk.call(self._w, 'yview', what)
|
|
|
|
def yview_pickplace(self, what):
|
|
|
|
self.tk.call(self._w, 'yview', '-pickplace', what)
|
|
|
|
|
1994-06-27 07:55:12 +00:00
|
|
|
######################################################################
|
|
|
|
# Extensions:
|
|
|
|
|
|
|
|
class Studbutton(Button):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
Widget.__init__(self, master, 'studbutton', cnf)
|
|
|
|
self.bind('<Any-Enter>', self.tk_butEnter)
|
|
|
|
self.bind('<Any-Leave>', self.tk_butLeave)
|
|
|
|
self.bind('<1>', self.tk_butDown)
|
|
|
|
self.bind('<ButtonRelease-1>', self.tk_butUp)
|
|
|
|
|
|
|
|
class Tributton(Button):
|
|
|
|
def __init__(self, master=None, cnf={}):
|
|
|
|
Widget.__init__(self, master, 'tributton', cnf)
|
|
|
|
self.bind('<Any-Enter>', self.tk_butEnter)
|
|
|
|
self.bind('<Any-Leave>', self.tk_butLeave)
|
|
|
|
self.bind('<1>', self.tk_butDown)
|
|
|
|
self.bind('<ButtonRelease-1>', self.tk_butUp)
|
|
|
|
|