• Home
  • Raw
  • Download

Lines Matching full:master

34 def _load_tile(master):  argument
42 master.tk.eval(
46 master.tk.eval('package require tile') # TclError may be raised here
47 master._tile_loaded = True
345 def setup_master(master=None): argument
346 """If master is not None, itself is returned. If master is None,
347 the default master is returned if there is one, otherwise a new
348 master is created and returned.
350 If it is not allowed to use the default root and master is None,
352 if master is None:
354 master = Tkinter._default_root or Tkinter.Tk()
357 "No master specified and Tkinter is "
359 return master
367 def __init__(self, master=None): argument
368 master = setup_master(master)
370 if not getattr(master, '_tile_loaded', False):
372 _load_tile(master)
374 self.master = master
375 self.tk = self.master.tk
531 def __init__(self, master, widgetname, kw=None): argument
532 """Constructs a Ttk Widget with the parent master.
551 master = setup_master(master)
552 if not getattr(master, '_tile_loaded', False):
554 _load_tile(master)
555 Tkinter.Widget.__init__(self, master, widgetname, kw=kw)
598 def __init__(self, master=None, **kw): argument
599 """Construct a Ttk Button widget with the parent master.
610 Widget.__init__(self, master, "ttk::button", kw)
621 def __init__(self, master=None, **kw): argument
622 """Construct a Ttk Checkbutton widget with the parent master.
633 Widget.__init__(self, master, "ttk::checkbutton", kw)
651 def __init__(self, master=None, widget=None, **kw): argument
652 """Constructs a Ttk Entry widget with the parent master.
667 Widget.__init__(self, master, widget or "ttk::entry", kw)
693 def __init__(self, master=None, **kw): argument
694 """Construct a Ttk Combobox widget with the parent master.
705 Entry.__init__(self, master, "ttk::combobox", **kw)
727 def __init__(self, master=None, **kw): argument
728 """Construct a Ttk Frame with parent master.
738 Widget.__init__(self, master, "ttk::frame", kw)
744 def __init__(self, master=None, **kw): argument
745 """Construct a Ttk Label with parent master.
757 Widget.__init__(self, master, "ttk::label", kw)
765 def __init__(self, master=None, **kw): argument
766 """Construct a Ttk Labelframe with parent master.
776 Widget.__init__(self, master, "ttk::labelframe", kw)
785 def __init__(self, master=None, **kw): argument
786 """Construct a Ttk Menubutton with parent master.
797 Widget.__init__(self, master, "ttk::menubutton", kw)
805 def __init__(self, master=None, **kw): argument
806 """Construct a Ttk Notebook with parent master.
834 Widget.__init__(self, master, "ttk::notebook", kw)
937 def __init__(self, master=None, **kw): argument
938 """Construct a Ttk Panedwindow with parent master.
952 Widget.__init__(self, master, "ttk::panedwindow", kw)
999 def __init__(self, master=None, **kw): argument
1000 """Construct a Ttk Progressbar with parent master.
1010 Widget.__init__(self, master, "ttk::progressbar", kw)
1038 def __init__(self, master=None, **kw): argument
1039 """Construct a Ttk Radiobutton with parent master.
1050 Widget.__init__(self, master, "ttk::radiobutton", kw)
1066 def __init__(self, master=None, **kw): argument
1067 """Construct a Ttk Scale with parent master.
1077 Widget.__init__(self, master, "ttk::scale", kw)
1104 def __init__(self, master=None, **kw): argument
1105 """Construct a Ttk Scrollbar with parent master.
1115 Widget.__init__(self, master, "ttk::scrollbar", kw)
1122 def __init__(self, master=None, **kw): argument
1123 """Construct a Ttk Separator with parent master.
1133 Widget.__init__(self, master, "ttk::separator", kw)
1140 def __init__(self, master=None, **kw): argument
1141 """Construct a Ttk Sizegrip with parent master.
1147 Widget.__init__(self, master, "ttk::sizegrip", kw)
1157 def __init__(self, master=None, **kw): argument
1158 """Construct a Ttk Treeview with parent master.
1177 Widget.__init__(self, master, "ttk::treeview", kw)
1269 kw['command'] = self.master.register(cmd, self._substitute)
1480 def __init__(self, master=None, variable=None, from_=0, to=10, **kw): argument
1481 """Construct a horizontal LabeledScale with parent master, a
1493 Frame.__init__(self, master, **kw)
1494 self._variable = variable or Tkinter.IntVar(master)
1572 def __init__(self, master, variable, default=None, *values, **kwargs): argument
1573 """Construct a themed OptionMenu widget with master as the parent,
1589 Menubutton.__init__(self, master, **kw)