Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_stackviewer.py8 from idlelib.tree import TreeNode, ScrolledCanvas
41 isi(stackviewer.sc, ScrolledCanvas)
Dtest_tree.py24 sc = tree.ScrolledCanvas(
/external/python/cpython2/Lib/idlelib/
DObjectBrowser.py14 from idlelib.TreeWidget import TreeItem, TreeNode, ScrolledCanvas
147 sc = ScrolledCanvas(root, bg="white", highlightthickness=0, takefocus=1)
DStackViewer.py7 from idlelib.TreeWidget import TreeNode, TreeItem, ScrolledCanvas
14 sc = ScrolledCanvas(top, bg="white", highlightthickness=0)
DClassBrowser.py19 from idlelib.TreeWidget import TreeNode, TreeItem, ScrolledCanvas
61 sc = ScrolledCanvas(top, bg=background, highlightthickness=0, takefocus=1)
DTreeWidget.py411 class ScrolledCanvas: class
458 sc = ScrolledCanvas(root, bg="white", highlightthickness=0, takefocus=1)
DPyShell.py632 from idlelib.TreeWidget import ScrolledCanvas, TreeNode
636 sc = ScrolledCanvas(top, bg=background, highlightthickness=0)
/external/python/cpython3/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
115 sc = ScrolledCanvas(top, bg=background, highlightthickness=0,
Dtree.py412 class ScrolledCanvas: class
458 sc = ScrolledCanvas(top, bg="white", highlightthickness=0, takefocus=1)
Dpyshell.py628 from idlelib.tree import ScrolledCanvas, TreeNode
632 sc = ScrolledCanvas(top, bg=background, highlightthickness=0)
/external/python/cpython2/Lib/lib-tk/
Dturtle.py353 class ScrolledCanvas(TK.Frame): class
452 __forwardmethods(ScrolledCanvas, TK.Canvas, '_canvas')
461 self._canvas = ScrolledCanvas(self, width, height, cwidth, cheight)
507 if isinstance(cv, ScrolledCanvas):
785 if not isinstance(self.cv, ScrolledCanvas):
2434 elif isinstance(canvas, (ScrolledCanvas, Canvas)):
/external/python/cpython3/Lib/
Dturtle.py329 class ScrolledCanvas(TK.Frame): class
428 __forwardmethods(ScrolledCanvas, TK.Canvas, '_canvas')
437 self._canvas = ScrolledCanvas(self, width, height, cwidth, cheight)
483 if isinstance(cv, ScrolledCanvas):
779 if not isinstance(self.cv, ScrolledCanvas):
2529 elif isinstance(canvas, (ScrolledCanvas, Canvas)):
/external/python/cpython2/Demo/turtle/
DturtleDemo.py132 turtle._Screen._canvas = self._canvas = canvas = turtle.ScrolledCanvas(
/external/python/cpython3/Lib/turtledemo/
D__main__.py236 turtle._Screen._canvas = self._canvas = canvas = turtle.ScrolledCanvas(
/external/python/cpython2/Doc/library/
Dturtle.rst45 :class:`ScrolledCanvas` as argument. It should be used when :mod:`turtle` is
57 on a :class:`TurtleScreen`. Its constructor needs a Canvas, ScrolledCanvas
1760 <turtle.ScrolledCanvas instance at 0x...>
1893 :param canvas: a :class:`Tkinter.Canvas`, a :class:`ScrolledCanvas` or a
1918 .. class:: ScrolledCanvas(master)
1920 :param master: some Tkinter widget to contain the ScrolledCanvas, i.e.
1923 Used by class Screen, which thus automatically provides a ScrolledCanvas as
/external/python/cpython3/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
1886 <turtle.ScrolledCanvas object ...>
2019 :param canvas: a :class:`tkinter.Canvas`, a :class:`ScrolledCanvas` or a
2044 .. class:: ScrolledCanvas(master)
2046 :param master: some Tkinter widget to contain the ScrolledCanvas, i.e.
2049 Used by class Screen, which thus automatically provides a ScrolledCanvas as
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst4599 Resolve member name conflict in ScrolledCanvas.__init__.
/external/python/cpython3/Misc/
DHISTORY16114 - Issue #4116: Resolve member name conflict in ScrolledCanvas.__init__.