Lines Matching refs:TurtleScreen

77 - A TurtleScreen class with methods controlling background color or
79 TurtleScreen.
82 coordinate-system for the TurtleScreen.
88 - Appearance of the TurtleScreen and the Turtles at startup/import can be
119 _tg_classes = ['ScrolledCanvas', 'TurtleScreen', 'Screen',
156 "mode": "standard", # TurtleScreen
808 Example (for a TurtleScreen instance named screen):
823 Example (for a TurtleScreen instance named screen):
843 Example (for a TurtleScreen instance named screen):
858 """Will be raised in TurtleScreen.update, if _RUNNING becomes False.
886 data = TurtleScreen._image(data)
956 class TurtleScreen(TurtleScreenBase):
1006 """Delete all drawings and all turtles from the TurtleScreen.
1010 Reset empty TurtleScreen to its initial state: white background,
1013 Example (for a TurtleScreen instance named screen):
1085 Example (for a TurtleScreen instance named screen):
1109 """Adds a turtle shape to TurtleScreen's shapelist.
1127 Example (for a TurtleScreen instance named screen):
1189 Example (for a TurtleScreen instance named screen):
1207 Example (for a TurtleScreen instance named screen):
1217 Example (for a TurtleScreen instance named screen):
1224 """Set or return backgroundcolor of the TurtleScreen.
1229 Example (for a TurtleScreen instance named screen):
1257 Example (for a TurtleScreen instance named screen):
1280 Example (for a TurtleScreen instance named screen):
1291 if not TurtleScreen._RUNNING:
1292 TurtleScreen._RUNNING = True
1299 """Perform a TurtleScreen update.
1312 Example (for a TurtleScreen instance named screen):
1321 Example (for a TurtleScreen instance named screen):
1328 """Return the Canvas of this TurtleScreen.
1344 Example (for a TurtleScreen instance named screen):
1358 Example (for a TurtleScreen instance named screen)
1361 >>> # Subsequently clicking into the TurtleScreen will
1374 In order to be able to register key-events, TurtleScreen
1377 Example (for a TurtleScreen instance named screen):
1405 In order to be able to register key-events, TurtleScreen
1408 Example (for a TurtleScreen instance named screen
1430 """Set focus on TurtleScreen (in order to collect key-events)
1436 Example (for a TurtleScreen instance named screen):
1448 Example (for a TurtleScreen instance named screen):
1472 Example (for a TurtleScreen instance named screen):
2515 Puts RawTurtle upon a TurtleScreen and provides tools for
2526 elif isinstance(canvas, TurtleScreen):
2536 self.screen = TurtleScreen(canvas)
2762 Shape with name must exist in the TurtleScreen's shape dictionary.
3431 arg -- info, which is to be written to the TurtleScreen
3497 """Return the TurtleScreen object, the turtle is drawing on.
3501 Return the TurtleScreen object, the turtle is drawing on.
3502 So TurtleScreen-methods can be called for that object.
3507 <turtle.TurtleScreen object at 0x0106B770>
3533 ### screen oriented methods recurring to methods of TurtleScreen
3683 class _Screen(TurtleScreen):
3708 TurtleScreen.__init__(self, _Screen._canvas)
3758 This is a method of Screen-class. Not available for TurtleScreen-
3775 TurtleScreen._RUNNING = False
3781 Example (for a TurtleScreen instance named screen):
3791 Bind bye() method to mouseclick on TurtleScreen.
3799 TurtleScreen instances.
3820 Turtle method is called a TurtleScreen object is automatically created.
3945 """To reduce docstrings from TurtleScreen class for functions
3963 if not TurtleScreen._RUNNING:
3964 TurtleScreen._RUNNING = True
3970 if not TurtleScreen._RUNNING:
3971 TurtleScreen._RUNNING = True