Searched refs:ScrolledCanvas (Results 1 – 11 of 11) sorted by relevance
/third_party/python/Lib/idlelib/idle_test/ |
D | test_stackviewer.py | 8 from idlelib.tree import TreeNode, ScrolledCanvas 41 isi(stackviewer.sc, ScrolledCanvas)
|
D | test_tree.py | 24 sc = tree.ScrolledCanvas(
|
/third_party/python/Lib/idlelib/ |
D | debugobj.py | 13 from idlelib.tree import TreeItem, TreeNode, ScrolledCanvas 131 sc = ScrolledCanvas(top, bg="white", highlightthickness=0, takefocus=1)
|
D | stackviewer.py | 8 from idlelib.tree import TreeNode, TreeItem, ScrolledCanvas 14 sc = ScrolledCanvas(top, bg="white", highlightthickness=0)
|
D | browser.py | 18 from idlelib.tree import TreeNode, TreeItem, ScrolledCanvas 116 sc = ScrolledCanvas(top, bg=background, highlightthickness=0,
|
D | tree.py | 439 class ScrolledCanvas: class 489 sc = ScrolledCanvas(top, bg="white", highlightthickness=0, takefocus=1)
|
D | pyshell.py | 658 from idlelib.tree import ScrolledCanvas, TreeNode 662 sc = ScrolledCanvas(top, bg=background, highlightthickness=0)
|
/third_party/python/Lib/ |
D | turtle.py | 330 class ScrolledCanvas(TK.Frame): class 429 __forwardmethods(ScrolledCanvas, TK.Canvas, '_canvas') 438 self._canvas = ScrolledCanvas(self, width, height, cwidth, cheight) 482 if isinstance(cv, ScrolledCanvas): 778 if not isinstance(self.cv, ScrolledCanvas): 2530 elif isinstance(canvas, (ScrolledCanvas, Canvas)):
|
/third_party/python/Lib/turtledemo/ |
D | __main__.py | 243 turtle._Screen._canvas = self._canvas = canvas = turtle.ScrolledCanvas(
|
/third_party/python/Doc/library/ |
D | turtle.rst | 60 :class:`ScrolledCanvas` as argument. It should be used when :mod:`turtle` is 72 on a :class:`TurtleScreen`. Its constructor needs a Canvas, ScrolledCanvas 1973 <turtle.ScrolledCanvas object ...> 2111 :param canvas: a :class:`tkinter.Canvas`, a :class:`ScrolledCanvas` or a 2136 .. class:: ScrolledCanvas(master) 2138 :param master: some Tkinter widget to contain the ScrolledCanvas, i.e. 2141 Used by class Screen, which thus automatically provides a ScrolledCanvas as
|
/third_party/python/Misc/ |
D | HISTORY | 16114 - Issue #4116: Resolve member name conflict in ScrolledCanvas.__init__.
|