Home
last modified time | relevance | path

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

/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/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/cpython2/Demo/turtle/
DturtleDemo.py132 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/cpython2/Misc/
DNEWS8675 - Issue #4116: Resolve member name conflict in ScrolledCanvas.__init__.