Lines Matching defs:parent

454     def theme_create(self, themename, parent=None, settings=None):
457 It is an error if themename already exists. If parent is
459 layouts from the specified parent theme. If settings are present,
463 if parent:
465 "-parent", parent, "-settings", script)
507 """Constructs a Ttk Widget with the parent master.
571 """Construct a Ttk Button widget with the parent master.
594 """Construct a Ttk Checkbutton widget with the parent master.
624 """Constructs a Ttk Entry widget with the parent master.
666 """Construct a Ttk Combobox widget with the parent master.
700 """Construct a Ttk Frame with parent master.
717 """Construct a Ttk Label with parent master.
738 """Construct a Ttk Labelframe with parent master.
758 """Construct a Ttk Menubutton with parent master.
778 """Construct a Ttk Notebook with parent master.
910 """Construct a Ttk Panedwindow with parent master.
972 """Construct a Ttk Progressbar with parent master.
1011 """Construct a Ttk Radiobutton with parent master.
1039 """Construct a Ttk Scale with parent master.
1078 """Construct a Ttk Scrollbar with parent master.
1096 """Construct a Ttk Separator with parent master.
1114 """Construct a Ttk Sizegrip with parent master.
1131 """Construct a Ttk Spinbox widget with the parent master.
1158 """Construct a Ttk Treeview with parent master.
1316 """Returns the integer index of item within its parent's list
1321 def insert(self, parent, index, iid=None, **kw):
1325 parent is the item ID of the parent item, or the empty string
1327 end, specifying where in the list of parent's children to insert
1336 res = self.tk.call(self._w, "insert", parent, index,
1339 res = self.tk.call(self._w, "insert", parent, index, *opts)
1356 def move(self, item, parent, index):
1357 """Moves item to position index in parent's list of children.
1363 self.tk.call(self._w, "move", item, parent, index)
1370 is the last child of its parent."""
1374 def parent(self, item):
1375 """Returns the ID of the parent of item, or '' if item is at the
1377 return self.tk.call(self._w, "parent", item)
1382 item is the first child of its parent."""
1486 """Construct a horizontal LabeledScale with parent master, a
1579 """Construct a themed OptionMenu widget with master as the parent,