Searched refs:itemconfigure (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Lib/tkinter/test/test_tkinter/ |
D | test_widgets.py | 824 widget.itemconfigure(0) 828 widget.itemconfigure(i, background=color) 830 widget.itemconfigure() 832 widget.itemconfigure('red') 833 self.assertEqual(widget.itemconfigure(0, 'background'), 835 self.assertEqual(widget.itemconfigure('end', 'background'), 837 self.assertEqual(widget.itemconfigure('@0,0', 'background'), 840 d = widget.itemconfigure(0) 845 self.assertEqual(v, widget.itemconfigure(0, k)) 851 widget.itemconfigure(0, **{name: value}) [all …]
|
/third_party/python/Tools/pynche/ |
D | StripViewer.py | 131 self._canvas.itemconfigure(self.__text, text=text) 261 self.__canvas.itemconfigure(self.__lastchip, outline=color) 288 self.__canvas.itemconfigure(chip, outline=outline) 312 self.__canvas.itemconfigure(self.__label, text=label)
|
D | ListViewer.py | 144 canvas.itemconfigure(self.__lastbox, outline='') 147 canvas.itemconfigure(colortag, outline='black')
|
/third_party/python/Lib/ |
D | turtle.py | 515 self.cv.itemconfigure(polyitem, fill=fill) 517 self.cv.itemconfigure(polyitem, outline=outline) 519 self.cv.itemconfigure(polyitem, width=width) 546 self.cv.itemconfigure(lineitem, fill=fill) 548 self.cv.itemconfigure(lineitem, width=width)
|
/third_party/python/Lib/test/ |
D | test_pydoc.py | 790 def itemconfigure(self, tagOrId, cnf=None, **kw): member in PydocDocTest.test_method_aliases.B 792 itemconfig = itemconfigure
|
/third_party/python/Lib/tkinter/ |
D | __init__.py | 2925 def itemconfigure(self, tagOrId, cnf=None, **kw): member in Canvas 2934 itemconfig = itemconfigure 3283 def itemconfigure(self, index, cnf=None, **kw): member in Listbox 3293 itemconfig = itemconfigure
|
/third_party/python/Lib/idlelib/ |
D | configdialog.py | 2403 canvas.itemconfigure(interior_id, width=canvas.winfo_width())
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 5507 Added Tkinter tests for Listbox.itemconfigure(),
|
/third_party/python/Misc/ |
D | HISTORY | 1797 - Issue #21522: Added Tkinter tests for Listbox.itemconfigure(),
|