Home | History | Annotate | Download | only in lib-tk

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
118 _tg_classes = ['ScrolledCanvas', 'TurtleScreen', 'Screen',
157 "mode": "standard", # TurtleScreen
813 """Will be raised in TurtleScreen.update, if _RUNNING becomes False.
841 data = TurtleScreen._image(data)
911 class TurtleScreen(TurtleScreenBase):
954 """Delete all drawings and all turtles from the TurtleScreen.
956 Reset empty TurtleScreen to its initial state: white background,
961 Example (for a TurtleScreen instance named screen):
1031 Example (for a TurtleScreen instance named screen):
1055 """Adds a turtle shape to TurtleScreen's shapelist.
1073 Example (for a TurtleScreen instance named screen):
1136 Example (for a TurtleScreen instance named screen):
1154 Example (for a TurtleScreen instance named screen):
1164 Example (for a TurtleScreen instance named screen):
1171 """Set or return backgroundcolor of the TurtleScreen.
1176 Example (for a TurtleScreen instance named screen):
1204 Example (for a TurtleScreen instance named screen):
1227 Example (for a TurtleScreen instance named screen):
1238 if not TurtleScreen._RUNNING:
1239 TurtleScreen._RUNNING = True
1246 """Perform a TurtleScreen update.
1259 Example (for a TurtleScreen instance named screen):
1268 Example (for a TurtleScreen instance named screen):
1275 """Return the Canvas of this TurtleScreen.
1291 Example (for a TurtleScreen instance named screen):
1305 Example (for a TurtleScreen instance named screen
1309 >>> # Subsequently clicking into the TurtleScreen will
1322 In order to be able to register key-events, TurtleScreen
1325 Example (for a TurtleScreen instance named screen):
1346 """Set focus on TurtleScreen (in order to collect key-events)
1352 Example (for a TurtleScreen instance named screen):
1364 Example (for a TurtleScreen instance named screen):
1388 Example (for a TurtleScreen instance named screen):
2419 Puts RawTurtle upon a TurtleScreen and provides tools for
2430 elif isinstance(canvas, TurtleScreen):
2440 self.screen = TurtleScreen(canvas)
2666 Shape with name must exist in the TurtleScreen's shape dictionary.
3281 arg -- info, which is to be written to the TurtleScreen
3347 """Return the TurtleScreen object, the turtle is drawing on.
3351 Return the TurtleScreen object, the turtle is drawing on.
3352 So TurtleScreen-methods can be called for that object.
3357 <turtle.TurtleScreen object at 0x0106B770>
3383 ### screen oriented methods recurring to methods of TurtleScreen
3391 Example (for a TurtleScreen instance named screen):
3402 Example (for a TurtleScreen instance named screen):
3556 class _Screen(TurtleScreen):
3581 TurtleScreen.__init__(self, _Screen._canvas)
3631 This is a method of Screen-class. Not available for TurtleScreen-
3648 TurtleScreen._RUNNING = False
3654 Example (for a TurtleScreen instance named screen):
3664 Bind bye() method to mouseclick on TurtleScreen.
3672 TurtleScreen instances.
3693 Turtle method is called a TurtleScreen object is automatically created.
3823 """To reduce docstrings from TurtleScreen class for functions
3841 if not TurtleScreen._RUNNING:
3842 TurtleScreen._RUNNING = True
3848 if not TurtleScreen._RUNNING:
3849 TurtleScreen._RUNNING = True