Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/plugins/camera_plugin.py
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-03-03 15:34:37 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-03-03 15:34:37 (GMT)
commit8aa0f2223565fb58fa4f4e18e3bcf5b4a1b4db14 (patch)
treea658d203c83b07e62a4fe13a53c2d7ff25f39b4c /plugins/camera_plugin.py
parent7e9f220378c42734ea918dc29542d14ecd66d51b (diff)
remove requirement to include setup, start, stop, et al. methods
Diffstat (limited to 'plugins/camera_plugin.py')
-rw-r--r--plugins/camera_plugin.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/plugins/camera_plugin.py b/plugins/camera_plugin.py
index 84da9b9..0a2ec02 100644
--- a/plugins/camera_plugin.py
+++ b/plugins/camera_plugin.py
@@ -93,27 +93,11 @@ to the stack'),
help_string=_('camera output'),
content_block=True)
- def start(self):
- # This gets called by the start button
- pass
-
def stop(self):
# This gets called by the stop button
if self._status:
self._camera.stop_camera_input()
- def goto_background(self):
- # This gets called when your process is sent to the background
- pass
-
- def return_to_foreground(self):
- # This gets called when your process returns from the background
- pass
-
- def quit(self):
- # This gets called by the quit button
- pass
-
def _status_report(self):
print 'Reporting camera status: %s' % (str(self._status))
return self._status