Lines Matching full:master

327 def setup_master(master=None):  argument
328 """If master is not None, itself is returned. If master is None,
329 the default master is returned if there is one, otherwise a new
330 master is created and returned.
332 If it is not allowed to use the default root and master is None,
334 if master is None:
335 master = tkinter._get_default_root()
336 return master
344 def __init__(self, master=None): argument
345 master = setup_master(master)
346 self.master = master
347 self.tk = self.master.tk
506 def __init__(self, master, widgetname, kw=None): argument
507 """Constructs a Ttk Widget with the parent master.
526 master = setup_master(master)
527 tkinter.Widget.__init__(self, master, widgetname, kw=kw)
570 def __init__(self, master=None, **kw): argument
571 """Construct a Ttk Button widget with the parent master.
582 Widget.__init__(self, master, "ttk::button", kw)
593 def __init__(self, master=None, **kw): argument
594 """Construct a Ttk Checkbutton widget with the parent master.
605 Widget.__init__(self, master, "ttk::checkbutton", kw)
623 def __init__(self, master=None, widget=None, **kw): argument
624 """Constructs a Ttk Entry widget with the parent master.
639 Widget.__init__(self, master, widget or "ttk::entry", kw)
665 def __init__(self, master=None, **kw): argument
666 """Construct a Ttk Combobox widget with the parent master.
677 Entry.__init__(self, master, "ttk::combobox", **kw)
699 def __init__(self, master=None, **kw): argument
700 """Construct a Ttk Frame with parent master.
710 Widget.__init__(self, master, "ttk::frame", kw)
716 def __init__(self, master=None, **kw): argument
717 """Construct a Ttk Label with parent master.
729 Widget.__init__(self, master, "ttk::label", kw)
737 def __init__(self, master=None, **kw): argument
738 """Construct a Ttk Labelframe with parent master.
748 Widget.__init__(self, master, "ttk::labelframe", kw)
757 def __init__(self, master=None, **kw): argument
758 """Construct a Ttk Menubutton with parent master.
769 Widget.__init__(self, master, "ttk::menubutton", kw)
777 def __init__(self, master=None, **kw): argument
778 """Construct a Ttk Notebook with parent master.
806 Widget.__init__(self, master, "ttk::notebook", kw)
909 def __init__(self, master=None, **kw): argument
910 """Construct a Ttk Panedwindow with parent master.
924 Widget.__init__(self, master, "ttk::panedwindow", kw)
971 def __init__(self, master=None, **kw): argument
972 """Construct a Ttk Progressbar with parent master.
982 Widget.__init__(self, master, "ttk::progressbar", kw)
1010 def __init__(self, master=None, **kw): argument
1011 """Construct a Ttk Radiobutton with parent master.
1022 Widget.__init__(self, master, "ttk::radiobutton", kw)
1038 def __init__(self, master=None, **kw): argument
1039 """Construct a Ttk Scale with parent master.
1049 Widget.__init__(self, master, "ttk::scale", kw)
1077 def __init__(self, master=None, **kw): argument
1078 """Construct a Ttk Scrollbar with parent master.
1088 Widget.__init__(self, master, "ttk::scrollbar", kw)
1095 def __init__(self, master=None, **kw): argument
1096 """Construct a Ttk Separator with parent master.
1106 Widget.__init__(self, master, "ttk::separator", kw)
1113 def __init__(self, master=None, **kw): argument
1114 """Construct a Ttk Sizegrip with parent master.
1120 Widget.__init__(self, master, "ttk::sizegrip", kw)
1130 def __init__(self, master=None, **kw): argument
1131 """Construct a Ttk Spinbox widget with the parent master.
1142 Entry.__init__(self, master, "ttk::spinbox", **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)
1485 def __init__(self, master=None, variable=None, from_=0, to=10, **kw): argument
1486 """Construct a horizontal LabeledScale with parent master, a
1498 Frame.__init__(self, master, **kw)
1499 self._variable = variable or tkinter.IntVar(master)
1578 def __init__(self, master, variable, default=None, *values, **kwargs): argument
1579 """Construct a themed OptionMenu widget with master as the parent,
1595 Menubutton.__init__(self, master, **kw)