Searched refs:ScrolledCanvas (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Lib/idlelib/ |
D | ObjectBrowser.py | 14 from idlelib.TreeWidget import TreeItem, TreeNode, ScrolledCanvas 147 sc = ScrolledCanvas(root, bg="white", highlightthickness=0, takefocus=1)
|
D | StackViewer.py | 7 from idlelib.TreeWidget import TreeNode, TreeItem, ScrolledCanvas 14 sc = ScrolledCanvas(top, bg="white", highlightthickness=0)
|
D | ClassBrowser.py | 19 from idlelib.TreeWidget import TreeNode, TreeItem, ScrolledCanvas 61 sc = ScrolledCanvas(top, bg=background, highlightthickness=0, takefocus=1)
|
D | TreeWidget.py | 411 class ScrolledCanvas: class 458 sc = ScrolledCanvas(root, bg="white", highlightthickness=0, takefocus=1)
|
D | PyShell.py | 632 from idlelib.TreeWidget import ScrolledCanvas, TreeNode 636 sc = ScrolledCanvas(top, bg=background, highlightthickness=0)
|
/external/python/cpython2/Lib/lib-tk/ |
D | turtle.py | 353 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/ |
D | turtleDemo.py | 132 turtle._Screen._canvas = self._canvas = canvas = turtle.ScrolledCanvas(
|
/external/python/cpython2/Doc/library/ |
D | turtle.rst | 45 :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/ |
D | NEWS | 8675 - Issue #4116: Resolve member name conflict in ScrolledCanvas.__init__.
|