Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--TurtleArt/talogo.py1
-rw-r--r--TurtleArt/tawindow.py6
-rw-r--r--plugins/plugin.py4
3 files changed, 11 insertions, 0 deletions
diff --git a/TurtleArt/talogo.py b/TurtleArt/talogo.py
index 25ffceb..f3bb956 100644
--- a/TurtleArt/talogo.py
+++ b/TurtleArt/talogo.py
@@ -489,6 +489,7 @@ class LogoCode:
def prim_clear(self):
""" Clear screen """
+ self.tw.clear_plugins()
if self.tw.gst_available:
from tagplay import stop_media
# stop_media(self) # TODO: gplay variable
diff --git a/TurtleArt/tawindow.py b/TurtleArt/tawindow.py
index 58b939d..338675a 100644
--- a/TurtleArt/tawindow.py
+++ b/TurtleArt/tawindow.py
@@ -328,6 +328,12 @@ class TurtleArtWindow():
for plugin in self._plugins:
plugin.stop()
+ def clear_plugins(self):
+ """ Clear is called from the clean block and erase button """
+ for plugin in self._plugins:
+ if hasattr(plugin, 'clear'):
+ plugin.clear()
+
def background_plugins(self):
""" Background is called when we are pushed to the background. """
for plugin in self._plugins:
diff --git a/plugins/plugin.py b/plugins/plugin.py
index 3065129..e06cf31 100644
--- a/plugins/plugin.py
+++ b/plugins/plugin.py
@@ -35,6 +35,10 @@ class Plugin(gobject.GObject):
""" stop is called when stop button is pressed. """
pass
+ def clear(self):
+ """ clear is called when erase button is pressed and from the clean block. """
+ pass
+
def goto_background(self):
""" goto_background is called when the activity is sent to the
background. """