Home
last modified time | relevance | path

Searched refs:ScrolledCanvas (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Lib/idlelib/idle_test/
Dtest_stackviewer.py8 from idlelib.tree import TreeNode, ScrolledCanvas
41 isi(stackviewer.sc, ScrolledCanvas)
Dtest_tree.py24 sc = tree.ScrolledCanvas(
/third_party/python/Lib/idlelib/
Ddebugobj.py13 from idlelib.tree import TreeItem, TreeNode, ScrolledCanvas
131 sc = ScrolledCanvas(top, bg="white", highlightthickness=0, takefocus=1)
Dstackviewer.py8 from idlelib.tree import TreeNode, TreeItem, ScrolledCanvas
14 sc = ScrolledCanvas(top, bg="white", highlightthickness=0)
Dbrowser.py18 from idlelib.tree import TreeNode, TreeItem, ScrolledCanvas
116 sc = ScrolledCanvas(top, bg=background, highlightthickness=0,
Dtree.py439 class ScrolledCanvas: class
489 sc = ScrolledCanvas(top, bg="white", highlightthickness=0, takefocus=1)
Dpyshell.py658 from idlelib.tree import ScrolledCanvas, TreeNode
662 sc = ScrolledCanvas(top, bg=background, highlightthickness=0)
/third_party/python/Lib/
Dturtle.py330 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__.py243 turtle._Screen._canvas = self._canvas = canvas = turtle.ScrolledCanvas(
/third_party/python/Doc/library/
Dturtle.rst60 :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/
DHISTORY16114 - Issue #4116: Resolve member name conflict in ScrolledCanvas.__init__.