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

Lines Matching full:options

17     def __init__(self, master=None, **options):
24 self.options = options
25 if not master and options.get('parent'):
26 self.master = options['parent']
34 def show(self, **options):
36 # update instance options
37 for k, v in options.items():
38 self.options[k] = v
42 # we need a dummy widget to properly process the options
48 s = w.tk.call(self.command, *w._options(self.options))